|
Revision 64, 1.0 KB
(checked in by mbooth, 3 years ago)
|
|
Created a sane makefile/build-system that works without the Eclipse.
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | /* |
|---|
| 2 | * Copyright (c) 2007-2008 Mat Booth |
|---|
| 3 | * |
|---|
| 4 | * This program is free software; you can redistribute it and/or modify |
|---|
| 5 | * it under the terms of the GNU General Public License as published by |
|---|
| 6 | * the Free Software Foundation; either version 2 of the License, or |
|---|
| 7 | * (at your option) any later version. |
|---|
| 8 | * |
|---|
| 9 | * This program is distributed in the hope that it will be useful, |
|---|
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 12 | * GNU Library General Public License for more details. |
|---|
| 13 | * |
|---|
| 14 | * You should have received a copy of the GNU General Public License |
|---|
| 15 | * along with this program. If not, write to: |
|---|
| 16 | * The Free Software Foundation, Inc., |
|---|
| 17 | * 51 Franklin Street, Fifth Floor |
|---|
| 18 | * Boston, MA 02110-1301, USA. |
|---|
| 19 | */ |
|---|
| 20 | |
|---|
| 21 | #ifndef __M3App__ |
|---|
| 22 | #define __M3App__ |
|---|
| 23 | |
|---|
| 24 | #include <wx/wx.h> |
|---|
| 25 | #include "Frame.h" |
|---|
| 26 | |
|---|
| 27 | class M3App : public wxApp |
|---|
| 28 | { |
|---|
| 29 | public: |
|---|
| 30 | M3App(); |
|---|
| 31 | |
|---|
| 32 | private: |
|---|
| 33 | //data |
|---|
| 34 | M3Frame *m_MainFrame; |
|---|
| 35 | |
|---|
| 36 | protected: |
|---|
| 37 | virtual bool OnInit(); |
|---|
| 38 | virtual int OnExit(); |
|---|
| 39 | }; |
|---|
| 40 | |
|---|
| 41 | #endif |
|---|