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 | c54998e7220b2a2ca4a662539d770d617f2f875a (patch) | |
tree | 92cf605820cfc56f7b2f02709b123288ad12a877 /udm | |
parent | 128bcac3dc64b3dd7a42defceed30cad9902ca07 (diff) |
remove unused ASglTag class
Diffstat (limited to 'udm')
-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 dd6fe6ab9803..89f2c46e6041 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 007f7abdbea5..d613b84e4348 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 ) |