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