GNU compiler included with Mac OS X 10.2 (Jaguar) as well as August Developer Tools update contain a bug concerning #pragma interface handling that can only be worked around by not using them (and they are not necessary anyways) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17039 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
41 lines
814 B
C++
41 lines
814 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/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
|