packet.h 1.27 KB
/**
 * \file
 * packet.h: a data packet that has a header and data of type dyntype
 * 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 __PACKET_H__
#define __PACKET_H__

#include "token/cclass.h"
#include "token/dyntype.h"


enum PACKET_CONTENT_KEYS {
    PACKET_HEADER = 0,
    PACKET_DATA
};


CLASS(PACKET) {
    const _CCLASS const class;
    DYNTYPE content[2];
};


DYNTYPE packet_getHeader(PACKET _this);
DYNTYPE packet_getData(PACKET _this);
void    packet_setHeader(PACKET _this, DYNTYPE header);
void    packet_setData(PACKET _this, DYNTYPE data);
void    packet_set_default_content(PACKET _this);

#endif//__PACKET_H__

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