00001 #include "filexml.h" 00002 #include "keyframe.h" 00003 #include "keyframes.h" 00004 00005 KeyFrames::KeyFrames(EDL *edl, Track *track) 00006 : Autos(edl, track) 00007 { 00008 } 00009 00010 KeyFrames::~KeyFrames() 00011 { 00012 } 00013 00014 Auto* KeyFrames::new_auto() 00015 { 00016 return new KeyFrame(edl, this); 00017 } 00018 00019 00020 void KeyFrames::dump() 00021 { 00022 printf(" DEFAULT_KEYFRAME\n"); 00023 ((KeyFrame*)default_auto)->dump(); 00024 printf(" KEYFRAMES total=%d\n", total()); 00025 for(KeyFrame *current = (KeyFrame*)first; 00026 current; 00027 current = (KeyFrame*)NEXT) 00028 { 00029 current->dump(); 00030 } 00031 } 00032
1.4.4