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