blob: 22c25a1ed70fe3f2806ca1556286e854f2f140ad [file]
// StartElement.cpp: implementation of the StartElement class.
//
//////////////////////////////////////////////////////////////////////
#include <axis/xml/StartElement.h>
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
namespace axisxml {
StartElement::StartElement()
{
}
StartElement::~StartElement()
{
for (list<Attribute*>::iterator it = m_Attributes.begin(); it != m_Attributes.end(); it++)
{
delete *it;
}
}
}