diff options
Diffstat (limited to 'src/stable/tafwriter.h')
| -rw-r--r-- | src/stable/tafwriter.h | 52 | 
1 files changed, 26 insertions, 26 deletions
| diff --git a/src/stable/tafwriter.h b/src/stable/tafwriter.h index 7e43d64..48787ab 100644 --- a/src/stable/tafwriter.h +++ b/src/stable/tafwriter.h | |||
| @@ -14,32 +14,32 @@ | |||
| 14 | 14 | ||
| 15 | namespace Bu | 15 | namespace Bu | 
| 16 | { | 16 | { | 
| 17 | class Stream; | 17 | class Stream; | 
| 18 | class TafNode; | 18 | class TafNode; | 
| 19 | class TafGroup; | 19 | class TafGroup; | 
| 20 | class TafProperty; | 20 | class TafProperty; | 
| 21 | class TafComment; | 21 | class TafComment; | 
| 22 | 22 | ||
| 23 | /** | 23 | /** | 
| 24 | * | 24 | * | 
| 25 | *@ingroup Taf | 25 | *@ingroup Taf | 
| 26 | */ | 26 | */ | 
| 27 | class TafWriter | 27 | class TafWriter | 
| 28 | { | 28 | { | 
| 29 | public: | 29 | public: | 
| 30 | TafWriter( Bu::Stream &sOut ); | 30 | TafWriter( Bu::Stream &sOut ); | 
| 31 | virtual ~TafWriter(); | 31 | virtual ~TafWriter(); | 
| 32 | 32 | ||
| 33 | void writeGroup( const Bu::TafGroup *pRoot ); | 33 | void writeGroup( const Bu::TafGroup *pRoot ); | 
| 34 | 34 | ||
| 35 | private: | 35 | private: | 
| 36 | void writeProperty( const Bu::TafProperty *pProp ); | 36 | void writeProperty( const Bu::TafProperty *pProp ); | 
| 37 | void writeComment( const Bu::TafComment *pComment ); | 37 | void writeComment( const Bu::TafComment *pComment ); | 
| 38 | void writeString( const Bu::String &str ); | 38 | void writeString( const Bu::String &str ); | 
| 39 | void ident(); | 39 | void ident(); | 
| 40 | Bu::Stream &sOut; | 40 | Bu::Stream &sOut; | 
| 41 | int iDepth; | 41 | int iDepth; | 
| 42 | }; | 42 | }; | 
| 43 | } | 43 | } | 
| 44 | 44 | ||
| 45 | #endif | 45 | #endif | 
