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