]> git.tdb.fi Git - libs/datafile.git/blobdiff - source/token.h
Add missing includes
[libs/datafile.git] / source / token.h
index 050817b153fb010567e2732889895a91b4a06bde..b0d2655f5af5ffbb8f82f3e95e9994b390c47c25 100644 (file)
@@ -1,13 +1,10 @@
-/*
-This file is part of libmspparser
-Copyright © 2006 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-#ifndef MSP_PARSER_TOKEN_H_
-#define MSP_PARSER_TOKEN_H_
+#ifndef MSP_DATAFILE_TOKEN_H_
+#define MSP_DATAFILE_TOKEN_H_
+
+#include <string>
 
 namespace Msp {
-namespace Parser {
+namespace DataFile {
 
 struct Token
 {
@@ -27,7 +24,7 @@ struct Token
        Token(Type t, const std::string &s): type(t), str(s) { }
 };
 
-} // namespace Parser
+} // namespace DataFile
 } // namespace Msp
 
 #endif