base.cpp

来自「A*算法 A*算法 A*算法 A*算法A*算法A*算法」· C++ 代码 · 共 56 行

CPP
56
字号
///////////////////////////////////////////////////////////////////////////////
// Name:        src/palmos/basemsw.cpp
// Purpose:     misc stuff only used in applications under PalmOS
// Author:      William Osborne - minimal working wxPalmOS port
// Modified by:
// Created:     10.13.2004
// RCS-ID:      $Id: base.cpp,v 1.2 2005/01/21 21:03:59 ABX Exp $
// Copyright:   (c) 2004 William Osborne
// License:     wxWindows licence
///////////////////////////////////////////////////////////////////////////////

// ============================================================================
// declarations
// ============================================================================

// ----------------------------------------------------------------------------
// headers
// ----------------------------------------------------------------------------

// for compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"

#ifdef __BORLANDC__
    #pragma hdrstop
#endif

#ifndef WX_PRECOMP
#endif //WX_PRECOMP

#include "wx/apptrait.h"

#include "wx/recguard.h"

// ============================================================================
// wxConsoleAppTraits implementation
// ============================================================================

void wxConsoleAppTraits::AlwaysYield()
{
}

void *wxConsoleAppTraits::BeforeChildWaitLoop()
{
    return NULL;
}

void wxConsoleAppTraits::AfterChildWaitLoop(void * WXUNUSED(data))
{
}

bool wxConsoleAppTraits::DoMessageFromThreadWait()
{
    return true;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?