Init Commit
This commit is contained in:
30
Server/Service/Options.cpp
Normal file
30
Server/Service/Options.cpp
Normal 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) {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user