]> git.saurik.com Git - wxWidgets.git/blame - include/wx/joystick.h
wxDialogBase only has one ctor, so just do initialization in ctor instead of Init()
[wxWidgets.git] / include / wx / joystick.h
CommitLineData
2ecf902b 1/////////////////////////////////////////////////////////////////////////////
80fdcdb9 2// Name: wx/joystick.h
2ecf902b
WS
3// Purpose: wxJoystick base header
4// Author: wxWidgets Team
5// Modified by:
6// Created:
7// Copyright: (c) wxWidgets Team
2ecf902b
WS
8// Licence: wxWindows licence
9/////////////////////////////////////////////////////////////////////////////
10
34138703
JS
11#ifndef _WX_JOYSTICK_H_BASE_
12#define _WX_JOYSTICK_H_BASE_
d3c23659 13
2ecf902b
WS
14#include "wx/defs.h"
15
5260937e
VZ
16#if wxUSE_JOYSTICK
17
bb5a9514 18#if defined(__WINDOWS__)
d3c23659 19#include "wx/msw/joystick.h"
2049ba38 20#elif defined(__WXMOTIF__)
85f582bd 21#include "wx/unix/joystick.h"
2049ba38 22#elif defined(__WXGTK__)
85f582bd 23#include "wx/unix/joystick.h"
83df96d6 24#elif defined(__WXX11__)
85f582bd 25#include "wx/unix/joystick.h"
4cb1d3da 26#elif defined(__DARWIN__)
ef0e9220 27#include "wx/osx/core/joystick.h"
a933a544 28#elif defined(__WXMAC__)
ef0e9220 29#include "wx/osx/joystick.h"
1777b9bb
DW
30#elif defined(__WXPM__)
31#include "wx/os2/joystick.h"
d3c23659
JS
32#endif
33
5260937e
VZ
34#endif // wxUSE_JOYSTICK
35
d3c23659 36#endif
34138703 37 // _WX_JOYSTICK_H_BASE_