aboutsummaryrefslogtreecommitdiff
path: root/src/stable/tafproperty.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-11-05 22:41:51 +0000
committerMike Buland <eichlan@xagasoft.com>2012-11-05 22:41:51 +0000
commitec05778d5718a7912e506764d443a78d6a6179e3 (patch)
tree78a9a01532180030c095acefc45763f07c14edb8 /src/stable/tafproperty.h
parentb20414ac1fe80a71a90601f4cd1767fa7014a9ba (diff)
downloadlibbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.gz
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.bz2
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.tar.xz
libbu++-ec05778d5718a7912e506764d443a78d6a6179e3.zip
Converted tabs to spaces with tabconv.
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