basic_types

This commit is contained in:
Christian Zimmermann 2021-04-04 14:21:09 +02:00
parent 469a7b4848
commit 70c850be2f

18
src/include/basic_types.h Normal file
View 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