These classes had a ton of similarities, so they've now been modified to use a common base class.
18 lines
280 B
C++
18 lines
280 B
C++
#ifndef KEYFRAMEVIEW_H
|
|
#define KEYFRAMEVIEW_H
|
|
|
|
#include "keyframeviewbase.h"
|
|
|
|
class KeyframeView : public KeyframeViewBase
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
KeyframeView(QWidget* parent = nullptr);
|
|
|
|
public slots:
|
|
void AddKeyframe(NodeKeyframePtr key, int y);
|
|
|
|
};
|
|
|
|
#endif // KEYFRAMEVIEW_H
|