aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafnode.h
diff options
context:
space:
mode:
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