dyntype.h 1.4 KB
/**
 * dyntype.h: structur to hold values of different type and retrieve them again
 * Copyright (C) 2011  Georg Hopp
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
#ifndef __DYNTYPE_H__
#define __DYNTYPE_H__

#include <sys/types.h>

#include "token/cclass.h"

struct _DYNTYPE;

#include "token/dyntype/hash.h"


enum DYNTYPE_TYPES {
    DYNTYPE_TYPE_NULL = 0,
    DYNTYPE_TYPE_BOOLEAN,
    DYNTYPE_TYPE_INT,
    DYNTYPE_TYPE_FLOAT,
    DYNTYPE_TYPE_STRING,
    DYNTYPE_TYPE_ARRAY,
    DYNTYPE_TYPE_HASH
};


CLASS(DYNTYPE)
    enum DYNTYPE_TYPES type;
    size_t size;
    union _data {
        unsigned char _boolean;
        int _int;
        double _float;
        char * _string;
        struct _DYNTYPE ** _array;
        DYNTYPE_HASH _hash;
    } data;
ENDC(DYNTYPE)

#endif//__DYNTYPE_H__

// vim: set et ts=4 sw=4: