aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafcomment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/tafcomment.h')
-rw-r--r--src/stable/tafcomment.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/stable/tafcomment.h b/src/stable/tafcomment.h
index 80c6399..2f403e7 100644
--- a/src/stable/tafcomment.h
+++ b/src/stable/tafcomment.h
@@ -13,24 +13,24 @@
13 13
14namespace Bu 14namespace Bu
15{ 15{
16 /** 16 /**
17 * 17 *
18 *@ingroup Taf 18 *@ingroup Taf
19 */ 19 */
20 class TafComment : public TafNode 20 class TafComment : public TafNode
21 { 21 {
22 public: 22 public:
23 TafComment( const Bu::TafComment &rSrc ); 23 TafComment( const Bu::TafComment &rSrc );
24 TafComment( const Bu::String &sText, bool bEOL=false ); 24 TafComment( const Bu::String &sText, bool bEOL=false );
25 virtual ~TafComment(); 25 virtual ~TafComment();
26 26
27 const Bu::String &getText() const; 27 const Bu::String &getText() const;
28 bool isEOLStyle() const; 28 bool isEOLStyle() const;
29 29
30 private: 30 private:
31 Bu::String sText; 31 Bu::String sText;
32 bool bEOL; 32 bool bEOL;
33 }; 33 };
34} 34}
35 35
36#endif 36#endif