00001 /*! @file Qt/test-ImageQt.cpp test Qt interface for Image reading/writing/display */ 00002 00003 // $HeadURL: svn://isvn.usc.edu/software/invt/trunk/saliency/src/Qt/test-ImageQt.cpp $ 00004 // $Id: test-ImageQt.cpp 5957 2005-11-16 18:10:52Z rjpeters $ 00005 00006 #include <qapplication.h> 00007 #include "Qt/ui/ImageQtMainForm.h" 00008 00009 int main( int argc, char ** argv ) 00010 { 00011 QApplication a( argc, argv ); 00012 ImageQtMainForm *w = new ImageQtMainForm; 00013 w->show(); 00014 a.connect( &a, SIGNAL( lastWindowClosed() ), &a, SLOT( quit() ) ); 00015 return a.exec(); 00016 }