Files
wxWidgets/utils/dialoged/src/dialoged.h
Julian Smart 2fc9385a2c Removing deprecated classes
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19898 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2003-03-30 22:47:33 +00:00

41 lines
825 B
C++

/////////////////////////////////////////////////////////////////////////////
// Name: dialoged.h
// Purpose: Dialog Editor application header file
// Author: Julian Smart
// Modified by:
// Created: 04/01/98
// RCS-ID: $Id$
// Copyright: (c) Julian Smart
// Licence: wxWindows license
/////////////////////////////////////////////////////////////////////////////
#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "dialoged.h"
#endif
#ifndef dialogedh
#define dialogedh
#include "wx/deprecated/proplist.h"
#include "reseditr.h"
class MyChild;
// Define a new application
class MyApp: public wxApp
{
public:
MyApp(void);
bool OnInit(void);
int OnExit(void);
private:
DECLARE_EVENT_TABLE()
};
DECLARE_APP(MyApp)
extern wxFrame *GetMainFrame(void);
#endif