Blame view

interactivemie.cpp 377 Bytes
8ffb8373   dmayerich   Improved material...
1
2
  #include "interactivemie.h"
  #include <stdlib.h>
39a7d6e9   dmayerich   Added dialog supp...
3
4
  
  qtDistortionDialog* distortionDialog;
8ffb8373   dmayerich   Improved material...
5
  
887d4441   David Mayerich   updates from STIM...
6
  InteractiveMie::InteractiveMie(QWidget *parent, Qt::WindowFlags flags)
8ffb8373   dmayerich   Improved material...
7
8
9
10
11
12
13
14
      : QMainWindow(parent, flags)
  {
      ui.setupUi(this);
  }
  
  InteractiveMie::~InteractiveMie()
  {
      updating = false;
39a7d6e9   dmayerich   Added dialog supp...
15
16
17
18
  }
  
  void InteractiveMie::closeEvent(QCloseEvent *event)
  {
8ffb8373   dmayerich   Improved material...
19
      cout<<"Exiting"<<endl;
39a7d6e9   dmayerich   Added dialog supp...
20
21
      exit(0);
  
8ffb8373   dmayerich   Improved material...
22
  }