2010-08-08 10:06:34 +02:00
|
|
|
/* vi: set ts=2:
|
|
|
|
+-------------------+ Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
|
|
| | Enno Rehling <enno@eressea.de>
|
|
|
|
| Eressea PBEM host | Katja Zedel <katze@felidae.kn-bremen.de>
|
|
|
|
| (c) 1998 - 2003 | Henning Peters <faroul@beyond.kn-bremen.de>
|
|
|
|
| | Ingo Wilken <Ingo.Wilken@informatik.uni-oldenburg.de>
|
|
|
|
+-------------------+ Stefan Reich <reich@halbling.de>
|
|
|
|
|
2015-01-17 13:22:26 +01:00
|
|
|
This program may not be used, modified or distributed
|
2010-08-08 10:06:34 +02:00
|
|
|
without prior permission by the authors of Eressea.
|
2015-01-17 13:22:26 +01:00
|
|
|
*/
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
#ifndef H_ATTRIBUTE_OBJECT
|
|
|
|
#define H_ATTRIBUTE_OBJECT
|
|
|
|
|
|
|
|
#include <util/variant.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-01-17 13:22:26 +01:00
|
|
|
typedef enum {
|
|
|
|
TNONE = 0, TINTEGER = 1, TREAL = 2, TSTRING = 3,
|
|
|
|
TUNIT = 10, TFACTION = 11, TREGION = 12, TBUILDING = 13, TSHIP = 14
|
|
|
|
} dict_type;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
2015-01-17 13:22:26 +01:00
|
|
|
extern struct attrib_type at_dict;
|
2010-08-08 10:06:34 +02:00
|
|
|
|
2015-01-17 13:22:26 +01:00
|
|
|
extern struct attrib *dict_create(const char *name, dict_type type,
|
|
|
|
variant value);
|
|
|
|
extern void dict_get(const struct attrib *a, dict_type * type,
|
|
|
|
variant * value);
|
|
|
|
extern void dict_set(struct attrib *a, dict_type type, variant value);
|
|
|
|
extern const char *dict_name(const struct attrib *a);
|
2010-08-08 10:06:34 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|