00001 #ifndef VIDEO_SCANNER_H 00002 #define VIDEO_SCANNER_H 00003 00004 #include <qstringlist.h> // optional 00005 00006 class VideoScanner 00007 { 00008 public: 00009 VideoScanner(); 00010 ~VideoScanner(); 00011 00012 void doScan(const QStringList &dirs); 00013 00014 private: 00015 class VideoScannerImp *m_imp; 00016 }; 00017 00018 #endif
1.5.5