Files
kaizen/src/frontend/CPUSettings.hpp
2025-04-16 15:20:12 +02:00

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;
};