summaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/qanimation/dummyanimation.h
blob: fe6592ba8d5a2fd565fa5936d790071a802497ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <QtGui>

#ifndef _DUMMYANIMATION_H__

class DummyObject;

class DummyAnimation : public QVariantAnimation
{
public:
    DummyAnimation(DummyObject *d);

    void updateCurrentValue(const QVariant &value);
    void updateState(State state);

private:
    DummyObject *m_dummy;
};

#endif