gccDppConsole Test C++ SDK
20170920
DPP C++ Console Demonstration
|
00001 #pragma once 00002 #include <stdlib.h> 00003 #include <math.h> 00004 #include <string> 00005 using namespace std; 00006 00007 class CDppUtilities 00008 { 00009 public: 00010 CDppUtilities(void); 00011 ~CDppUtilities(void); 00013 double LongWordToDouble(int lwStart, unsigned char buffer[]); 00015 double BYTEVersionToDouble(unsigned char Version); 00017 string BYTEVersionToString(unsigned char Version); 00018 };