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