2004-03-23 17:35:05 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/mac/apptbase.h
|
|
|
|
// Purpose: declaration of wxAppTraits for Mac systems
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by: Stefan Csomor
|
|
|
|
// Created: 23.06.2003
|
|
|
|
// RCS-ID: $Id$
|
2004-05-23 14:56:36 +00:00
|
|
|
// Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
2004-03-23 17:35:05 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_MAC_APPTBASE_H_
|
|
|
|
#define _WX_MAC_APPTBASE_H_
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxAppTraits: the Mac version adds extra hooks needed by Mac code
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class WXDLLEXPORT wxAppTraits : public wxAppTraitsBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// wxExecute() support methods
|
|
|
|
// ---------------------------
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
// wxThread helpers
|
|
|
|
// ----------------
|
|
|
|
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
|
|
|
|
// other miscellaneous helpers
|
|
|
|
// ---------------------------
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_MAC_APPTBASE_H_
|
|
|
|
|