NCL Composer  0.1.5
 All Classes Functions Variables Pages
gifview.h
1 #ifndef GIFVIEW_H
2 #define GIFVIEW_H
3 #include<QLabel>
4 #include<QString>
5 #include<QMovie>
6 #include<QtTest>
7 
12 class gifview : public QLabel
13 {
14  Q_OBJECT
15 public:
16 
21  gifview(QString filename);
22 
26  ~gifview();
27 private:
28  QMovie *movie;
29 };
30 
31 #endif // GIFVIEW_H