Outsourced SAS variable parsing.

This commit is contained in:
2016-05-21 15:45:01 +02:00
parent b2e4d3329a
commit bac8d5c842
3 changed files with 67 additions and 38 deletions

View File

@@ -1,6 +1,7 @@
#ifndef __SAS__VARIABLE_H
#define __SAS__VARIABLE_H
#include <iosfwd>
#include <string>
#include <vector>
@@ -19,6 +20,8 @@ namespace sas
struct Variable
{
static Variable fromSAS(std::istream &istream);
using Values = std::vector<Value>;
std::string name;