| 44 | }; |
| 45 | |
| 46 | class BoolSetting : public Setting |
| 47 | { |
| 48 | public: |
| 49 | BoolSetting(bool &handle, bool value); |
| 50 | |
| 51 | virtual void set() override; |
| 52 | |
| 53 | virtual std::type_index get_type() override; |
| 54 | |
| 55 | private: |
| 56 | bool &handle; |
| 57 | |
| 58 | bool value; |
| 59 | }; |
| 60 | |
| 61 | class IntSetting : public Setting |
| 62 | { |
nothing calls this directly
no outgoing calls
no test coverage detected