X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftoken.h;h=ae4961947e6e3730359d5c8de4dbc761347469d5;hb=8ff59df1f2e603557eceacbc81a8dc44de051dae;hp=4e25f46f27d56cf06e0617d25fde6b23865e238f;hpb=f3060db03f822573175e3d6bc1fa541217e16f65;p=libs%2Fdatafile.git diff --git a/source/token.h b/source/token.h index 4e25f46..ae49619 100644 --- a/source/token.h +++ b/source/token.h @@ -1,13 +1,14 @@ -/* -This file is part of libmspparser +/* $Id$ + +This file is part of libmspdatafile 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_ namespace Msp { -namespace Parser { +namespace DataFile { struct Token { @@ -27,7 +28,7 @@ struct Token Token(Type t, const std::string &s): type(t), str(s) { } }; -} // namespace Parser +} // namespace DataFile } // namespace Msp #endif