/usr/include/mathic/BoolParameter.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_BOOL_PARAMETER_GUARD
#define MATHIC_BOOL_PARAMETER_GUARD
#include "stdinc.h"
#include "CliParameter.h"
#include <utility>
#include <string>
namespace mathic {
class BoolParameter : public CliParameter {
public:
BoolParameter(const std::string& name,
const std::string& description,
bool defaultValue);
bool value() const {return _value;}
void setValue(bool value) {_value = value;}
operator bool() const {return value();}
void operator=(bool value) {setValue(value);}
virtual std::string argumentType() const;
virtual std::string valueAsString() const;
virtual void processArgument(const std::string& argument);
private:
bool _value;
};
}
#endif
|