First commit
This commit is contained in:
31
hGameTest/bin/linux/obj/include/haxe/lang/Iterable.h
Normal file
31
hGameTest/bin/linux/obj/include/haxe/lang/Iterable.h
Normal file
@@ -0,0 +1,31 @@
|
||||
// Generated by Haxe 4.0.5
|
||||
#ifndef INCLUDED_haxe_lang_Iterable
|
||||
#define INCLUDED_haxe_lang_Iterable
|
||||
|
||||
#ifndef HXCPP_H
|
||||
#include <hxcpp.h>
|
||||
#endif
|
||||
|
||||
HX_DECLARE_CLASS2(haxe,lang,Iterable)
|
||||
HX_DECLARE_CLASS2(haxe,lang,Iterator)
|
||||
|
||||
namespace haxe{
|
||||
namespace lang{
|
||||
|
||||
|
||||
class HXCPP_CLASS_ATTRIBUTES Iterable_obj {
|
||||
public:
|
||||
typedef hx::Object super;
|
||||
HX_DO_INTERFACE_RTTI;
|
||||
|
||||
static void __boot();
|
||||
::Dynamic (hx::Object :: *_hx_iterator)();
|
||||
static inline ::Dynamic iterator( ::Dynamic _hx_) {
|
||||
return (_hx_.mPtr->*( hx::interface_cast< ::haxe::lang::Iterable_obj *>(_hx_.mPtr->_hx_getInterface(0x1f692be6)))->_hx_iterator)();
|
||||
}
|
||||
};
|
||||
|
||||
} // end namespace haxe
|
||||
} // end namespace lang
|
||||
|
||||
#endif /* INCLUDED_haxe_lang_Iterable */
|
||||
34
hGameTest/bin/linux/obj/include/haxe/lang/Iterator.h
Normal file
34
hGameTest/bin/linux/obj/include/haxe/lang/Iterator.h
Normal file
@@ -0,0 +1,34 @@
|
||||
// Generated by Haxe 4.0.5
|
||||
#ifndef INCLUDED_haxe_lang_Iterator
|
||||
#define INCLUDED_haxe_lang_Iterator
|
||||
|
||||
#ifndef HXCPP_H
|
||||
#include <hxcpp.h>
|
||||
#endif
|
||||
|
||||
HX_DECLARE_CLASS2(haxe,lang,Iterator)
|
||||
|
||||
namespace haxe{
|
||||
namespace lang{
|
||||
|
||||
|
||||
class HXCPP_CLASS_ATTRIBUTES Iterator_obj {
|
||||
public:
|
||||
typedef hx::Object super;
|
||||
HX_DO_INTERFACE_RTTI;
|
||||
|
||||
static void __boot();
|
||||
bool (hx::Object :: *_hx_hasNext)();
|
||||
static inline bool hasNext( ::Dynamic _hx_) {
|
||||
return (_hx_.mPtr->*( hx::interface_cast< ::haxe::lang::Iterator_obj *>(_hx_.mPtr->_hx_getInterface(0x1f76d722)))->_hx_hasNext)();
|
||||
}
|
||||
::Dynamic (hx::Object :: *_hx_next)();
|
||||
static inline ::Dynamic next( ::Dynamic _hx_) {
|
||||
return (_hx_.mPtr->*( hx::interface_cast< ::haxe::lang::Iterator_obj *>(_hx_.mPtr->_hx_getInterface(0x1f76d722)))->_hx_next)();
|
||||
}
|
||||
};
|
||||
|
||||
} // end namespace haxe
|
||||
} // end namespace lang
|
||||
|
||||
#endif /* INCLUDED_haxe_lang_Iterator */
|
||||
Reference in New Issue
Block a user