📄 attribute.h
字号:
/* attribute.h * libxml++ and this file are copyright (C) 2000 by Ari Johnson, and * are covered by the GNU Lesser General Public License, which should be * included with libxml++ as the file COPYING. */#ifndef __LIBXMLPP_ATTRIBUTE_H#define __LIBXMLPP_ATTRIBUTE_H#include <string>#include <libxml++/nodes/node.h>#ifndef DOXYGEN_SHOULD_SKIP_THISextern "C" { struct _xmlAttr;};#endif //#ifndef DOXYGEN_SHOULD_SKIP_THISnamespace xmlpp{/** Represents XML Node attributes. * */class Attribute : public Node{public: explicit Attribute(_xmlNode* node); virtual ~Attribute(); std::string get_name() const; std::string get_value() const; void set_value(const std::string& value); ///Access the underlying libxml implementation. _xmlAttr* cobj(); ///Access the underlying libxml implementation. const _xmlAttr* cobj() const;};} // namespace xmlpp#endif //__LIBXMLPP_ATTRIBUTE_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -