00001 #ifndef PANAUTO_H 00002 #define PANAUTO_H 00003 00004 #include "auto.h" 00005 #include "edl.inc" 00006 #include "filexml.inc" 00007 #include "maxchannels.h" 00008 #include "panautos.inc" 00009 00010 class PanAuto : public Auto 00011 { 00012 public: 00013 PanAuto(EDL *edl, PanAutos *autos); 00014 ~PanAuto(); 00015 00016 int operator==(Auto &that); 00017 void load(FileXML *file); 00018 void copy(int64_t start, int64_t end, FileXML *file, int default_auto); 00019 void copy_from(Auto *that); 00020 void dump(); 00021 void rechannel(); 00022 00023 float values[MAXCHANNELS]; 00024 int handle_x, handle_y; 00025 }; 00026 00027 #endif
1.5.5