diff options
author | Mike Buland <eichlan@xagasoft.com> | 2007-07-11 19:09:04 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2007-07-11 19:09:04 +0000 |
commit | 8165c5d4768261a90085b1378a4b29c28738b8e1 (patch) | |
tree | d451a56213cbaad45965e6ad6107cb1310a27008 /src/tafwriter.h | |
parent | aa4d4db13e647842ad2ad941aeed5bf8b60c4a08 (diff) | |
download | libbu++-8165c5d4768261a90085b1378a4b29c28738b8e1.tar.gz libbu++-8165c5d4768261a90085b1378a4b29c28738b8e1.tar.bz2 libbu++-8165c5d4768261a90085b1378a4b29c28738b8e1.tar.xz libbu++-8165c5d4768261a90085b1378a4b29c28738b8e1.zip |
TafWriter now indents by default, I'll make that configurable soon.
Diffstat (limited to '')
-rw-r--r-- | src/tafwriter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tafwriter.h b/src/tafwriter.h index 5f80504..f34395e 100644 --- a/src/tafwriter.h +++ b/src/tafwriter.h | |||
@@ -23,7 +23,9 @@ namespace Bu | |||
23 | void writeProperty( const Bu::TafProperty *pProp ); | 23 | void writeProperty( const Bu::TafProperty *pProp ); |
24 | void writeComment( const Bu::TafComment *pComment ); | 24 | void writeComment( const Bu::TafComment *pComment ); |
25 | void writeString( const Bu::FString &str ); | 25 | void writeString( const Bu::FString &str ); |
26 | void ident(); | ||
26 | Bu::Stream &sOut; | 27 | Bu::Stream &sOut; |
28 | int iDepth; | ||
27 | }; | 29 | }; |
28 | } | 30 | } |
29 | 31 | ||