r999: maintainers added to README_en.
[cinelerra_cv/mob.git] / cinelerra / panauto.h
bloba54f422a314de9219e1d3b3828a5dae9d63dd900
1 #ifndef PANAUTO_H
2 #define PANAUTO_H
4 #include "auto.h"
5 #include "edl.inc"
6 #include "filexml.inc"
7 #include "maxchannels.h"
8 #include "panautos.inc"
10 class PanAuto : public Auto
12 public:
13 PanAuto(EDL *edl, PanAutos *autos);
14 ~PanAuto();
16 int operator==(Auto &that);
17 void load(FileXML *file);
18 void copy(int64_t start, int64_t end, FileXML *file, int default_auto);
19 void copy_from(Auto *that);
20 void dump();
21 void rechannel();
23 float values[MAXCHANNELS];
24 int handle_x, handle_y;
27 #endif