Forgot file

This commit is contained in:
Thomas FORGIONE 2015-03-23 16:51:02 +01:00
parent 0977a8515c
commit f1ca215d9d
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#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