r974: configure: Check for presence of libtiff headers and libraries.
[cinelerra_cv.git] / cinelerra / threadloader.h
blob3bfc41fa1e4a520f871c27ee40643152b4446d4b
1 #ifndef THREADLOADER_H
2 #define THREADLOADER_H
4 #include "mwindow.inc"
5 #include "thread.h"
7 // ================================= loads files as a thread
9 class ThreadLoader : public Thread
11 public:
12 ThreadLoader(MWindow *mwindow);
13 ~ThreadLoader();
15 int set_paths(ArrayList<char *> *paths);
16 void run();
17 MWindow *mwindow;
18 ArrayList<char *> *paths;
21 #endif