00001 /* Copyright (c) 2010(Hennequin Thibault) Permission is hereby granted, free of charge, 00002 to any person obtaining a copy of this software and associated documentation files (the "Software"), 00003 to deal in the Software without restriction, including without limitation the rights to use, copy, 00004 modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, 00005 and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 00006 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 00007 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 00008 INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00009 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 00010 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 00011 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 00012 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 00013 00014 #include <QtGui/QApplication> 00015 #include "mainwindow.h" 00016 00017 int main(int argc, char *argv[]) 00018 { 00019 QApplication app(argc, argv); 00020 00021 MainWindow w; 00022 w.show(); 00023 return app.exec(); 00024 }