41 lines
904 B
C++
41 lines
904 B
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 {
|
|
/**
|
|
* @brief Comment node: <!-- ... -->
|
|
*/
|
|
class Comment : public exml::Node {
|
|
public:
|
|
/**
|
|
* @brief Constructor
|
|
* @param[in] _internalNode Internal Node to set data
|
|
*/
|
|
Comment(ememory::SharedPtr<exml::internal::Node> _internalNode);
|
|
/**
|
|
* @brief Copy constructor
|
|
* @param[in] _obj Object to copy
|
|
*/
|
|
Comment(const exml::Comment& _obj);
|
|
/**
|
|
* @brief Constructor
|
|
* @param[in] _value comment value
|
|
*/
|
|
Comment(const std::string& _value="");
|
|
/**
|
|
* @brief Copy constructor
|
|
* @param[in] _obj Object to copy
|
|
* @return A reference on the local Object
|
|
*/
|
|
exml::Comment& operator= (const exml::Comment& _obj);
|
|
};
|
|
}
|
|
|