All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cpp-tizen-client.object.mustache Maven / Gradle / Ivy

There is a newer version: 7.6.0
Show newest version
#ifndef _OBJECT_H_
#define _OBJECT_H_

namespace Tizen{
namespace {{prefix}} {

class Object {
public:

	virtual char* toJson()
	{
	return NULL;
	}

	virtual ~Object()
	{
	}

	virtual void fromJson(char* jsonStr)
	{
	}
};

}
}
#endif /* _OBJECT_H_ */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy