00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef __DEMOPAJA_PAJATYPES_H__
00015 #define __DEMOPAJA_PAJATYPES_H__
00016
00017
00019
00022 namespace PajaTypes {
00023
00024 typedef char int8;
00025 typedef unsigned char uint8;
00026 typedef short int16;
00027 typedef unsigned short uint16;
00028 typedef int int32;
00029 typedef unsigned int uint32;
00030
00031 typedef float float32;
00032 typedef double float64;
00033 typedef long double float80;
00034
00035 };
00036
00037 #ifndef M_PI
00038 #define M_PI 3.1415926536
00039 #endif
00040
00041 #endif