Flow Visualization 1.0
|
00001 #ifndef MAINWINDOW_H 00002 #define MAINWINDOW_H 00003 00004 #include <QMainWindow> 00005 00006 namespace Ui { 00007 class MainWindow; 00008 } 00009 00010 class MainWindow : public QMainWindow 00011 { 00012 Q_OBJECT 00013 00014 public: 00015 explicit MainWindow(QWidget *parent = 0); 00016 ~MainWindow(); 00017 00018 public slots: 00019 void loadInitialTransferFunction(); 00020 void drawArrows(); 00021 00022 private: 00023 Ui::MainWindow *ui; 00024 00025 00026 00027 }; 00028 00029 #endif // MAINWINDOW_H