diff options
Diffstat (limited to 'include/components/name.hpp')
-rw-r--r-- | include/components/name.hpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/include/components/name.hpp b/include/components/name.hpp new file mode 100644 index 0000000..423a484 --- /dev/null +++ b/include/components/name.hpp @@ -0,0 +1,24 @@ +#ifndef COMPONENTS_NAME_HPP_ +#define COMPONENTS_NAME_HPP_ + +#include "base.hpp" + +#include <string> + +struct Name : public Component { + Name(std::string n = "") + : name(n) {} + Name(XMLElement* imp, XMLElement* def) { + fromXML(imp, def); + } + + std::string name; + + void fromXML(XMLElement* imp, XMLElement* def) final { + auto n = imp->Attribute("name"); + + // TODO check def's nullness + name = n != nullptr ? n : def->Attribute("value"); + } +}; +#endif // COMPONENTS_NAME_HPP_ |