mirror of
https://github.com/thunderbrewhq/common.git
synced 2025-12-12 03:02:29 +00:00
14 lines
216 B
C++
14 lines
216 B
C++
|
|
#ifndef COMMON_XML_XML_ATTRIBUTE_HPP
|
||
|
|
#define COMMON_XML_XML_ATTRIBUTE_HPP
|
||
|
|
|
||
|
|
#include "common/String.hpp"
|
||
|
|
|
||
|
|
class XMLAttribute {
|
||
|
|
public:
|
||
|
|
// Member variables
|
||
|
|
RCString m_name;
|
||
|
|
RCString m_value;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|