3 This file is part of libmspdatafile
4 Copyright © 2006 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
7 #ifndef MSP_DATAFILE_STATEMENT_H_
8 #define MSP_DATAFILE_STATEMENT_H_
24 std::list<Statement> sub;
26 Statement(): valid(false), line(0) { }
27 Statement(const std::string &kw): keyword(kw), valid(true), line(0) { }
28 std::string get_location() const;
31 Statement &append(const T &v)
33 args.push_back(Value(v));
38 Statement &operator,(const T &v)
42 } // namespace DataFile