]> git.saurik.com Git - wxWidgets.git/blob - src/unix/baseunix.cpp
cce400bf2039df1a857ca7359a8575905dc569c5
[wxWidgets.git] / src / unix / baseunix.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/unix/baseunix.cpp
3 // Purpose: misc stuff only used in console applications under Unix
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 23.06.2003
7 // RCS-ID: $Id$
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // License: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #ifndef WX_PRECOMP
28 #include "wx/log.h"
29 #include "wx/intl.h"
30 #include "wx/utils.h"
31 #endif //WX_PRECOMP
32
33 #include "wx/unix/execute.h"
34 #include "wx/evtloop.h"
35 #include "wx/gsocket.h"
36
37 #include "wx/unix/private/timer.h"
38
39 // for waitpid()
40 #include <sys/types.h>
41 #include <sys/wait.h>
42
43 // ============================================================================
44 // wxConsoleAppTraits implementation
45 // ============================================================================
46
47 #if wxUSE_TIMER
48
49 #endif // wxUSE_TIMER
50
51 // Note: wxConsoleAppTraits::CreateEventLoop() is defined in evtloopunix.cpp!