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