mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-14 17:23:07 -07:00
- Added exit() function to headless loader class so that we have a way to return to prompt
This commit is contained in:
parent
c7ccf39abf
commit
dd22e9009c
1 changed files with 10 additions and 0 deletions
|
@ -32,12 +32,22 @@
|
||||||
#define HEADLESSLOADER_H
|
#define HEADLESSLOADER_H
|
||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
#include <QCoreApplication>
|
||||||
|
|
||||||
class HeadlessLoader: QObject {
|
class HeadlessLoader: QObject {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
HeadlessLoader() {
|
HeadlessLoader() {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
// Call this function to exit qBittorrent headless loader
|
||||||
|
// and return to prompt (object will be deleted by main)
|
||||||
|
void exit() {
|
||||||
|
qApp->quit();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue