Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git] / cinelerra / keyframes.h
blob60f534b84e620c4fb2c77908412e10bfdce18ce7
1 #ifndef KEYFRAMES_H
2 #define KEYFRAMES_H
4 #include "autos.h"
5 #include "filexml.inc"
6 #include "keyframe.inc"
9 // Keyframes inherit from Autos to reuse the editing commands but
10 // keyframes don't belong to tracks. Instead they belong to plugins
11 // because their data is specific to plugins.
14 class KeyFrames : public Autos
16 public:
17 KeyFrames(EDL *edl, Track *track);
18 ~KeyFrames();
20 Auto* new_auto();
21 void dump();
24 #endif
26 // Local Variables:
27 // mode: C++
28 // c-file-style: "linux"
29 // End: