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