Logo white

optics / imie

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • imie
  • interactivemie.cpp
  • updates from STIM move
    887d4441
    David Mayerich authored
    2015-12-09 12:09:23 -0600  
    Browse Code ยป
interactivemie.cpp 377 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#include "interactivemie.h"
#include <stdlib.h>

qtDistortionDialog* distortionDialog;

InteractiveMie::InteractiveMie(QWidget *parent, Qt::WindowFlags flags)
    : QMainWindow(parent, flags)
{
    ui.setupUi(this);
}

InteractiveMie::~InteractiveMie()
{
    updating = false;
}

void InteractiveMie::closeEvent(QCloseEvent *event)
{
    cout<<"Exiting"<<endl;
    exit(0);

}