#ifndef __CPPLUGINSIO__IMAGEWRITERQDIALOG__H__ #define __CPPLUGINSIO__IMAGEWRITERQDIALOG__H__ #include #ifdef cpPlugins_QT4 #include namespace cpPlugins { namespace BaseObjects { class ProcessObject; } } namespace cpPluginsIO { /** */ class ImageWriterQDialog : public QFileDialog { Q_OBJECT; public: ImageWriterQDialog( QWidget* parent = 0 ); virtual ~ImageWriterQDialog( ); void setProcessObject( cpPlugins::BaseObjects::ProcessObject* obj ); protected slots: void _dlg_Accepted( ); protected: cpPlugins::BaseObjects::ProcessObject* m_ProcessObject; }; } // ecapseman #endif // cpPlugins_QT4 #endif // __CPPLUGINS__IO__IMAGEWRITERQDIALOG__H__ // eof - $RCSfile$