Logo white

optics / imie

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • imie
  • interactivemie.cpp
  • Improved materials and the Kramers-Kronig solver.
    8ffb8373
    dmayerich authored
    2013-04-08 18:04:29 -0500  
    Browse Code ยป
interactivemie.cpp 372 Bytes
Edit Raw Blame History
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::WFlags flags)
    : QMainWindow(parent, flags)
{
    ui.setupUi(this);
}

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

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

}