Logo white

optics / imie

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • imie
  • interactivemie.cpp
  • Added dialog support and display of distortion maps.
    39a7d6e9
    dmayerich authored
    2013-03-06 11:09:25 -0600  
    Browse Code ยป
interactivemie.cpp 373 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);

}