cclass.h 1.5 KB
/**
 * cclass.h: basic "class-like" handling of code and data structures
 * Copyright (C) 2011  Georg Hopp
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#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: