// Generated by Haxe 4.3.3
#ifndef INCLUDED_htmlparser_HtmlNode
#define INCLUDED_htmlparser_HtmlNode
#ifndef HXCPP_H
#include <hxcpp.h>
#endif
HX_DECLARE_CLASS1(htmlparser,HtmlNode)
HX_DECLARE_CLASS1(htmlparser,HtmlNodeElement)
namespace htmlparser{
class HXCPP_CLASS_ATTRIBUTES HtmlNode_obj : public ::hx::Object
{
public:
typedef ::hx::Object super;
typedef HtmlNode_obj OBJ_;
HtmlNode_obj();
public:
enum { _hx_ClassId = 0x0ca65a7f };
void __construct();
inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="htmlparser.HtmlNode")
{ return ::hx::Object::operator new(inSize,inContainer,inName); }
inline void *operator new(size_t inSize, int extra)
{ return ::hx::Object::operator new(inSize+extra,true,"htmlparser.HtmlNode"); }
inline static ::hx::ObjectPtr< HtmlNode_obj > __new() {
::hx::ObjectPtr< HtmlNode_obj > __this = new HtmlNode_obj();
__this->__construct();
return __this;
}
inline static ::hx::ObjectPtr< HtmlNode_obj > __alloc(::hx::Ctx *_hx_ctx) {
HtmlNode_obj *__this = (HtmlNode_obj*)(::hx::Ctx::alloc(_hx_ctx, sizeof(HtmlNode_obj), true, "htmlparser.HtmlNode"));
*(void **)__this = HtmlNode_obj::_hx_vtable;
return __this;
}
static void * _hx_vtable;
static Dynamic __CreateEmpty();
static Dynamic __Create(::hx::DynamicArray inArgs);
//~HtmlNode_obj();
HX_DO_RTTI_ALL;
::hx::Val __Field(const ::String &inString, ::hx::PropertyAccess inCallProp);
::hx::Val __SetField(const ::String &inString,const ::hx::Val &inValue, ::hx::PropertyAccess inCallProp);
void __GetFields(Array< ::String> &outFields);
static void __register();
void __Mark(HX_MARK_PARAMS);
void __Visit(HX_VISIT_PARAMS);
bool _hx_isInstanceOf(int inClassId);
::String __ToString() const { return HX_("HtmlNode",2d,19,fa,e5); }
::htmlparser::HtmlNodeElement parent;
};
} // end namespace htmlparser
#endif /* INCLUDED_htmlparser_HtmlNode */