| 24 | |
| 25 | |
| 26 | class ProfileSetting : public Profile |
| 27 | { |
| 28 | public: |
| 29 | explicit ProfileSetting(const std::wstring& path) |
| 30 | : Profile(path) |
| 31 | { |
| 32 | } |
| 33 | ~ProfileSetting() = default; |
| 34 | |
| 35 | bool GetSettings(Setting& info) const; |
| 36 | bool SetSettings(const Setting& info) const; |
| 37 | }; |
no outgoing calls
no test coverage detected