diff options
Diffstat (limited to 'src/core/utils/CharReader.hpp')
-rw-r--r-- | src/core/utils/CharReader.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/utils/CharReader.hpp b/src/core/utils/CharReader.hpp index 0dd0a25..4986d3e 100644 --- a/src/core/utils/CharReader.hpp +++ b/src/core/utils/CharReader.hpp @@ -17,15 +17,15 @@ */ /** - * @file Buffer.hpp + * @file CharReader.hpp * - * Helper class which allows to read from an input source from multiple cursors. + * Used within all parsers to read single characters from an underlying stream. * * @author Andreas Stöckel (astoecke@techfak.uni-bielefeld.de) */ -#ifndef _OUSIA_BUFFER_HPP_ -#define _OUSIA_BUFFER_HPP_ +#ifndef _OUSIA_CHAR_READER_HPP_ +#define _OUSIA_CHAR_READER_HPP_ #include <list> #include <vector> @@ -297,5 +297,5 @@ public: } } -#endif /* _OUSIA_BUFFER_HPP_ */ +#endif /* _OUSIA_CHAR_READER_HPP_ */ |