aboutsummaryrefslogtreecommitdiff
path: root/src/tafnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tafnode.h')
-rw-r--r--src/tafnode.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tafnode.h b/src/tafnode.h
index 585ba73..e2e1cc0 100644
--- a/src/tafnode.h
+++ b/src/tafnode.h
@@ -98,13 +98,15 @@ namespace Bu
98 class TafComment : public TafNode 98 class TafComment : public TafNode
99 { 99 {
100 public: 100 public:
101 TafComment( const Bu::FString &sText ); 101 TafComment( const Bu::FString &sText, bool bEOL=false );
102 virtual ~TafComment(); 102 virtual ~TafComment();
103 103
104 const Bu::FString &getText() const; 104 const Bu::FString &getText() const;
105 bool isEOLStyle() const;
105 106
106 private: 107 private:
107 Bu::FString sText; 108 Bu::FString sText;
109 bool bEOL;
108 }; 110 };
109} 111}
110 112