/
Shymer123
/
Messenger
Обзор
Документация
Войти
/
Shymer123
/
Messenger
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
UI_Client/SourceFiles/RequestResponseHandler/dependencyManager.h
24 строки
524 B
Shymer123
A lot of bugs related to the creation of dialogs and groups have been
26 мар 2025, 16:07
26 мар 2025, 16:07
6a8c3e4
Код
Авторство
О чём код?
#ifndef DEPENDENCYMANAGER_H #define DEPENDENCYMANAGER_H #include <QTcpSocket> #include "communicationHandler.h" class DependencyManager { public: static DependencyManager& instance(); void initializeCommunicationHandler(QTcpSocket* clientSocket); CommunicationHandler* communicationHandler() const; private: DependencyManager() = default; ~DependencyManager(); CommunicationHandler* m_communicationHandler = nullptr; Q_DISABLE_COPY_MOVE(DependencyManager) }; #endif // DEPENDENCYMANAGER_H