1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00
LibQQt/examples/animationframe/animationmanager.h

22 lines
382 B
C
Raw Normal View History

2017-10-27 13:39:14 +08:00
#ifndef ANIMATIONMANAGER_H
#define ANIMATIONMANAGER_H
#include <QObject>
#include "qqtcore.h"
class AnimationManager : public QObject
{
public:
static AnimationManager *Instance(QObject* parent = 0);
signals:
public slots:
protected:
explicit AnimationManager(QObject *parent = nullptr);
private:
static AnimationManager* _instance;
};
#endif // ANIMATIONMANAGER_H