r125: This commit was manufactured by cvs2svn to create tag 'r1_1_7-last'.
[cinelerra_cv/mob.git] / hvirtual / cinelerra / toggleauto.h
blobc4c111c3116ebaa626df7dcd6ddbf89554d48ab2
1 #ifndef TOGGLEAUTO_H
2 #define TOGGLEAUTO_H
4 // Automation point that takes floating point values
6 #include "auto.h"
7 #include "intautos.inc"
9 class IntAuto : public Auto
11 public:
12 IntAuto() {};
13 IntAuto(IntAutos *autos);
14 ~IntAuto();
16 void copy(int64_t start, int64_t end, FileXML *file, int default_only);
17 void load(FileXML *file);
19 private:
20 int value_to_str(char *string, float value);
25 #endif