/* * 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 "Parameters/Parameter.hpp" #include class QTableWidget; class QtDialog; class RealSpaceMatrix; class RealSpaceMatrixQtQueryPipe : public QWidget { Q_OBJECT public: RealSpaceMatrixQtQueryPipe(Parameter &_content, QtDialog *_dialog, QTableWidget *_inputTable); virtual ~RealSpaceMatrixQtQueryPipe(); public slots: void update(int,int); private: Parameter &content; QtDialog *dialog; QTableWidget *inputTable; RealSpaceMatrix *tmpM; }; #endif /* BOXQTQUERYPIPE_HPP_ */