aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafproperty.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/tafproperty.cpp')
-rw-r--r--src/stable/tafproperty.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/stable/tafproperty.cpp b/src/stable/tafproperty.cpp
index 017b294..2b3e338 100644
--- a/src/stable/tafproperty.cpp
+++ b/src/stable/tafproperty.cpp
@@ -8,16 +8,16 @@
8#include "bu/tafproperty.h" 8#include "bu/tafproperty.h"
9 9
10Bu::TafProperty::TafProperty( const Bu::TafProperty &rSrc ) : 10Bu::TafProperty::TafProperty( const Bu::TafProperty &rSrc ) :
11 TafNode( typeProperty ), 11 TafNode( typeProperty ),
12 sName( rSrc.sName ), 12 sName( rSrc.sName ),
13 sValue( rSrc.sValue ) 13 sValue( rSrc.sValue )
14{ 14{
15} 15}
16 16
17Bu::TafProperty::TafProperty( const Bu::String &sName, const Bu::String &sValue ) : 17Bu::TafProperty::TafProperty( const Bu::String &sName, const Bu::String &sValue ) :
18 TafNode( typeProperty ), 18 TafNode( typeProperty ),
19 sName( sName ), 19 sName( sName ),
20 sValue( sValue ) 20 sValue( sValue )
21{ 21{
22} 22}
23 23
@@ -27,11 +27,11 @@ Bu::TafProperty::~TafProperty()
27 27
28const Bu::String &Bu::TafProperty::getName() const 28const Bu::String &Bu::TafProperty::getName() const
29{ 29{
30 return sName; 30 return sName;
31} 31}
32 32
33const Bu::String &Bu::TafProperty::getValue() const 33const Bu::String &Bu::TafProperty::getValue() const
34{ 34{
35 return sValue; 35 return sValue;
36} 36}
37 37