aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafreader.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/tafreader.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/tafreader.h')
-rw-r--r--src/stable/tafreader.h56
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
14namespace Bu 14namespace 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