mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
22 lines
403 B
C
22 lines
403 B
C
|
#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
|