diff options
Diffstat (limited to 'src/stable/tafreader.h')
| -rw-r--r-- | src/stable/tafreader.h | 56 |
1 files changed, 28 insertions, 28 deletions
diff --git a/src/stable/tafreader.h b/src/stable/tafreader.h index 0cf00a9..b3ced1b 100644 --- a/src/stable/tafreader.h +++ b/src/stable/tafreader.h | |||
| @@ -13,37 +13,37 @@ | |||
| 13 | 13 | ||
| 14 | namespace Bu | 14 | namespace Bu |
| 15 | { | 15 | { |
| 16 | class TafNode; | 16 | class TafNode; |
| 17 | class TafGroup; | 17 | class TafGroup; |
| 18 | class TafProperty; | 18 | class TafProperty; |
| 19 | class TafComment; | 19 | class TafComment; |
| 20 | class Stream; | 20 | class Stream; |
| 21 | 21 | ||
| 22 | /** | 22 | /** |
| 23 | * | 23 | * |
| 24 | *@ingroup Taf | 24 | *@ingroup Taf |
| 25 | */ | 25 | */ |
| 26 | class TafReader | 26 | class TafReader |
| 27 | { | 27 | { |
| 28 | public: | 28 | public: |
| 29 | TafReader( Bu::Stream &sIn ); | 29 | TafReader( Bu::Stream &sIn ); |
| 30 | virtual ~TafReader(); | 30 | virtual ~TafReader(); |
| 31 | 31 | ||
| 32 | Bu::TafGroup *readGroup(); | 32 | Bu::TafGroup *readGroup(); |
| 33 | 33 | ||
| 34 | private: | 34 | private: |
| 35 | void groupContent( Bu::TafGroup *pNode ); | 35 | void groupContent( Bu::TafGroup *pNode ); |
| 36 | Bu::TafProperty *readProperty(); | 36 | Bu::TafProperty *readProperty(); |
| 37 | Bu::TafComment *readComment( bool bEOL=false ); | 37 | Bu::TafComment *readComment( bool bEOL=false ); |
| 38 | void ws(); | 38 | void ws(); |
| 39 | bool isws(); | 39 | bool isws(); |
| 40 | void next(); | 40 | void next(); |
| 41 | Bu::String readStr(); | 41 | Bu::String readStr(); |
| 42 | void rawread( char *c ); | 42 | void rawread( char *c ); |
| 43 | char c, la; | 43 | char c, la; |
| 44 | Bu::Stream &sIn; | 44 | Bu::Stream &sIn; |
| 45 | int iLine, iCol; | 45 | int iLine, iCol; |
| 46 | }; | 46 | }; |
| 47 | } | 47 | } |
| 48 | 48 | ||
| 49 | #endif | 49 | #endif |
