aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafwriter.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-11-05 22:41:51 +0000
committerMike Buland <eichlan@xagasoft.com>2012-11-05 22:41:51 +0000
commitec05778d5718a7912e506764d443a78d6a6179e3 (patch)
tree78a9a01532180030c095acefc45763f07c14edb8 /src/stable/tafwriter.h
parentb20414ac1fe80a71a90601f4cd1767fa7014a9ba (diff)
downloadlibbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.gz
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.bz2
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.xz
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.zip
Converted tabs to spaces with tabconv.
Diffstat (limited to 'src/stable/tafwriter.h')
-rw-r--r--src/stable/tafwriter.h52
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
15namespace Bu 15namespace 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