/* * BooleanQtQueryPipe.hpp * * Created on: Nov 8, 2010 * Author: heber */ #ifndef BOOLEANQTQUERYPIPE_HPP_ #define BOOLEANQTQUERYPIPE_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Parameters/Parameter.hpp" #include class QtDialog; class QCheckBox; class BooleanQtQueryPipe : public QWidget { Q_OBJECT public: BooleanQtQueryPipe(Parameter &_content, QtDialog *_dialog, QCheckBox *_booleanCheckBox); virtual ~BooleanQtQueryPipe(); public slots: void update(int state); private: Parameter &content; QtDialog *dialog; QCheckBox *booleanCheckBox; }; #endif /* BOOLEANQTQUERYPIPE_HPP_ */