/* * BoxQtQueryPipe.hpp * * Created on: Nov 8, 2010 * Author: heber */ #ifndef BOXQTQUERYPIPE_HPP_ #define BOXQTQUERYPIPE_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include class QTableWidget; class Box; class QtDialog; class RealSpaceMatrix; 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; RealSpaceMatrix *tmpM; }; #endif /* BOXQTQUERYPIPE_HPP_ */