aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafcomment.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/tafcomment.cpp')
-rw-r--r--src/stable/tafcomment.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/stable/tafcomment.cpp b/src/stable/tafcomment.cpp
index ceda8e3..5168685 100644
--- a/src/stable/tafcomment.cpp
+++ b/src/stable/tafcomment.cpp
@@ -8,16 +8,16 @@
8#include "bu/tafcomment.h" 8#include "bu/tafcomment.h"
9 9
10Bu::TafComment::TafComment( const Bu::TafComment &rSrc ) : 10Bu::TafComment::TafComment( const Bu::TafComment &rSrc ) :
11 TafNode( typeComment ), 11 TafNode( typeComment ),
12 sText( rSrc.sText ), 12 sText( rSrc.sText ),
13 bEOL( rSrc.bEOL ) 13 bEOL( rSrc.bEOL )
14{ 14{
15} 15}
16 16
17Bu::TafComment::TafComment( const Bu::String &sText, bool bEOL ) : 17Bu::TafComment::TafComment( const Bu::String &sText, bool bEOL ) :
18 TafNode( typeComment ), 18 TafNode( typeComment ),
19 sText( sText ), 19 sText( sText ),
20 bEOL( bEOL ) 20 bEOL( bEOL )
21{ 21{
22} 22}
23 23
@@ -27,11 +27,11 @@ Bu::TafComment::~TafComment()
27 27
28const Bu::String &Bu::TafComment::getText() const 28const Bu::String &Bu::TafComment::getText() const
29{ 29{
30 return sText; 30 return sText;
31} 31}
32 32
33bool Bu::TafComment::isEOLStyle() const 33bool Bu::TafComment::isEOLStyle() const
34{ 34{
35 return bEOL; 35 return bEOL;
36} 36}
37 37