#include <exception>
#include <iostream>
#include <QtGui/QApplication>
#include "mandoWindow.hh"

using namespace std;

int main( int argc, char *argv[] )
{
  int retVal = 0;
  try {

    QApplication app( argc, argv );
    MandoWindow window;
    window.show();
    retVal = app.exec();

  } catch ( exception &e ) {

    cerr << e.what() << endl;
    retVal = 1;


  };

  return retVal;
}