tool/coe_datatypes.h
author Florian Pose <fp@igh-essen.com>
Wed, 23 Jul 2008 08:06:10 +0000
changeset 1136 a0982873d655
parent 1126 b09fd81894cb
permissions -rw-r--r--
Improved exceptions and commandName usage.
/*****************************************************************************
 *
 * $Id$
 *
 ****************************************************************************/

#include <inttypes.h>

#include <string>
using namespace std;

/****************************************************************************/

struct CoEDataType {
    const char *name;
    uint16_t coeCode;
    unsigned int byteSize;
};

/****************************************************************************/

const CoEDataType *findDataType(const string &);
const CoEDataType *findDataType(uint16_t);

/*****************************************************************************/