src/plugins/imageformats/ico/qicohandler.h
changeset 30 5dc02b23752f
parent 18 2f34d5167611
equal deleted inserted replaced
29:b72c6db6890b 30:5dc02b23752f
    41 #ifndef QTICOHANDLER_H
    41 #ifndef QTICOHANDLER_H
    42 #define QTICOHANDLER_H
    42 #define QTICOHANDLER_H
    43 
    43 
    44 #include <QtGui/QImageIOHandler>
    44 #include <QtGui/QImageIOHandler>
    45 
    45 
       
    46 QT_BEGIN_NAMESPACE
       
    47 
    46 class ICOReader;
    48 class ICOReader;
    47 class QtIcoHandler: public QImageIOHandler
    49 class QtIcoHandler: public QImageIOHandler
    48 {
    50 {
    49 public:
    51 public:
    50     QtIcoHandler(QIODevice *device);
    52     QtIcoHandler(QIODevice *device);
    69     int m_currentIconIndex;
    71     int m_currentIconIndex;
    70     ICOReader *m_pICOReader;
    72     ICOReader *m_pICOReader;
    71 
    73 
    72 };
    74 };
    73 
    75 
       
    76 QT_END_NAMESPACE
       
    77 
    74 #endif /* QTICOHANDLER_H */
    78 #endif /* QTICOHANDLER_H */
    75 
    79