![JAR search and dependency download from the Maven repository](/logo.png)
tizen.object.mustache Maven / Gradle / Ivy
The newest version!
#ifndef _{{prefix}}_OBJECT_H_
#define _{{prefix}}_OBJECT_H_
#include
#include
#include
using Tizen::Base::String;
using namespace Tizen::Web::Json;
class {{prefix}}Object {
public:
virtual JsonObject* asJsonObject() {
return null;
}
virtual ~{{prefix}}Object() {}
virtual {{prefix}}Object* fromJson(String* obj) {
return null;
}
virtual void fromJsonObject(IJsonValue* obj) {}
virtual String asJson() {
return L"";
}
};
#endif /* _{{prefix}}_OBJECT_H_ */
© 2015 - 2025 Weber Informatics LLC | Privacy Policy