1234567891011121314151617181920212223242526272829 |
- #ifndef IGL_PRINT_VECTOR_H
- #define IGL_PRINT_VECTOR_H
- #include "igl_inline.h"
- #include <vector>
- namespace igl
- {
-
-
- template <typename T>
- IGL_INLINE void print_vector( std::vector<T>& v);
- template <typename T>
- IGL_INLINE void print_vector( std::vector< std::vector<T> >& v);
- template <typename T>
- IGL_INLINE void print_vector(std::vector< std::vector< std::vector<T> > >& v);
- }
- #ifndef IGL_STATIC_LIBRARY
- # include "print_vector.cpp"
- #endif
- #endif
|