add formatting trailer for emacs
[cinelerra_cv/ct.git] / cinelerra / panauto.h
blobcc7f277a646413bf9fa731572c3bca43b596d422
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
29 // Local Variables:
30 // mode: C++
31 // c-file-style: "linux"
32 // End: