13 lines
386 B
C++
13 lines
386 B
C++
#pragma once
|
|
#include <JSONUtils.hpp>
|
|
|
|
class CPUSettings final {
|
|
//std::unique_ptr<QComboBox> cpuTypes = std::make_unique<QComboBox>();
|
|
//std::unique_ptr<QLabel> label = std::make_unique<QLabel>("CPU type:");
|
|
//std::unique_ptr<QVBoxLayout> mainLayout = std::make_unique<QVBoxLayout>();
|
|
//Q_OBJECT
|
|
public:
|
|
explicit CPUSettings(nlohmann::json &);
|
|
nlohmann::json &settings;
|
|
};
|