This file is indexed.

/usr/include/cat/TclTcsCat.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
42
43
44
45
46
47
48
49
50
51
52
// -*-c++-*-
#ifndef _TclTcsCat_h_
#define _TclTcsCat_h_

/*
 * E.S.O. - VLT project/ESO Archive
 * $Id: TclTcsCat.h,v 1.1.1.1 2009/03/31 14:11:52 cguirao Exp $
 *
 * TclTcsCat.h - Tcl interface to the TcsCatalog C++ class for 
 * 	 	 accessing TCS catalogs
 *
 * See the man page for a complete description.
 *
 * who             when       what
 * --------------  --------   ----------------------------------------
 * Allan Brighton  14 Jun 96  Created
 */


#include "TclAstroCat.h"
#include "TcsCatalog.h"


/*
 * This class declares the methods used to implement the Tcl tcscat
 * command for accessing TCS catalogs.
 */
class TclTcsCat : public virtual TclAstroCat {
protected:

    // Save (or insert) query results to the given file.
    virtual int saveQueryResult(const char* filename, int numCols, char** colNames, 
				char* info, int iflag, const char* equinoxStr);
    // Remove query results from the given file.
    virtual int removeQueryResult(const char* filename, int numCols, char** colNames, 
				  char* info, const char* equinoxStr);
public:
    // constructor
    TclTcsCat(Tcl_Interp*, const char* cmdname, const char* instname);
    ~TclTcsCat();

    // entry point from Tcl
    static int tcsCatCmd(ClientData, Tcl_Interp* interp, int argc, char* argv[]);

    // -- redefined tcl subcommands --
    int openCmd(int argc, char* argv[]);
    int checkCmd(int argc, char* argv[]);
    int queryCmd(int argc, char* argv[]);

};

#endif /* _TclTcsCat_h_ */