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