mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-16 13:01:07 +02:00
18 lines
288 B
C++
18 lines
288 B
C++
#include "Mgr.h"
|
|
#include "Util.h"
|
|
|
|
#include <QThread>
|
|
#include <QTimer>
|
|
|
|
#include <cassert>
|
|
#include <memory>
|
|
|
|
Mgr::Mgr(QObject *parent)
|
|
: QObject(parent)
|
|
{
|
|
assert(qobj()); // Runtime check that derived class followed the rules outlined at the top of Mixins.h
|
|
}
|
|
|
|
Mgr::~Mgr()
|
|
{
|
|
}
|