blob: e1a0d4deee88fb7b51043096142b87d1e741c0f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef ANIMATIONFUNCTIONS_H
#define ANIMATIONFUNCTIONS_H
#include <QtGlobal>
class QObject;
namespace Animations{
void hide(QObject *obj);
void moveTo(QObject *obj, qreal x, qreal y);
};
#endif
|