mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
31 lines
367 B
C++
31 lines
367 B
C++
#ifndef SETTING_H
|
|
#define SETTING_H
|
|
|
|
#include <QString>
|
|
|
|
namespace chatterino {
|
|
namespace settings {
|
|
|
|
class Setting
|
|
{
|
|
public:
|
|
explicit Setting(const QString &name)
|
|
: name(name)
|
|
{
|
|
}
|
|
|
|
const QString &
|
|
getName() const
|
|
{
|
|
return name;
|
|
}
|
|
|
|
virtual QString toString() = 0;
|
|
|
|
private:
|
|
QString name;
|
|
};
|
|
}
|
|
|
|
#endif // SETTING_H
|