File indexing completed on 2024-05-12 16:17:55

0001 #pragma once
0002 
0003 #include <QCoreApplication>
0004 #include <QObject>
0005 
0006 class Server : public QCoreApplication
0007 {
0008     Q_OBJECT
0009 public:
0010     explicit Server(int &argc, char **argv);
0011     ~Server();
0012     bool init();
0013 
0014 private:
0015     QVector<QObject*> m_modules;
0016 };
0017