Fulcrum/Controller.cpp
Calin Culianu e65bacd7fd Petit refactoring
- 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.
2019-04-26 06:23:49 +03:00

16 lines
191 B
C++

#include "Controller.h"
Controller::Controller(QObject *parent)
: QObject(parent)
{
}
Controller::~Controller()
{
}
Controller::Stats
Controller::stats() const
{
return Stats();
}