00001 #ifndef _QCamMovieSeq_hpp_ 00002 #define _QCamMovieSeq_hpp_ 00003 00004 #include "QCamMovie.hpp" 00005 00006 class QCamMovieSeq : public QCamMovie { 00007 public: 00008 QCamMovieSeq(); 00009 QWidget * buildGUI(QWidget * father); 00010 bool openImpl(const string & seqName, const QCam & cam); 00011 void closeImpl(); 00012 bool addImpl(const QCamFrame & newFrame, const QCam & cam); 00013 private: 00014 int fileSeqenceNumber_; 00015 string seqenceFileName_; 00016 }; 00017 00018 #endif
1.5.1