X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Finput.cpp;h=e03a92126944703234a8d6fa330c4eba66cacb5e;hb=6dd94a7fe90c6467024685fbac769067ddb74688;hp=5b2d63b7ba8becdc20232a8933b815b3c5d5f288;hpb=5453824394771ca21de32088a2842486b63e6f6d;p=libs%2Fdatafile.git diff --git a/source/input.cpp b/source/input.cpp index 5b2d63b..e03a921 100644 --- a/source/input.cpp +++ b/source/input.cpp @@ -1,14 +1,15 @@ -/* -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 */ #include "input.h" namespace Msp { -namespace Parser { +namespace DataFile { -Input::Input(std::istream &i): +Input::Input(IO::Base &i): in(i), line(1), next(-1) @@ -33,5 +34,5 @@ int Input::peek() return next; } -} // namespace Parser +} // namespace DataFile } // namespace Msp