mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
e7b078a7fd
A few animation function are not necessary anymore. Remove them. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
13 lines
296 B
C++
13 lines
296 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef ANIMATIONFUNCTIONS_H
|
|
#define ANIMATIONFUNCTIONS_H
|
|
|
|
class QObject;
|
|
|
|
namespace Animations {
|
|
void hide(QObject *obj, int speed);
|
|
void show(QObject *obj, int speed);
|
|
void scaleTo(QObject *obj, int speed, double scale);
|
|
}
|
|
|
|
#endif // ANIMATIONFUNCTIONS_H
|