My Project
Header.hh
00001 /*
00002 $Id: Header.hh 2360 2012-03-19 08:48:32Z jisuzuki $
00003 */
00004 
00005 #ifndef  HEADER
00006 #define  HEADER
00007 
00008 //#define INTEL // SwapBytesを行う瘢雹とき
00009 #include <stdlib.h>
00010 #include <iostream>
00011 #include <cstdlib>
00012 #include <vector>
00013 #include <list>
00014 #include <utility>
00015 #include <string>
00016 #include <math.h>
00017 #include <fstream>
00018 #include <stdio.h>
00019 #include <stdarg.h>
00020 #include <ctype.h>
00021 #include <Python.h>
00022 
00023 
00024 using namespace std;
00025 
00026 // The following definitions are useful
00027 // for applying the framework to various architectures.
00028 typedef char               Char;
00029 typedef unsigned char      UChar;
00030 typedef short              Int2;
00031 typedef unsigned short     UInt2;
00032 typedef int                Int4;
00033 typedef unsigned int       UInt4;
00034 typedef long long          Int8;
00035 typedef unsigned long long UInt8;
00036 typedef double             Double;
00037 typedef float              Float;
00038 typedef bool               Bool;
00039 
00040 
00041 #endif
00042 
00043 
 All Classes Functions Variables Friends