#ifndef __PIPELINEEDITOR__H__ #define __PIPELINEEDITOR__H__ #include // ------------------------------------------------------------------------- namespace Ui { class PipelineEditor; } /** */ class PipelineEditor : public cpPipelineEditor::BaseQtMainWindow { Q_OBJECT; public: typedef PipelineEditor Self; typedef cpPipelineEditor::BaseQtMainWindow Superclass; public: explicit PipelineEditor( int argc, char* argv[], QApplication* app, QWidget* parent = NULL ); virtual ~PipelineEditor( ); protected slots: void _ShowFilterOutput( const std::string& filter_name, const std::string& output_name ); void _HideFilterOutput( const std::string& filter_name, const std::string& output_name ); void _PropertiesFilterOutput( const std::string& filter_name, const std::string& output_name ); private: Ui::PipelineEditor* m_UI; }; #endif // __CPPIPELINEEDITOR__H__ // eof - $RCSfile$