]> git.saurik.com Git - wxWidgets.git/blame - include/wx/config.h
fixed operator[] in wxUSE_STL build
[wxWidgets.git] / include / wx / config.h
CommitLineData
2ecf902b
WS
1/////////////////////////////////////////////////////////////////////////////
2// Name: config.h
3// Purpose: wxConfig base header
99d80019 4// Author: Julian Smart
2ecf902b
WS
5// Modified by:
6// Created:
99d80019 7// Copyright: (c) Julian Smart
2ecf902b
WS
8// RCS-ID: $Id$
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
26ac5fad
JS
12#ifndef _WX_CONFIG_H_BASE_
13#define _WX_CONFIG_H_BASE_
14
2ecf902b 15#include "wx/defs.h"
26ac5fad
JS
16#include "wx/confbase.h"
17
16193c2b 18#if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
23a59c2c
WS
19# ifdef __WIN32__
20# include "wx/msw/regconf.h"
21# else
22# include "wx/msw/iniconf.h"
23# endif
24#elif defined(__WXPALMOS__) && wxUSE_CONFIG_NATIVE
25# include "wx/palmos/prefconf.h"
26ac5fad
JS
26#else
27# include "wx/fileconf.h"
c801d85f
KB
28#endif
29
c801d85f 30#endif
26ac5fad 31 // _WX_CONFIG_H_BASE_