aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafnode.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/tafnode.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/tafnode.h')
-rw-r--r--src/stable/tafnode.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/stable/tafnode.h b/src/stable/tafnode.h
index 9c0e0b9..923ee24 100644
--- a/src/stable/tafnode.h
+++ b/src/stable/tafnode.h
@@ -15,30 +15,30 @@
15 15
16namespace Bu 16namespace Bu
17{ 17{
18 subExceptionDecl( TafException ); 18 subExceptionDecl( TafException );
19 /** 19 /**
20 * 20 *
21 *@ingroup Taf 21 *@ingroup Taf
22 */ 22 */
23 class TafNode 23 class TafNode
24 { 24 {
25 public: 25 public:
26 enum NodeType 26 enum NodeType
27 { 27 {
28 typeGroup, 28 typeGroup,
29 typeProperty, 29 typeProperty,
30 typeComment 30 typeComment
31 }; 31 };
32 32
33 public: 33 public:
34 TafNode( NodeType eType ); 34 TafNode( NodeType eType );
35 virtual ~TafNode(); 35 virtual ~TafNode();
36 36
37 NodeType getType() const; 37 NodeType getType() const;
38 38
39 private: 39 private:
40 NodeType eType; 40 NodeType eType;
41 }; 41 };
42} 42}
43 43
44#endif 44#endif