]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/statement.h
Add binary data format
[libs/datafile.git] / source / statement.h
index 378ddabdb4ab1c8efc5d19a2853998197d703920..f2fa6e629bf7a1d50676bbe25b4f3096e87310dc 100644 (file)
@@ -1,18 +1,17 @@
-/*
-This file is part of libmspparser
-Copyright © 2006 Mikko Rasa, Mikkosoft Productions
+/* $Id$
+
+This file is part of libmspdatafile
+Copyright © 2006  Mikko Rasa, Mikkosoft Productions
 Distributed under the LGPL
 */
-#ifndef MSP_PARSER_STATEMENT_H_
-#define MSP_PARSER_STATEMENT_H_
+#ifndef MSP_DATAFILE_STATEMENT_H_
+#define MSP_DATAFILE_STATEMENT_H_
 
 #include <list>
-#include <sstream>
-#include <vector>
 #include "value.h"
 
 namespace Msp {
-namespace Parser {
+namespace DataFile {
 
 class Statement
 {
@@ -25,11 +24,10 @@ public:
        std::list<Statement> sub;
 
        Statement(): valid(false), line(0) { }
-       std::string get_location() const
-       { std::ostringstream ss; ss<<source<<':'<<line; return ss.str(); }
+       std::string get_location() const;
 };
 
-} // namespace Parser
+} // namespace DataFile
 } // namespace Msp
 
 #endif