]> git.saurik.com Git - wxWidgets.git/blobdiff - src/palmos/base.cpp
Remove Palm OS port.
[wxWidgets.git] / src / palmos / base.cpp
diff --git a/src/palmos/base.cpp b/src/palmos/base.cpp
deleted file mode 100644 (file)
index 5792e14..0000000
+++ /dev/null
@@ -1,67 +0,0 @@
-///////////////////////////////////////////////////////////////////////////////
-// Name:        src/palmos/base.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$
-// Copyright:   (c) 2004 William Osborne
-// Licence:     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"
-#include "wx/evtloop.h" // wxEventLoop
-
-// ============================================================================
-// wxConsoleAppTraits implementation
-// ============================================================================
-
-void *wxConsoleAppTraits::BeforeChildWaitLoop()
-{
-    return NULL;
-}
-
-void wxConsoleAppTraits::AfterChildWaitLoop(void * WXUNUSED(data))
-{
-}
-
-#if wxUSE_THREADS
-bool wxConsoleAppTraits::DoMessageFromThreadWait()
-{
-    return true;
-}
-
-WXDWORD wxConsoleAppTraits::WaitForThread(WXHANDLE hThread)
-{
-    // TODO
-    return 0;
-}
-#endif // wxUSE_THREADS
-
-#if wxUSE_CONSOLE_EVENTLOOP
-wxEventLoopBase *
-wxConsoleAppTraits::CreateEventLoop()
-{
-    return new wxEventLoop;
-}
-#endif // wxUSE_CONSOLE_EVENTLOOP
-