Skip to content
Snippets Groups Projects
defines.h 214 B
Newer Older
Nikolaj Tatti's avatar
Nikolaj Tatti committed
#ifndef DEFINES_H
#define DEFINES_H

#include <stdint.h>
#include <vector>

typedef std::vector<uint32_t> uintvector;
typedef std::vector<double> doublevector;

typedef std::vector<uintvector> uintmatrix;


#endif