You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
428 B

#ifndef APPLICATION_H
#define APPLICATION_H
#include <QCoreApplication>
#include <QObject>
#include "./interface/ipcserver.h"
#include "./torrent/torrentclient.h"
class Application : public QCoreApplication
{
Q_OBJECT
public:
Application(int argc, char *argv[]);
bool boot();
virtual int exec();
private:
IpcServer *m_ipcServer;
TorrentClient *m_torrentClient;
signals:
};
#endif // APPLICATION_H