| 55 | |
| 56 | template <typename T> |
| 57 | inline std::unique_ptr<SettingChangeBase> Setting<T>::set(const T& value) { |
| 58 | std::unique_ptr<SettingChangeBase> pChange(new SettingChange<T>(this)); |
| 59 | m_value = value; |
| 60 | return pChange; |
| 61 | } |
| 62 | |
| 63 | class SettingChanges { |
| 64 | public: |
no outgoing calls
no test coverage detected