open source

This commit is contained in:
lvfulong
2020-11-11 16:17:13 +08:00
parent 4d989f3ecb
commit bc4ca748de
2441 changed files with 623057 additions and 2 deletions
@@ -0,0 +1,34 @@
/**
@file JSXmlAttr.h
@brief
@author James
@version 1.0
@date 2015_5_16
*/
#ifndef _JSXmlAttr_H
#define _JSXmlAttr_H
#include "../JSInterface/JSInterface.h"
#include "util/rapidxml/rapidxml.hpp"
namespace laya
{
class JSXmlAttr : public JsObjBase, public JSObjNode
{
public:
static JsObjClassInfo JSCLSINFO;
static void exportJS();
JSXmlAttr();
~JSXmlAttr();
const char *getNodeName();
const char *getNodeValue();
const char *getTextContent();
public:
std::string m_nodeName;
std::string m_nodeValue;
};
}
#endif