Unix signals in Qt applications
It's quite easy to catch unix signals in Qt applications. you may like to ignore or accept them.
#include <QCoreApplication>
#include <signal.h>
#include <unistd.h>
It's quite easy to catch unix signals in Qt applications. you may like to ignore or accept them.
#include <QCoreApplication>
#include <signal.h>
#include <unistd.h>
#include "requestmanager.h" | |
/// | |
/// RequestManager constructor | |
/// | |
/// Description: sets up a network access manager that | |
/// abstract the HTTP/TCP protocol | |
RequestManager::RequestManager(QObject *parent) : QObject(parent) | |
{ |