Parsing <none of those> values in SAS files.

This commit is contained in:
2016-05-23 01:27:28 +02:00
parent 401c4069bd
commit d118788142
4 changed files with 34331 additions and 6 deletions

View File

@@ -34,6 +34,7 @@ struct Value
};
static const Value Any;
static const Value None;
static Value fromSAS(std::istream &istream);
static const Value &referenceFromSAS(std::istream &istream, const Variable &variable);
@@ -49,7 +50,7 @@ struct Value
const std::string &name() const;
private:
static const Value any();
static const Value reserved(const std::string &name);
private:
Value();
@@ -61,6 +62,10 @@ struct Value
////////////////////////////////////////////////////////////////////////////////////////////////////
bool operator ==(const Value &value1, const Value &value2);
////////////////////////////////////////////////////////////////////////////////////////////////////
}
}