00001 /* 00002 * lozsrame - Legend of Zelda SRAM Editor 00003 * Copyright (C) 2007-2008 emuWorks 00004 * http://games.technoplaza.net/ 00005 * 00006 * This file is part of lozsrame. 00007 * 00008 * lozsrame is free software; you can redistribute it and/or modify it under the 00009 * terms of the GNU General Public License as published by the Free Software 00010 * Foundation; either version 2 of the License, or (at your option) any later 00011 * version. 00012 * 00013 * lozsrame is distributed in the hope that it will be useful, but WITHOUT ANY 00014 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 00015 * A PARTICULAR PURPOSE. See the GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License along with 00018 * lozsrame; if not, write to the Free Software Foundation, Inc., 00019 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00020 */ 00021 00022 // $Id: lozsrame.cc,v 1.7 2008/01/29 20:02:13 technoplaza Exp $ 00023 00024 #include <QApplication> 00025 00026 #include "view/mainwindow.hh" 00027 00028 using namespace lozsrame; 00029 00030 int main(int argc, char **argv) { 00031 QApplication app(argc, argv); 00032 MainWindow window; 00033 00034 window.show(); 00035 00036 return app.exec(); 00037 } 00038