Init Commit

This commit is contained in:
2021-12-18 11:27:44 +08:00
commit acfb9a3dae
14 changed files with 275 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
//
// 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) {
}