This file is indexed.

/usr/include/getopt++/GetOption.h is in libgetopt++-dev 0.0.2-p22-3.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
/*
 * Copyright (c) 2002 Robert Collins.
 *
 *     This program is free software; you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation; either version 2 of the License, or
 *     (at your option) any later version.
 *
 *     A copy of the GNU General Public License can be found at
 *     http://www.gnu.org/
 *
 * Written by Robert Collins <robertc@hotmail.com>
 *
 */

#ifndef _GETOPTION_H_
#define _GETOPTION_H_

#include <getopt++/OptionSet.h>

class Option;

class GetOption : public OptionSet
{
public:
  static GetOption & GetInstance ();
private:
  static GetOption Instance;
  void Init ();
  int inited;			//we can't use a bool in case it is
  // non zero on startup.
};

#endif // _GETOPTION_H_