Files
kaizen/src/frontend/CPUSettings.hpp
2024-08-27 21:35:07 +02:00

15 lines
268 B
C++

#pragma once
#include <JSONUtils.hpp>
#include <QComboBox>
#include <QWidget>
class CPUSettings : public QWidget {
QComboBox *cpuTypes = new QComboBox;
Q_OBJECT
public:
CPUSettings(nlohmann::json &);
nlohmann::json &settings;
Q_SIGNALS:
void modified();
};