aboutsummaryrefslogtreecommitdiff
path: root/src/tafcomment.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tafcomment.cpp')
-rw-r--r--src/tafcomment.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tafcomment.cpp b/src/tafcomment.cpp
index 4e0da9f..77b7ee4 100644
--- a/src/tafcomment.cpp
+++ b/src/tafcomment.cpp
@@ -7,6 +7,13 @@
7 7
8#include "bu/tafcomment.h" 8#include "bu/tafcomment.h"
9 9
10Bu::TafComment::TafComment( const Bu::TafComment &rSrc ) :
11 TafNode( typeComment ),
12 sText( rSrc.sText ),
13 bEOL( rSrc.bEOL )
14{
15}
16
10Bu::TafComment::TafComment( const Bu::FString &sText, bool bEOL ) : 17Bu::TafComment::TafComment( const Bu::FString &sText, bool bEOL ) :
11 TafNode( typeComment ), 18 TafNode( typeComment ),
12 sText( sText ), 19 sText( sText ),