/usr/include/ITK-4.9/vcl_deprecated_header.h is in libinsighttoolkit4-dev 4.9.0-4ubuntu1.
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 | #ifndef vcl_deprecated_header_h_
#define vcl_deprecated_header_h_
/*
fsm
*/
#include "vcl_compiler.h"
#if defined(VCL_GCC)
# warning "deprecated"
#elif defined(VCL_VC)
// This warning is issued if your source file includes a deprecated
// header (e.g. vcl_strstream.h) It can't figure out exactly where
// the include came from, so you'll have to see which .cxx file
// produced the warning, and then remove includes till it goes away....
#pragma message( "" __FILE__ "(13):warning(from VXL): an unknown deprecated header has been included." )
#elif defined(VCL_SGI_CC)
int /* deprecated */;
#elif defined(VCL_SUNPRO_CC)
# error "deprecated"
#else
// # pragma warning deprecated
#endif
#endif // vcl_deprecated_header_h_
|