/usr/include/rtd/NativeImageData.h is in skycat 3.1.2+starlink1~b+dfsg-1.
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 32 33 34 35 36 37 38 39 40 41 | #ifndef _NativeImageData_h_
#define _NativeImageData_h_
/*
* E.S.O. - VLT project
*
* "@(#) $Id: NativeImageData.h,v 1.1.1.1 2009/03/31 14:11:52 cguirao Exp $"
*
* who when what
* -------------- -------- ----------------------------------------
* Allan Brighton 20/03/98 Created
* pbiereic 17/02/03 Native byte order routines revised
* Peter W. Draper 14/11/05 Added double support (back from my patches).
* pbiereic 12/08/07 added data types double and long long int
* Peter W. Draper 17/05/12 Merged skycat double version created by pbiereic.
*/
#define ShortImageData NativeShortImageData
#include "ShortImageData.h"
#undef ShortImageData
#define UShortImageData NativeUShortImageData
#include "UShortImageData.h"
#undef UShortImageData
#define LongImageData NativeLongImageData
#include "LongImageData.h"
#undef LongImageData
#define FloatImageData NativeFloatImageData
#include "FloatImageData.h"
#undef FloatImageData
#define LongLongImageData NativeLongLongImageData
#include "LongLongImageData.h"
#undef LongLongImageData
#define DoubleImageData NativeDoubleImageData
#include "DoubleImageData.h"
#undef DoubleImageData
#endif /* _NativeImageData_h_ */
|