#ifndef QTMAYAHANDLER_H #define QTMAYAHANDLER_H #include <QtGui/QImageIOHandler> class MayaRenderer; class QtMayaHandler: public QImageIOHandler { public: QtMayaHandler(QIODevice *device); virtual ~QtMayaHandler(); bool canRead() const; bool read(QImage *image); QByteArray name() const; static bool canRead( QIODevice *device ); private: MayaRenderer * m_pMayaRenderer; }; #endif /* QTMAYAHANDLER_H */
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 7260 | Scott Murray |
Maya plugin for generating thumbnails and previews. For use with the P4V client or P4Thumb. Included is the source, project and compiled dll along with a configuration file so you can customize your rendering preferences :-) |