paella/include/Utility/VectorFunctions.hpp

19 lines
400 B
C++

#ifndef VECTORFUNCTIONS_HPP
#define VECTORFUNCTIONS_HPP
namespace geo
{
/////////////////////////////////////////////////////
/// \ingroup utility
/// \brief Contains the size of a vector
///
/// Template class that provides constexpr access to the size
/// of a vector
/////////////////////////////////////////////////////
template<typename T>
struct vector_size;
}
#endif // VECTORFUNCTIONS_HPP