/
redgpu
/
ezEngine
Обзор
Документация
Войти
/
redgpu
/
ezEngine
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
ms9
Code/Tools/Fileserve/Gui.moc.h
30 строк
561 B
jankrassnigg
Restructured the repository such that all code actually resides under the "Code" folder.
23 янв 2019, 18:34
23 янв 2019, 18:34
2ade834
Код
Авторство
О чём код?
#pragma once #include <Fileserve/Main.h> #ifdef EZ_USE_QT #include <QMainWindow> class ezApplication; class ezQtFileserveWidget; class ezQtFileserveMainWnd : public QMainWindow { Q_OBJECT public: ezQtFileserveMainWnd(ezApplication* pApp, QWidget* parent = nullptr); private Q_SLOTS: void UpdateNetworkSlot(); void OnServerStarted(const QString& ip, ezUInt16 uiPort); void OnServerStopped(); private: ezApplication* m_pApp; ezQtFileserveWidget* m_pFileserveWidget = nullptr; }; void CreateFileserveMainWindow(ezApplication* pApp); #endif