Implemented SAS parsing directly from streams.

This commit is contained in:
2016-05-20 18:02:52 +02:00
parent e899bd7aec
commit 2d3760b774
2 changed files with 24 additions and 17 deletions

View File

@@ -1,6 +1,7 @@
#ifndef __SAS__DESCRIPTION_H
#define __SAS__DESCRIPTION_H
#include <iosfwd>
#include <vector>
#include <boost/filesystem/path.hpp>
@@ -24,6 +25,7 @@ namespace sas
class Description
{
public:
static Description fromStream(std::istream &istream);
static Description fromFile(const boost::filesystem::path &path);
public: