diff options
Diffstat (limited to '')
-rw-r--r-- | src/tafproperty.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tafproperty.h b/src/tafproperty.h index 62cc517..10a1c1a 100644 --- a/src/tafproperty.h +++ b/src/tafproperty.h | |||
@@ -21,15 +21,15 @@ namespace Bu | |||
21 | { | 21 | { |
22 | public: | 22 | public: |
23 | TafProperty( const Bu::TafProperty &rSrc ); | 23 | TafProperty( const Bu::TafProperty &rSrc ); |
24 | TafProperty( const Bu::FString &sName, const Bu::FString &sValue ); | 24 | TafProperty( const Bu::String &sName, const Bu::String &sValue ); |
25 | virtual ~TafProperty(); | 25 | virtual ~TafProperty(); |
26 | 26 | ||
27 | const Bu::FString &getName() const; | 27 | const Bu::String &getName() const; |
28 | const Bu::FString &getValue() const; | 28 | const Bu::String &getValue() const; |
29 | 29 | ||
30 | private: | 30 | private: |
31 | Bu::FString sName; | 31 | Bu::String sName; |
32 | Bu::FString sValue; | 32 | Bu::String sValue; |
33 | }; | 33 | }; |
34 | } | 34 | } |
35 | 35 | ||