From 4232f8450d896068713d988cf5541835c3818682 Mon Sep 17 00:00:00 2001 From: manuel Date: Tue, 5 Apr 2011 01:29:33 +0200 Subject: - we love ogg, we hate mp3/wav - a lot of coding style/intent fix - add constant.h to pro files --- pacman-c++/animationmanager.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'pacman-c++/animationmanager.h') diff --git a/pacman-c++/animationmanager.h b/pacman-c++/animationmanager.h index eb5b7d0..408395b 100644 --- a/pacman-c++/animationmanager.h +++ b/pacman-c++/animationmanager.h @@ -8,26 +8,26 @@ class QAbstractAnimation; QT_END_NAMESPACE class AnimationManager - : public QObject + : public QObject { -Q_OBJECT + Q_OBJECT public: - AnimationManager(); - void registerAnimation(QAbstractAnimation *anim); - void unregisterAnimation(QAbstractAnimation *anim); - void unregisterAllAnimations(); - static AnimationManager *self(); + AnimationManager(); + void registerAnimation(QAbstractAnimation *anim); + void unregisterAnimation(QAbstractAnimation *anim); + void unregisterAllAnimations(); + static AnimationManager *self(); public slots: - void pauseAll(); - void resumeAll(); + void pauseAll(); + void resumeAll(); private slots: - void unregisterAnimation_helper(QObject *obj); + void unregisterAnimation_helper(QObject *obj); private: - static AnimationManager *instance; - QList animations; + static AnimationManager *instance; + QList animations; }; #endif // ANIMATIONMANAGER_H -- cgit v1.2.3