OOC: Object
Table of Contents
Object
rep/object.r
struct Object {
unsigned long magic;
const struct Class *class; // object's description
};
inc/object.h
extern const void *const Object(void);
struct Object {
unsigned long magic;
const struct Class *class; // object's description
};
extern const void *const Object(void);