1/////////////////////////////////////////////////////////////////////////////
2// Name:        config.h
3// Purpose:     wxConfig base header
4// Author:      Julian Smart
5// Modified by:
6// Created:
7// Copyright:   (c) Julian Smart
8// RCS-ID:      $Id: config.h 60524 2009-05-05 22:51:44Z PC $
9// Licence:     wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_CONFIG_H_BASE_
13#define _WX_CONFIG_H_BASE_
14
15#include "wx/confbase.h"
16
17#if wxUSE_CONFIG
18
19#if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
20#    ifdef __WIN32__
21#        include "wx/msw/regconf.h"
22#    else
23#        include "wx/msw/iniconf.h"
24#    endif
25#elif defined(__WXPALMOS__) && wxUSE_CONFIG_NATIVE
26#    include "wx/palmos/prefconf.h"
27#else
28#    include "wx/fileconf.h"
29#endif
30
31#endif // wxUSE_CONFIG
32
33#endif // _WX_CONFIG_H_BASE_
34