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