You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
772 B
36 lines
772 B
#ifndef __CCLASS_H__
|
|
#define __CCLASS_H__
|
|
|
|
#include <stdarg.h>
|
|
#include <sys/types.h>
|
|
#include <json/json.h>
|
|
|
|
typedef void (* ctor)(void *, va_list *);
|
|
typedef void (* dtor)(void *);
|
|
typedef void (* jCtor)(void *, struct json_object *);
|
|
typedef struct json_object * (* jTo)(void *);
|
|
|
|
|
|
struct CCLASS {
|
|
size_t size;
|
|
void (* __construct)(void * _this, va_list * params);
|
|
void (* __jsonConst)(void * _this, struct json_object * json);
|
|
void (* __destruct)(void * _this);
|
|
struct json_object * (* __toJson)(void * _this);
|
|
};
|
|
|
|
void *
|
|
new(const void * _class, ...);
|
|
|
|
void *
|
|
newFromJson(const void * _class, struct json_object * json);
|
|
|
|
void
|
|
delete(void * _object);
|
|
|
|
struct json_object *
|
|
toJson(void * _object);
|
|
|
|
#endif//__CCLASS_H__
|
|
|
|
// vim: set et ts=4 sw=4:
|