]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/statement.h
Add binary data format
[libs/datafile.git] / source / statement.h
index 6b3c54b8b7989d386fff3c3cb98ef3354f5433ad..f2fa6e629bf7a1d50676bbe25b4f3096e87310dc 100644 (file)
@@ -8,8 +8,6 @@ Distributed under the LGPL
 #define MSP_DATAFILE_STATEMENT_H_
 
 #include <list>
-#include <sstream>
-#include <vector>
 #include "value.h"
 
 namespace Msp {
@@ -26,8 +24,7 @@ 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 DataFile