00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef BIGENDIAN_H
00016 #define BIGENDIAN_H
00017
00018 #include "dtoolbase.h"
00019
00020 #include "numeric_types.h"
00021 #include "nativeNumericData.h"
00022 #include "reversedNumericData.h"
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifdef WORDS_BIGENDIAN
00033 typedef NativeNumericData BigEndian;
00034 #else
00035 typedef ReversedNumericData BigEndian;
00036 #endif
00037
00038 #endif