charles/src/basics/types.hh
2014-08-08 21:12:06 -07:00

21 lines
333 B
C++

/* types.hh
* vim: set tw=80:
* Eryn Wells <eryn@erynwells.me>
*/
/**
* Some basic types.
*/
#ifndef __BASICS_TYPES_HH__
#define __BASICS_TYPES_HH__
#include <vector>
typedef double Double;
typedef unsigned int UInt;
typedef std::vector<Double> DoubleVector;
typedef DoubleVector TVector;
#endif /* __BASICS_TYPES_HH__ */