aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafproperty.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stable/tafproperty.h')
-rw-r--r--src/stable/tafproperty.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/stable/tafproperty.h b/src/stable/tafproperty.h
index b7c6983..b9834e1 100644
--- a/src/stable/tafproperty.h
+++ b/src/stable/tafproperty.h
@@ -13,24 +13,24 @@
13 13
14namespace Bu 14namespace Bu
15{ 15{
16 /** 16 /**
17 * 17 *
18 *@ingroup Taf 18 *@ingroup Taf
19 */ 19 */
20 class TafProperty : public TafNode 20 class TafProperty : public TafNode
21 { 21 {
22 public: 22 public:
23 TafProperty( const Bu::TafProperty &rSrc ); 23 TafProperty( const Bu::TafProperty &rSrc );
24 TafProperty( const Bu::String &sName, const Bu::String &sValue ); 24 TafProperty( const Bu::String &sName, const Bu::String &sValue );
25 virtual ~TafProperty(); 25 virtual ~TafProperty();
26 26
27 const Bu::String &getName() const; 27 const Bu::String &getName() const;
28 const Bu::String &getValue() const; 28 const Bu::String &getValue() const;
29 29
30 private: 30 private:
31 Bu::String sName; 31 Bu::String sName;
32 Bu::String sValue; 32 Bu::String sValue;
33 }; 33 };
34} 34}
35 35
36#endif 36#endif