/* * BoxQtQueryPipe.hpp * * Created on: Nov 8, 2010 * Author: heber */ #ifndef BOXQTQUERYPIPE_HPP_ #define BOXQTQUERYPIPE_HPP_ #include class QTableWidget; class Box; class QtDialog; class Matrix; class BoxQtQueryPipe : public QWidget { Q_OBJECT public: BoxQtQueryPipe(Box &_content, QtDialog *_dialog, QTableWidget *_inputTable); virtual ~BoxQtQueryPipe(); public slots: void update(int,int); private: Box &content; QtDialog *dialog; QTableWidget *inputTable; Matrix *tmpM; }; #endif /* BOXQTQUERYPIPE_HPP_ */