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