31 lines
498 B
C++
31 lines
498 B
C++
//
|
|
// Created by fly on 2021/12/17.
|
|
//
|
|
|
|
#include "Options.h"
|
|
|
|
|
|
Options::Options(QObject *parent) : OptionsSource(parent) {
|
|
|
|
}
|
|
|
|
void Options::registerOption(
|
|
QString optionId,
|
|
QString optionName,
|
|
QVariant defaultValue,
|
|
OptionsSource::OptionType type,
|
|
bool autoLoad,
|
|
QString editConfig,
|
|
QString description
|
|
) {
|
|
|
|
}
|
|
|
|
QVariant Options::getOption(QString optionId) {
|
|
return {};
|
|
}
|
|
|
|
void Options::setOption(QString optionId, QVariant value) {
|
|
|
|
}
|