/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
Code/Editor/EditorFramework/Dialogs/PluginSelectionDlg.moc.h
25 строк
606 B
Ingrater
Implement parameter coding guidelines in clang-tidy (#808)
18 фев 2023, 13:18
Не верифицирован
18 фев 2023, 13:18
3c98d47
Код
Авторство
О чём код?
#pragma once #include <EditorFramework/EditorFrameworkDLL.h> #include <EditorFramework/EditorApp/Configuration/Plugins.h> #include <EditorFramework/ui_PluginSelectionDlg.h> #include <QDialog> class EZ_EDITORFRAMEWORK_DLL ezQtPluginSelectionDlg : public QDialog, public Ui_PluginSelectionDlg { public: Q_OBJECT public: ezQtPluginSelectionDlg(ezPluginBundleSet* pPluginSet, QWidget* pParent = nullptr); ~ezQtPluginSelectionDlg(); private Q_SLOTS: void on_Buttons_clicked(QAbstractButton* pButton); private: ezPluginBundleSet m_LocalPluginSet; ezPluginBundleSet* m_pPluginSet = nullptr; };