Midge  v3.9.2
Data Processing Framework
types.hh
Go to the documentation of this file.
1 #ifndef _midge_types_hh_
2 #define _midge_types_hh_
3 
4 #include <stdint.h>
5 
6 #include <string>
7 
8 #include "typelist.hh"
9 
10 namespace midge
11 {
12  typedef bool bool_t;
13  typedef uint16_t enum_t;
14 
15  typedef uint64_t count_t;
16  typedef int64_t index_t;
17 
18  typedef double real_t;
19  typedef double complex_t[2];
20 
21  typedef std::string string_t;
22 }
23 
24 #endif
Definition: _buffer.hh:11
double real_t
Definition: types.hh:18
uint64_t count_t
Definition: types.hh:15
uint16_t enum_t
Definition: types.hh:13
bool bool_t
Definition: types.hh:12
int64_t index_t
Definition: types.hh:16
std::string string_t
Definition: types.hh:21
double complex_t[2]
Definition: types.hh:19