/usr/include/rtd/RtdHDU.icc is in skycat 3.1.2+starlink1~b-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 31 32 33 34 35 36 37 | // -*-c++-*-
#ifndef _RtdHDU_h_
#define _RtdHDU_h_
/*
* E.S.O. - VLT project
* "@(#) $Id: RtdHDU.icc,v 1.1.1.1 2009/03/31 14:11:52 cguirao Exp $"
*
* RtdHDU.h - definitions methods for the Rtdimage subcommand hduCmd()
*
* who when what
* -------------- -------- ----------------------------------------
* A. Brighton 05/10/95 Created in RtdImage.h
* pbiereic 01/03/01 copied from RtdImage.h
*/
protected:
// these are part of the implementation of the hdu subcommand (see hduCmd())
int hduCmdHeadings (int argc, char** argv, FitsIO* fits);
int hduCmdGet (int argc, char** argv, FitsIO* fits);
int hduCmdCreate (int argc, char** argv, FitsIO* fits);
int hduCmdDelete (int argc, char** argv, FitsIO* fits);
int hduCmdList (int argc, char** argv, FitsIO* fits);
int hduCmdSet (int argc, char** argv, FitsIO* fits);
int hduCmdType (int argc, char** argv, FitsIO* fits);
int hduCmdDisplay (int argc, char** argv, FitsIO* fits);
int hduCmdFits (int argc, char** argv, FitsIO* fits);
// Write the contents of the current HDU (FITS table) to a catalog file
// or return it as a Tcl list, if filename is NULL.
int getHDU(FitsIO* fits, const char* filename, const char* entry);
// Return the column headings for the current FITS table
int getHDUHeadings(FitsIO* fits);
#endif /* _RtdHDU_h_ */
|