tool/coe_datatypes.h
changeset 1126 b09fd81894cb
--- /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 <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);
+
+/*****************************************************************************/