dynamiC  0.1
Data Fields
dynamic Struct Reference

Basic container for dynamic data types. More...

#include <dynamic_types.h>

Data Fields

union {
   dyn_char   b
 boolean value
 
   dyn_int   i
 basic integer
 
   dyn_float   f
 float value
 
   dyn_str   str
 pointer to character-array
 
   dyn_list *   list
 pointer to dynamic list
 
   dyn_dict *   dict
 pointer to dynamic dictionary
 
   dyn_fct *   fct
 pointer to function
 
   const void *   ex
 external (pointer to everything)
 
   dyn_c *   ref
 reference pointer to dynamic elements
 
data
 
char type
 type definition
 

Detailed Description

Basic container for dynamic data types.

Basic container consisting of two parts, a union data for storing or referencing to values. The type value contains enum TYPE in order to define which value of data has to be used.

Definition at line 98 of file dynamic_types.h.


The documentation for this struct was generated from the following file: