This commit is contained in:
aozhiwei 2022-04-06 08:54:17 +08:00
parent 6364d325fa
commit 600bba2be2

View File

@ -27,6 +27,9 @@ namespace a8
~XObject();
unsigned char GetType();
bool IsSimple() { return GetType() == XOT_SIMPLE; };
bool IsArray() { return GetType() == XOT_ARRAY; };
bool IsObject() { return GetType() == XOT_OBJECT; };
int Size();
void Reset();
void DeepCopy(a8::XObject& to);