diff options
author | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-05-12 15:37:21 +0000 |
---|---|---|
committer | kitty <kitty@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-05-12 15:37:21 +0000 |
commit | 7c78f8ab9e51c790aa2eb48ef20ac15edef353d4 (patch) | |
tree | ab18d5272b5fa06ce924516bfcf4fa2e4d8476b5 /ACEXML/compass/ConfigValue.cpp | |
parent | aef782d30e2a570e8dd831e1ae5c3e3e60d11b0f (diff) | |
download | ATCD-Validator.tar.gz |
ChangeLogTag: Fri Jan 24 20:28:22 2003 Krishnakumar B <kitty@insanely.long.id.truncated>Validator
Diffstat (limited to 'ACEXML/compass/ConfigValue.cpp')
-rw-r--r-- | ACEXML/compass/ConfigValue.cpp | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/ACEXML/compass/ConfigValue.cpp b/ACEXML/compass/ConfigValue.cpp deleted file mode 100644 index 7c495947cb9..00000000000 --- a/ACEXML/compass/ConfigValue.cpp +++ /dev/null @@ -1,41 +0,0 @@ -// $Id$ - -#include "ACEXML/compass/ConfigValue.h" - -using namespace Deployment; - -ConfigValue::ConfigValue() - : name_(), value_() -{ - -} - -ConfigValue::~ConfigValue() -{ - delete this->name_; - delete this->value_; -} - -ConfigValue::ConfigValue (const ConfigValue& config) -{ - if (*this != config) - { - this->name_ = config.name_; - this->value_ = config.value_; - } - return *this; -} - -ConfigValue& -ConfigValue::operator= (const ConfigValue& config) -{ - this->name_ = config.name_; - this->value_ = config.value_; - return *this; -} - -int -ConfigValue::operator== (const ConfigValue& config) -{ - return (this->name_ == config.name_ && this->value_ == config.value_); -} |