mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-15 12:50:49 +02:00
- Made the stale timeout be 2 mins now - Check clients runs every 1 minute - Added 'Controller' ABC which EXMgr is one of and the TcpServer will be another.
16 lines
191 B
C++
16 lines
191 B
C++
#include "Controller.h"
|
|
|
|
Controller::Controller(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
}
|
|
|
|
Controller::~Controller()
|
|
{
|
|
}
|
|
|
|
Controller::Stats
|
|
Controller::stats() const
|
|
{
|
|
return Stats();
|
|
}
|