tool/coe_datatypes.h
author Florian Pose <fp@igh-essen.com>
Tue, 22 Jul 2008 14:17:20 +0000
changeset 1126 b09fd81894cb
permissions -rw-r--r--
Moved every command into a separate file.
/*****************************************************************************
 *
 * $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);

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