home *** CD-ROM | disk | FTP | other *** search
/ Geek 6 / Geek-006.iso / linux / video / xmovie-1.5.3.tar.gz / xmovie-1.5.3.tar / xmovie-1.5.3 / xmovie / load.h < prev    next >
C/C++ Source or Header  |  2000-11-29  |  217b  |  17 lines

  1. #ifndef LOAD_H
  2. #define LOAD_H
  3.  
  4. #include "mainwindow.inc"
  5. #include "thread.h"
  6.  
  7. class LoadThread : public Thread
  8. {
  9. public:
  10.     LoadThread(MainWindow *mwindow);
  11.     ~LoadThread();
  12.     void run();
  13.     MainWindow *mwindow;
  14. };
  15.  
  16. #endif
  17.