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