diff options
Diffstat (limited to 'src/rtfparser.h')
-rw-r--r-- | src/rtfparser.h | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/rtfparser.h b/src/rtfparser.h index 6b9e10d..e1636fc 100644 --- a/src/rtfparser.h +++ b/src/rtfparser.h @@ -36,10 +36,8 @@ * */ -// RENAME RTFParser.h - -#ifndef __RTFREADER_H__ -#define __RTFREADER_H__ +#ifndef __RTFPARSER_H__ +#define __RTFPARSER_H__ #include "usuals.h" #include <stack> @@ -48,7 +46,7 @@ class RtfHandler; /* - * RTFParser + * RtfParser * * A class that parses the RTF into it's tags and groups etc... It feeds its * parsed data into into a handler interface (see below) for processing. @@ -111,9 +109,9 @@ private: }; /* - * RTFHandler + * RtfHandler * - * An interface called by RTFParser with tags and groups etc... parsed from + * An interface called by RtfParser with tags and groups etc... parsed from * an RTF file. */ class RtfHandler @@ -121,7 +119,7 @@ class RtfHandler public: // Called at the beginning of the document - virtual void startDocument(RtfReader* reader) = 0; + virtual void startDocument(RtfParser* reader) = 0; // Called at the end of the document virtual void endDocument() = 0; @@ -148,4 +146,4 @@ public: }; }; -#endif // __RTFREADER_H__ +#endif // __RTFPARSER_H__ |