/usr/include/ITK-4.12/vnl/vnl_copy.h is in libinsighttoolkit4-dev 4.12.2-dfsg1-1ubuntu1.
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 31 | // This is core/vnl/vnl_copy.h
#ifndef vnl_copy_h_
#define vnl_copy_h_
#ifdef VCL_NEEDS_PRAGMA_INTERFACE
#pragma interface
#endif
#include "vnl/vnl_export.h"
//:
// \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> VNL_TEMPLATE_EXPORT
void vnl_copy(S const * const src, T *const dst, const unsigned n);
//: Easy conversion between vectors and matrices templated over different types.
// \relatesalso vnl_matrix
// \relatesalso vnl_vector
template <class S, class T> VNL_TEMPLATE_EXPORT
void vnl_copy(S const &, T &);
#endif // vnl_copy_h_
|