basic_types
This commit is contained in:
parent
469a7b4848
commit
70c850be2f
1 changed files with 18 additions and 0 deletions
18
src/include/basic_types.h
Normal file
18
src/include/basic_types.h
Normal file
|
@ -0,0 +1,18 @@
|
|||
#ifndef __basic_types_h__
|
||||
#define __basic_types_h__
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace MultiArrayTools
|
||||
{
|
||||
|
||||
// just to fix this forever:
|
||||
typedef int32_t Int;
|
||||
typedef uint64_t SizeT;
|
||||
typedef double Double;
|
||||
typedef Double Real;
|
||||
typedef std::string String;
|
||||
|
||||
}
|
||||
|
||||
#endif
|
Loading…
Reference in a new issue