00001 #ifndef KEYFRAMES_H 00002 #define KEYFRAMES_H 00003 00004 #include "autos.h" 00005 #include "filexml.inc" 00006 #include "keyframe.inc" 00007 00008 00009 // Keyframes inherit from Autos to reuse the editing commands but 00010 // keyframes don't belong to tracks. Instead they belong to plugins 00011 // because their data is specific to plugins. 00012 00013 00014 class KeyFrames : public Autos 00015 { 00016 public: 00017 KeyFrames(EDL *edl, Track *track); 00018 ~KeyFrames(); 00019 00020 Auto* new_auto(); 00021 void dump(); 00022 }; 00023 00024 #endif
1.5.5