This file is indexed.

/usr/include/ns3/file-config.h is in libns3-dev 3.13+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
#ifndef FILE_CONFIG_H
#define FILE_CONFIG_H

#include <string>

namespace ns3 {

/**
 * \ingroup configstore
 *
 */
class FileConfig
{
public:
  virtual ~FileConfig ();
  virtual void SetFilename (std::string filename) = 0;
  virtual void Default (void) = 0;
  virtual void Global (void) = 0;
  virtual void Attributes (void) = 0;
};

/**
 * \ingroup configstore
 *
 */
class NoneFileConfig : public FileConfig
{
public:
  NoneFileConfig ();
  virtual ~NoneFileConfig ();
  virtual void SetFilename (std::string filename);
  virtual void Default (void);
  virtual void Global (void);
  virtual void Attributes (void);
};

} // namespace ns3

#endif /* FILE_CONFIG_H */