mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-17 13:07:35 +02:00
17 lines
142 B
C++
17 lines
142 B
C++
|
|
#include "Mgr.h"
|
||
|
|
|
||
|
|
Mgr::Mgr(QObject *parent)
|
||
|
|
: QObject(parent)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
Mgr::~Mgr()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
Mgr::Stats
|
||
|
|
Mgr::stats() const
|
||
|
|
{
|
||
|
|
return Stats();
|
||
|
|
}
|