git-svn-id: svn://10.65.10.50/branches/R_10_00@23289 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			34 lines
		
	
	
		
			880 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			880 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /////////////////////////////////////////////////////////////////////////////
 | |
| // Name:        config.h
 | |
| // Purpose:     wxConfig base header
 | |
| // Author:      Julian Smart
 | |
| // Modified by:
 | |
| // Created:
 | |
| // Copyright:   (c) Julian Smart
 | |
| // RCS-ID:      $Id: config.h 60524 2009-05-05 22:51:44Z PC $
 | |
| // Licence:     wxWindows licence
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
| #ifndef _WX_CONFIG_H_BASE_
 | |
| #define _WX_CONFIG_H_BASE_
 | |
| 
 | |
| #include "wx/confbase.h"
 | |
| 
 | |
| #if wxUSE_CONFIG
 | |
| 
 | |
| #if defined(__WXMSW__) && wxUSE_CONFIG_NATIVE
 | |
| #    ifdef __WIN32__
 | |
| #        include "wx/msw/regconf.h"
 | |
| #    else
 | |
| #        include "wx/msw/iniconf.h"
 | |
| #    endif
 | |
| #elif defined(__WXPALMOS__) && wxUSE_CONFIG_NATIVE
 | |
| #    include "wx/palmos/prefconf.h"
 | |
| #else
 | |
| #    include "wx/fileconf.h"
 | |
| #endif
 | |
| 
 | |
| #endif // wxUSE_CONFIG
 | |
| 
 | |
| #endif // _WX_CONFIG_H_BASE_
 |