2014-08-08 17:35:34 -07:00
|
|
|
/* types.hh
|
|
|
|
* vim: set tw=80:
|
|
|
|
* Eryn Wells <eryn@erynwells.me>
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Some basic types.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BASICS_TYPES_HH__
|
|
|
|
#define __BASICS_TYPES_HH__
|
|
|
|
|
2014-08-08 17:38:05 -07:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
2014-08-08 17:35:34 -07:00
|
|
|
typedef double Double;
|
2014-08-08 21:12:06 -07:00
|
|
|
typedef unsigned int UInt;
|
2014-08-08 17:35:34 -07:00
|
|
|
|
|
|
|
typedef std::vector<Double> DoubleVector;
|
|
|
|
typedef DoubleVector TVector;
|
|
|
|
|
|
|
|
#endif /* __BASICS_TYPES_HH__ */
|