73 lines
1.7 KiB
C++
73 lines
1.7 KiB
C++
/** @file
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license APACHE v2.0 (see license file)
|
|
*/
|
|
#pragma once
|
|
|
|
#include <exml/Node.h>
|
|
#include <vector>
|
|
|
|
namespace exml {
|
|
namespace internal {
|
|
class Attribute;
|
|
}
|
|
class AttributeListData;
|
|
/**
|
|
* @brief Single attribute element
|
|
*/
|
|
class Attribute : public exml::Node {
|
|
public:
|
|
/**
|
|
* @brief Constructor
|
|
* @param[in] _internalNode Internal Node to set data
|
|
*/
|
|
Attribute(ememory::SharedPtr<exml::internal::Node> _internalNode);
|
|
/**
|
|
* @brief Copy constructor
|
|
* @param[in] _obj Object to copy
|
|
*/
|
|
// TODO : Attribute(nullptr);
|
|
/**
|
|
* @brief Copy constructor
|
|
* @param[in] _obj Object to copy
|
|
*/
|
|
Attribute(const exml::Attribute& _obj);
|
|
/**
|
|
* @brief Constructor
|
|
* @param[in] _name Name of the attribute.
|
|
* @param[in] _value Value of the attribute.
|
|
*/
|
|
Attribute(const std::string& _name="", const std::string& _value="");
|
|
/**
|
|
* @brief Copy constructor
|
|
* @param[in] _obj Object to copy
|
|
*/
|
|
exml::Attribute& operator= (const exml::Attribute& _obj);
|
|
public:
|
|
/**
|
|
* @brief set the name of the attribute
|
|
* @param[in] _name New name of the attribute
|
|
*/
|
|
virtual void setName(const std::string& _name);
|
|
/**
|
|
* @brief get the current name of the Attribute
|
|
* @return String of the attribute
|
|
*/
|
|
virtual const std::string& getName() const;
|
|
/**
|
|
* @brief get attribute name and value
|
|
* @return Name and value of the attribute
|
|
*/
|
|
std::pair<std::string, std::string> getPair() const;
|
|
public:
|
|
void clear() override;
|
|
friend class exml::AttributeListData;
|
|
private:
|
|
ememory::SharedPtr<exml::internal::Attribute> getInternalAttribute();
|
|
};
|
|
}
|
|
|