summaryrefslogtreecommitdiff
path: root/ACEXML/compass/ConfigValue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACEXML/compass/ConfigValue.cpp')
-rw-r--r--ACEXML/compass/ConfigValue.cpp41
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_);
-}