| 240 | { return hx::Object::operator new(inSize,inAlloc,inName); } |
| 241 | |
| 242 | StructData(const void *inValue,int inLength, cpp::DynamicHandlerFunc inHandler) |
| 243 | { |
| 244 | mLength= inLength; |
| 245 | mValue = InternalNew(inLength,false); |
| 246 | HX_OBJ_WB_GET(this, mValue); |
| 247 | memcpy(mValue, inValue, inLength); |
| 248 | mHandler = inHandler; |
| 249 | } |
| 250 | |
| 251 | HX_IS_INSTANCE_OF enum { _hx_ClassId = hx::clsIdStruct }; |
| 252 |
nothing calls this directly
no test coverage detected