00001 /* 00002 * (c) Disney Enterprises, Inc. All rights reserved. 00003 * 00004 * This file is licensed under the terms of the Microsoft Public License (MS-PL) 00005 * as defined at: http://opensource.org/licenses/MS-PL. 00006 * 00007 * A complete copy of this license is included in this distribution as the file 00008 * LICENSE. 00009 */ 00010 #include <QtGui/QApplication> 00011 #include "GraphWindow.h" 00012 #include <cmath> 00013 #include <cfloat> 00014 #include <iostream> 00015 00016 int main(int argc,char *argv[]) 00017 { 00018 QApplication app(argc,argv); 00019 GraphWindow* graph=new GraphWindow; 00020 graph->show(); 00021 app.exec(); 00022 00023 return 0; 00024 }