diff options
Diffstat (limited to '')
| -rw-r--r-- | src/tafproperty.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/src/tafproperty.cpp b/src/tafproperty.cpp new file mode 100644 index 0000000..855c5bb --- /dev/null +++ b/src/tafproperty.cpp | |||
| @@ -0,0 +1,30 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007-2008 Xagasoft, All rights reserved. | ||
| 3 | * | ||
| 4 | * This file is part of the libbu++ library and is released under the | ||
| 5 | * terms of the license contained in the file LICENSE. | ||
| 6 | */ | ||
| 7 | |||
| 8 | #include "bu/tafproperty.h" | ||
| 9 | |||
| 10 | Bu::TafProperty::TafProperty( const Bu::FString &sName, const Bu::FString &sValue ) : | ||
| 11 | TafNode( typeProperty ), | ||
| 12 | sName( sName ), | ||
| 13 | sValue( sValue ) | ||
| 14 | { | ||
| 15 | } | ||
| 16 | |||
| 17 | Bu::TafProperty::~TafProperty() | ||
| 18 | { | ||
| 19 | } | ||
| 20 | |||
| 21 | const Bu::FString &Bu::TafProperty::getName() const | ||
| 22 | { | ||
| 23 | return sName; | ||
| 24 | } | ||
| 25 | |||
| 26 | const Bu::FString &Bu::TafProperty::getValue() const | ||
| 27 | { | ||
| 28 | return sValue; | ||
| 29 | } | ||
| 30 | |||
