19 lines
332 B
C
19 lines
332 B
C
#ifndef _CLASS_H_
|
|
#define _CLASS_H_
|
|
|
|
#include <blue/core/error.h>
|
|
#include <blue/core/misc.h>
|
|
#include <stdint.h>
|
|
|
|
struct b_type_registration;
|
|
|
|
struct _b_class {
|
|
uint64_t c_magic;
|
|
const struct b_type_registration *c_type;
|
|
};
|
|
|
|
extern b_result b_class_instantiate(
|
|
struct b_type_registration *type, struct _b_class **out);
|
|
|
|
#endif
|