diff options
Diffstat (limited to 'src/tafproperty.cpp')
-rw-r--r-- | src/tafproperty.cpp | 7 |
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 | ||
10 | Bu::TafProperty::TafProperty( const Bu::TafProperty &rSrc ) : | ||
11 | TafNode( typeProperty ), | ||
12 | sName( rSrc.sName ), | ||
13 | sValue( rSrc.sValue ) | ||
14 | { | ||
15 | } | ||
16 | |||
10 | Bu::TafProperty::TafProperty( const Bu::FString &sName, const Bu::FString &sValue ) : | 17 | Bu::TafProperty::TafProperty( const Bu::FString &sName, const Bu::FString &sValue ) : |
11 | TafNode( typeProperty ), | 18 | TafNode( typeProperty ), |
12 | sName( sName ), | 19 | sName( sName ), |