/usr/include/ITK-4.5/vnl/vnl_copy.h is in libinsighttoolkit4-dev 4.5.0-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | // This is core/vnl/vnl_copy.h
#ifndef vnl_copy_h_
#define vnl_copy_h_
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma interface
#endif
//:
// \file
// \brief Easy conversion between vectors and matrices templated over different types.
// \author fsm
//
// \verbatim
// Modifications
// LSB (Manchester) 26/3/01 Tidied documentation
// \endverbatim
//: Easy conversion between vectors and matrices templated over different types.
// \relatesalso vnl_matrix
// \relatesalso vnl_vector
template <class S, class T>
void vnl_copy(S const *src, T *dst, unsigned n);
//: Easy conversion between vectors and matrices templated over different types.
// \relatesalso vnl_matrix
// \relatesalso vnl_vector
template <class S, class T>
void vnl_copy(S const &, T &);
#endif // vnl_copy_h_
|