diff -r 9976f7b9fe66 -r b09fd81894cb tool/coe_datatypes.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool/coe_datatypes.h Tue Jul 22 14:17:20 2008 +0000 @@ -0,0 +1,25 @@ +/***************************************************************************** + * + * $Id$ + * + ****************************************************************************/ + +#include + +#include +using namespace std; + +/****************************************************************************/ + +struct CoEDataType { + const char *name; + uint16_t coeCode; + unsigned int byteSize; +}; + +/****************************************************************************/ + +const CoEDataType *findDataType(const string &); +const CoEDataType *findDataType(uint16_t); + +/*****************************************************************************/