}
}
- XAttributes::XAttributes(const XAttributes &xa)
- {
- y2deb("Entering copy constructor XAttribute(const XAttribute&)");
- xamap = xa.xamap;
- }
-
- XAttributes&
- XAttributes::operator=(const XAttributes &xa)
- {
- y2deb("Entering XAttribute::operator=()");
- if (this != &xa)
- {
- this->xamap = xa.xamap;
- }
-
- return *this;
- }
bool
XAttributes::operator==(const XAttributes& xa) const
xa_map_t xamap;
public:
XAttributes(const string&);
- XAttributes(const XAttributes&);
xa_map_citer cbegin() const { return xamap.begin(); }
xa_map_citer cend() const { return xamap.end(); }
- XAttributes& operator=(const XAttributes&);
bool operator==(const XAttributes&) const;
};