6 #include "keyframes.inc"
7 #include "messages.inc"
9 // The default constructor is used for menu effects and pasting effects.
11 class KeyFrame
: public Auto
15 KeyFrame(EDL
*edl
, KeyFrames
*autos
);
18 void load(FileXML
*file
);
19 void copy(int64_t start
, int64_t end
, FileXML
*file
, int default_only
);
20 void copy_from(Auto
*that
);
21 void copy_from(KeyFrame
*that
);
22 void copy_from_common(KeyFrame
*that
);
23 int operator==(Auto
&that
);
24 int operator==(KeyFrame
&that
);
26 int identical(KeyFrame
*src
);
28 char data
[MESSAGESIZE
];