Merge CV, ver=5.1; ops/methods from HV, and interface from CV where possible
[goodguy/history.git] / cinelerra-5.0 / cinelerra / nestededls.h
diff --git a/cinelerra-5.0/cinelerra/nestededls.h b/cinelerra-5.0/cinelerra/nestededls.h
deleted file mode 100644 (file)
index 2138e50..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-#ifndef NESTEDEDLS_H
-#define NESTEDEDLS_H
-
-
-#include "arraylist.h"
-#include "edl.inc"
-
-class NestedEDLs
-{
-public:
-       NestedEDLs();
-       ~NestedEDLs();
-
-// Return copy of the src EDL which belongs to the current object.
-       EDL* get_copy(EDL *src);
-// Return new EDL loaded from path
-       EDL* get(char *path);
-       int size();
-       EDL* get(int number);
-       void clear();
-       void update_index(EDL *nested_edl);
-       void remove_edl(EDL *nested_edl);
-
-       ArrayList<EDL*> nested_edls;
-};
-
-
-#endif
-
-