#pragma once #include #include class JType : public JObject { public: bool AddMethod(JObject* _method); bool AddProp(JObject* _field); bool AddConst(JObject* _const); bool AddApply(JObject* _apply); public: JString toString(); JString toXml(); };