]> git.saurik.com Git - wxWidgets.git/blame - utils/dialoged/src/dialoged.h
several fixes
[wxWidgets.git] / utils / dialoged / src / dialoged.h
CommitLineData
457814b5
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: dialoged.h
3// Purpose: Dialog Editor application header file
4// Author: Julian Smart
5// Modified by:
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows license
10/////////////////////////////////////////////////////////////////////////////
11
12#ifdef __GNUG__
13#pragma interface "dialoged.h"
14#endif
15
16#ifndef dialogedh
17#define dialogedh
18
19#include "proplist.h"
20#include "reseditr.h"
21
22class MyChild;
23
24// Define a new application
25class MyApp: public wxApp
26{
27 public:
28 MyApp(void);
29 bool OnInit(void);
ae8351fc 30 int OnExit(void);
457814b5
JS
31};
32
33DECLARE_APP(MyApp)
34
35extern wxFrame *GetMainFrame(void);
36
37#endif