git » swiftpm » main » tree

[main] / Sources / c_snikket / iinclude / htmlparser / HtmlAttribute.h

// Generated by Haxe 4.3.3
#ifndef INCLUDED_htmlparser_HtmlAttribute
#define INCLUDED_htmlparser_HtmlAttribute

#ifndef HXCPP_H
#include <hxcpp.h>
#endif

HX_DECLARE_STACK_FRAME(_hx_pos_630f17b70ccedfe6_10_new)
HX_DECLARE_CLASS1(htmlparser,HtmlAttribute)

namespace htmlparser{


class HXCPP_CLASS_ATTRIBUTES HtmlAttribute_obj : public ::hx::Object
{
	public:
		typedef ::hx::Object super;
		typedef HtmlAttribute_obj OBJ_;
		HtmlAttribute_obj();

	public:
		enum { _hx_ClassId = 0x49e2a647 };

		void __construct(::String name,::String value,::String quote);
		inline void *operator new(size_t inSize, bool inContainer=true,const char *inName="htmlparser.HtmlAttribute")
			{ 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.HtmlAttribute"); }

		inline static ::hx::ObjectPtr< HtmlAttribute_obj > __new(::String name,::String value,::String quote) {
			::hx::ObjectPtr< HtmlAttribute_obj > __this = new HtmlAttribute_obj();
			__this->__construct(name,value,quote);
			return __this;
		}

		inline static ::hx::ObjectPtr< HtmlAttribute_obj > __alloc(::hx::Ctx *_hx_ctx,::String name,::String value,::String quote) {
			HtmlAttribute_obj *__this = (HtmlAttribute_obj*)(::hx::Ctx::alloc(_hx_ctx, sizeof(HtmlAttribute_obj), true, "htmlparser.HtmlAttribute"));
			*(void **)__this = HtmlAttribute_obj::_hx_vtable;
{
            	HX_STACKFRAME(&_hx_pos_630f17b70ccedfe6_10_new)
HXLINE(  11)		( ( ::htmlparser::HtmlAttribute)(__this) )->name = name;
HXLINE(  12)		( ( ::htmlparser::HtmlAttribute)(__this) )->value = value;
HXLINE(  13)		( ( ::htmlparser::HtmlAttribute)(__this) )->quote = quote;
            	}
		
			return __this;
		}

		static void * _hx_vtable;
		static Dynamic __CreateEmpty();
		static Dynamic __Create(::hx::DynamicArray inArgs);
		//~HtmlAttribute_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_("HtmlAttribute",11,85,c2,03); }

		::String name;
		::String value;
		::String quote;
};

} // end namespace htmlparser

#endif /* INCLUDED_htmlparser_HtmlAttribute */