Preliminary settings work
This commit is contained in:
14
src/frontend/CPUSettings.hpp
Normal file
14
src/frontend/CPUSettings.hpp
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
#include <QWidget>
|
||||
#include <QComboBox>
|
||||
#include <JSONUtils.hpp>
|
||||
|
||||
class CPUSettings : public QWidget {
|
||||
QComboBox* cpuTypes = new QComboBox;
|
||||
Q_OBJECT
|
||||
public:
|
||||
CPUSettings(nlohmann::json&);
|
||||
nlohmann::json& settings;
|
||||
Q_SIGNALS:
|
||||
void modified();
|
||||
};
|
||||
Reference in New Issue
Block a user