mirror of
https://github.com/ModOrganizer2/modorganizer-bsapacker.git
synced 2026-07-27 14:06:14 -07:00
17 lines
285 B
C++
17 lines
285 B
C++
#ifndef ISETTINGSSERVICE_H
|
|
#define ISETTINGSSERVICE_H
|
|
|
|
#include <QList>
|
|
|
|
namespace BsaPacker
|
|
{
|
|
class ISettingsService
|
|
{
|
|
public:
|
|
virtual ~ISettingsService() = default;
|
|
[[nodiscard]] virtual QVariant GetPluginSetting(const QString&) const = 0;
|
|
};
|
|
}
|
|
|
|
#endif // ISETTINGSSERVICE_H
|