diff options
Diffstat (limited to 'ACEXML/compass/ConfigValue.h')
-rw-r--r-- | ACEXML/compass/ConfigValue.h | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/ACEXML/compass/ConfigValue.h b/ACEXML/compass/ConfigValue.h deleted file mode 100644 index 03d0cff5210..00000000000 --- a/ACEXML/compass/ConfigValue.h +++ /dev/null @@ -1,35 +0,0 @@ -// $Id$ - -#ifndef COMPASS_CONFIG_VALUE_H -#define COMPASS_CONFIG_VALUE_H - -#include "ace/pre.h" -#include "ACEXML/compass/Compass_Export.h" - -#if !defined (ACE_LACKS_PRAGMA_ONCE) -#pragma once -#endif /* ACE_LACKS_PRAGMA_ONCE */ - -#include "ACEXML/common/XML_Types.h" - -namespace Deployment -{ - class Compass_Export ConfigValue - { - public: - ConfigValue(); - ~ConfigValue(); - ConfigValue (const ConfigValue& config); - ConfigValue& operator= (const ConfigValue& config); - int operator== (const ConfigValue& config); - - FeatureName name_; - ACEXML_String value_; - }; - - typedef ACE_Unbounded_Set<ConfigValue> ConfigValues; -} - -#include "ace/post.h" - -#endif /* COMPASS_CONFIG_VALUE_H */ |