add Autosave continuous backups by Andras Reuss and Andrew-R
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / auto.h
index f3267dc03e19098e9f96421e2de65c6588a7258a..6330952459a3c14262598ecfe2cc86d0b328f1e6 100644 (file)
@@ -46,6 +46,8 @@ public:
        virtual int operator==(Auto &that);
        virtual void copy_from(Auto *that);
        virtual bool is_floatauto() { return false; }
+       virtual bool is_intauto() { return false; }
+       virtual bool is_maskauto() { return false; }
        /* create an interpolation using a1 and a2, (defaulting to previous and next)  */
        /* if not possible, just fill from a1 (or from template if given) and return 0  */
        virtual int interpolate_from(Auto *a1, Auto *a2, int64_t new_position, Auto *templ=0);
@@ -55,10 +57,9 @@ public:
 
        virtual void get_caption(char *string) {};
 
-
-       int skip;       // if added by selection event for moves
        EDL *edl;
        Autos *autos;
+       int id, orig_id;
        int WIDTH, HEIGHT;
 // Units native to the track
        int is_default;