This file is indexed.

/usr/include/mathic/IntegerParameter.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
30
31
#ifndef MATHIC_INTEGER_PARAMETER_GUARD
#define MATHIC_INTEGER_PARAMETER_GUARD

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

namespace mathic {
  class IntegerParameter : public CliParameter {
  public:
    IntegerParameter(const std::string& name,
                     const std::string& description,
                     unsigned int defaultValue);

    unsigned int value() const {return _value;}
    void setValue(unsigned int value) {_value = value;}

    operator unsigned int() const {return value();}
    void operator=(unsigned int value) {setValue(value);}

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

  private:
    unsigned int _value;
  };
}

#endif