qse/ase/stx/class.h

62 lines
1.4 KiB
C
Raw Normal View History

2005-05-22 15:03:20 +00:00
/*
2005-05-25 16:44:05 +00:00
* $Id: class.h,v 1.4 2005-05-25 16:44:05 bacon Exp $
2005-05-22 15:03:20 +00:00
*/
#ifndef _XP_STX_CLASS_H_
#define _XP_STX_CLASS_H_
#include <xp/stx/stx.h>
/* definitions for common objects */
2005-05-25 16:44:05 +00:00
#define XP_STX_CLASS_SIZE 7
#define XP_STX_CLASS_SPEC 0
#define XP_STX_CLASS_METHODS 1
#define XP_STX_CLASS_SUPERCLASS 2
#define XP_STX_CLASS_NAME 3
#define XP_STX_CLASS_VARIABLES 4
#define XP_STX_CLASS_CLASS_VARIABLES 5
#define XP_STX_CLASS_POOL_DICTIONARIES 6
#define XP_STX_METACLASS_SIZE 4
#define XP_STX_METACLASS_SPEC 0
#define XP_STX_METACLASS_METHODS 1
#define XP_STX_METACLASS_SUPERCLASS 2
#define XP_STX_METACLASS_INSTANCE_CLASS 3
2005-05-24 03:28:31 +00:00
2005-05-22 15:03:20 +00:00
struct xp_stx_class_t
{
xp_stx_objhdr_t header;
2005-05-24 03:28:31 +00:00
xp_stx_word_t spec; /* indexable: 1, nfields: the rest */
2005-05-22 15:03:20 +00:00
xp_stx_word_t methods;
xp_stx_word_t superclass;
2005-05-25 16:44:05 +00:00
xp_stx_word_t name;
2005-05-22 15:03:20 +00:00
xp_stx_word_t variables;
2005-05-25 16:44:05 +00:00
xp_stx_word_t class_variables;
xp_stx_word_t pool_dictonaries;
2005-05-22 15:03:20 +00:00
};
2005-05-24 03:28:31 +00:00
struct xp_stx_metaclass_t
{
xp_stx_objhdr_t header;
xp_stx_word_t spec;
xp_stx_word_t methods;
xp_stx_word_t superclass;
xp_stx_word_t instance_class;
};
2005-05-22 15:03:20 +00:00
typedef struct xp_stx_class_t xp_stx_class_t;
2005-05-24 03:28:31 +00:00
typedef struct xp_stx_metaclass_t xp_stx_metaclass_t;
2005-05-22 15:03:20 +00:00
#ifdef __cplusplus
extern "C" {
#endif
xp_stx_word_t xp_stx_new_class (xp_stx_t* stx, const xp_stx_char_t* name);
xp_stx_word_t xp_stx_lookup_class (xp_stx_t* stx, const xp_stx_char_t* name);
#ifdef __cplusplus
}
#endif
#endif