This file is indexed.

/usr/include/mathic/CliParameter.h is in libmathic-dev 1.0~git20160320-4.

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
#ifndef MATHIC_PARAMETER_GUARD
#define MATHIC_PARAMETER_GUARD

#include "stdinc.h"
#include <string>

namespace mathic {
  class CliParameter {
  public:
    virtual ~CliParameter();

    const std::string& name() const {return _name;}
    const std::string& description() const {return _description;}
    void appendToDescription(const std::string& str);

    virtual std::string argumentType() const = 0;
    virtual std::string valueAsString() const = 0;
    virtual void processArgument(const std::string& argument) = 0;

  protected:
    CliParameter(const std::string& name, const std::string& description);

  private:
    std::string _name;
    std::string _description;
  };
}

#endif