| 198 | class IntValue : public Value { |
| 199 | public: |
| 200 | explicit IntValue(int value) |
| 201 | : Value(std::to_string(value)), |
| 202 | value(value) { |
| 203 | setTypeId<int>(); |
| 204 | } |
| 205 | |
| 206 | explicit IntValue(const std::string &strvalue) |
| 207 | : Value(strvalue) { |
nothing calls this directly
no test coverage detected