diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-06-16 23:42:29 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-06-17 14:05:13 +0100 |
commit | 198c00162650806a36bcfc50c00c9c951acfffb1 (patch) | |
tree | 9b5057fb66b8a0fe59406be653a1e520bf5ea714 /udm | |
parent | 3e311ca2f54300eb6049e525012f64d84973a2c1 (diff) |
remove unused AnEmptyElement
Diffstat (limited to 'udm')
-rw-r--r-- | udm/inc/udm/xml/xmlitem.hxx | 21 | ||||
-rw-r--r-- | udm/source/xml/xmlitem.cxx | 33 |
2 files changed, 0 insertions, 54 deletions
diff --git a/udm/inc/udm/xml/xmlitem.hxx b/udm/inc/udm/xml/xmlitem.hxx index 292a66910037..7b492b1efe5a 100644 --- a/udm/inc/udm/xml/xmlitem.hxx +++ b/udm/inc/udm/xml/xmlitem.hxx @@ -227,27 +227,6 @@ class AnElement : public Element AttrList aAttrs; }; - -class AnEmptyElement : public EmptyElement -{ - public: - AnEmptyElement( - const ::csv::String & i_sTagName ); - AnEmptyElement( - const char * i_sTagName ); - ~AnEmptyElement(); - private: - // Interface Element: - virtual const ::csv::String & - inq_TagName() const; - // Interface EmptyElement: - virtual AttrList & inq_RefAttrs(); - - // DATA - ::csv::String sTagName; - AttrList aAttrs; -}; - class APureElement : public PureElement { public: diff --git a/udm/source/xml/xmlitem.cxx b/udm/source/xml/xmlitem.cxx index fd63f99a5e17..e0b2afa5b687 100644 --- a/udm/source/xml/xmlitem.cxx +++ b/udm/source/xml/xmlitem.cxx @@ -363,39 +363,6 @@ AnElement::inq_Attrs() const return &aAttrs; } - -//*************************** AnEmptyElement **************************// - -AnEmptyElement::AnEmptyElement( const String & i_sTagName ) - : sTagName( i_sTagName ) - // aAttrs -{ -} - -AnEmptyElement::AnEmptyElement( const char * i_sTagName ) - : sTagName( i_sTagName ) - // aAttrs -{ -} - -AnEmptyElement::~AnEmptyElement() -{ - -} - -const String & -AnEmptyElement::inq_TagName() const -{ - return sTagName; -} - -AttrList & -AnEmptyElement::inq_RefAttrs() -{ - return aAttrs; -} - - //*************************** APureElement **************************// APureElement::APureElement( const String & i_sTagName ) |