diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-20 14:54:17 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-20 14:54:17 +0100 |
commit | cb112b51237d3b282a6ab1d54532d13b9a7e428b (patch) | |
tree | 38613c9ee157625cc28be3685424e140289dcbd1 | |
parent | 102600a930b611c54e962298f867a73681174ea1 (diff) |
remove unused ASglTag class
-rw-r--r-- | udm/inc/udm/xml/xmlitem.hxx | 17 | ||||
-rw-r--r-- | udm/source/xml/xmlitem.cxx | 25 |
2 files changed, 0 insertions, 42 deletions
diff --git a/udm/inc/udm/xml/xmlitem.hxx b/udm/inc/udm/xml/xmlitem.hxx index d6fd5eb3..3e186fe2 100644 --- a/udm/inc/udm/xml/xmlitem.hxx +++ b/udm/inc/udm/xml/xmlitem.hxx @@ -243,23 +243,6 @@ class APureElement : public PureElement Dyn< Item > pContent; }; -class ASglTag : public SglTag -{ - public: - ASglTag( - const ::csv::String & i_sTagName ); - ASglTag( - const char * i_sTagName ); - ~ASglTag(); - private: - // Interface Element: - virtual const ::csv::String & - inq_TagName() const; - // DATA - ::csv::String sTagName; -}; - - /* Standard Attribute implementation */ class AnAttribute : public Attribute diff --git a/udm/source/xml/xmlitem.cxx b/udm/source/xml/xmlitem.cxx index 25f814e6..8c3e10d8 100644 --- a/udm/source/xml/xmlitem.cxx +++ b/udm/source/xml/xmlitem.cxx @@ -380,31 +380,6 @@ APureElement::inq_RefContent() return pContent; } - - -//*************************** ASglTag **************************// - -ASglTag::ASglTag( const String & i_sTagName ) - : sTagName( i_sTagName ) -{ -} - -ASglTag::ASglTag( const char * i_sTagName ) - : sTagName( i_sTagName ) -{ -} - -ASglTag::~ASglTag() -{ -} - -const String & -ASglTag::inq_TagName() const -{ - return sTagName; -} - - //*************************** AnAttribute **************************// AnAttribute::AnAttribute( const String & i_sName, const String & i_sValue ) |