mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-10 18:45:46 -04:00
Settings: Expose Save() method to interface
This commit is contained in:
@ -11,6 +11,7 @@ class SettingsInterface
|
||||
public:
|
||||
virtual ~SettingsInterface();
|
||||
|
||||
virtual bool Save() = 0;
|
||||
virtual void Clear() = 0;
|
||||
|
||||
virtual int GetIntValue(const char* section, const char* key, int default_value = 0) = 0;
|
||||
|
@ -13,7 +13,7 @@ public:
|
||||
INISettingsInterface(std::string filename);
|
||||
~INISettingsInterface() override;
|
||||
|
||||
bool Save();
|
||||
bool Save() override;
|
||||
|
||||
void Clear() override;
|
||||
|
||||
|
Reference in New Issue
Block a user