[DOC] comment update

This commit is contained in:
Edouard DUPIN 2016-04-20 22:09:56 +02:00
parent c5589ebc8f
commit a4f3eb7c9f
3 changed files with 3 additions and 4 deletions

View File

@ -57,7 +57,6 @@ const exml::ElementData::iterator exml::ElementData::end() const {
return exml::ElementData::iterator(*this, size()); return exml::ElementData::iterator(*this, size());
} }
exml::ElementData::ElementData(exml::Element* _elem) : exml::ElementData::ElementData(exml::Element* _elem) :
m_data(_elem) { m_data(_elem) {

View File

@ -70,7 +70,7 @@ const std::string& exml::Node::getValue() const {
enum exml::nodeType exml::Node::getType() const { enum exml::nodeType exml::Node::getType() const {
if (m_data == nullptr) { if (m_data == nullptr) {
EXML_ERROR(" can not get type ..."); EXML_ERROR("Can not get type ...");
return exml::nodeType::unknow; return exml::nodeType::unknow;
} }
return m_data->getType(); return m_data->getType();

View File

@ -34,11 +34,11 @@ namespace exml {
friend class exml::AttributeListData; friend class exml::AttributeListData;
friend class exml::ElementData; friend class exml::ElementData;
protected: protected:
ememory::SharedPtr<exml::internal::Node> m_data; //< internal reference on a node ememory::SharedPtr<exml::internal::Node> m_data; //!< internal reference on a node
public: public:
/** /**
* @brief basic element of a xml structure * @brief basic element of a xml structure
* @param[in] _value value of the node * @param[in] _internalNode Internal reference of the Node
*/ */
Node(ememory::SharedPtr<exml::internal::Node> _internalNode); Node(ememory::SharedPtr<exml::internal::Node> _internalNode);
/** /**