mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
12 lines
199 B
C
12 lines
199 B
C
|
#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
|