// (C) Copyright 2014 by Autodesk, Inc. #ifndef STDTYPES_HH_INCLUDED #define STDTYPES_HH_INCLUDED #include <vector> namespace COMISO_STD { // Vector Types typedef std::vector<double> DoubleVector; typedef std::vector<int> IntVector; typedef std::vector<unsigned int> UIntVector; }//namespace COMISO_GMM #endif//STDTYPES_HH_INCLUDED