65 lines
1.7 KiB
C++
65 lines
1.7 KiB
C++
// Generated by Haxe 4.0.5
|
|
#include <hxcpp.h>
|
|
|
|
#ifndef INCLUDED_haxe_io_Output
|
|
#include <haxe/io/Output.h>
|
|
#endif
|
|
|
|
namespace haxe{
|
|
namespace io{
|
|
|
|
void Output_obj::__construct() { }
|
|
|
|
Dynamic Output_obj::__CreateEmpty() { return new Output_obj; }
|
|
|
|
void *Output_obj::_hx_vtable = 0;
|
|
|
|
Dynamic Output_obj::__Create(hx::DynamicArray inArgs)
|
|
{
|
|
hx::ObjectPtr< Output_obj > _hx_result = new Output_obj();
|
|
_hx_result->__construct();
|
|
return _hx_result;
|
|
}
|
|
|
|
bool Output_obj::_hx_isInstanceOf(int inClassId) {
|
|
return inClassId==(int)0x00000001 || inClassId==(int)0x3473efad;
|
|
}
|
|
|
|
|
|
Output_obj::Output_obj()
|
|
{
|
|
}
|
|
|
|
#ifdef HXCPP_SCRIPTABLE
|
|
static hx::StorageInfo *Output_obj_sMemberStorageInfo = 0;
|
|
static hx::StaticInfo *Output_obj_sStaticStorageInfo = 0;
|
|
#endif
|
|
|
|
hx::Class Output_obj::__mClass;
|
|
|
|
void Output_obj::__register()
|
|
{
|
|
Output_obj _hx_dummy;
|
|
Output_obj::_hx_vtable = *(void **)&_hx_dummy;
|
|
hx::Static(__mClass) = new hx::Class_obj();
|
|
__mClass->mName = HX_("haxe.io.Output",61,10,0b,c7);
|
|
__mClass->mSuper = &super::__SGetClass();
|
|
__mClass->mConstructEmpty = &__CreateEmpty;
|
|
__mClass->mConstructArgs = &__Create;
|
|
__mClass->mGetStaticField = &hx::Class_obj::GetNoStaticField;
|
|
__mClass->mSetStaticField = &hx::Class_obj::SetNoStaticField;
|
|
__mClass->mStatics = hx::Class_obj::dupFunctions(0 /* sStaticFields */);
|
|
__mClass->mMembers = hx::Class_obj::dupFunctions(0 /* sMemberFields */);
|
|
__mClass->mCanCast = hx::TCanCast< Output_obj >;
|
|
#ifdef HXCPP_SCRIPTABLE
|
|
__mClass->mMemberStorageInfo = Output_obj_sMemberStorageInfo;
|
|
#endif
|
|
#ifdef HXCPP_SCRIPTABLE
|
|
__mClass->mStaticStorageInfo = Output_obj_sStaticStorageInfo;
|
|
#endif
|
|
hx::_hx_RegisterClass(__mClass->mName, __mClass);
|
|
}
|
|
|
|
} // end namespace haxe
|
|
} // end namespace io
|