tool/coe_datatypes.h
changeset 1126 b09fd81894cb
equal deleted inserted replaced
1125:9976f7b9fe66 1126:b09fd81894cb
       
     1 /*****************************************************************************
       
     2  *
       
     3  * $Id$
       
     4  *
       
     5  ****************************************************************************/
       
     6 
       
     7 #include <inttypes.h>
       
     8 
       
     9 #include <string>
       
    10 using namespace std;
       
    11 
       
    12 /****************************************************************************/
       
    13 
       
    14 struct CoEDataType {
       
    15     const char *name;
       
    16     uint16_t coeCode;
       
    17     unsigned int byteSize;
       
    18 };
       
    19 
       
    20 /****************************************************************************/
       
    21 
       
    22 const CoEDataType *findDataType(const string &);
       
    23 const CoEDataType *findDataType(uint16_t);
       
    24 
       
    25 /*****************************************************************************/