// Name: config.h
// Purpose: interface of wxConfigBase
// Author: wxWidgets team
-// RCS-ID: $Id$
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
+
+// Flags for constructor style parameter
+enum
+{
+ wxCONFIG_USE_LOCAL_FILE = 1,
+ wxCONFIG_USE_GLOBAL_FILE = 2,
+ wxCONFIG_USE_RELATIVE_PATH = 4,
+ wxCONFIG_USE_NO_ESCAPE_CHARACTERS = 8,
+ wxCONFIG_USE_SUBDIR = 16
+};
+
+
/**
@class wxConfigBase
# config file for my program
UserData = $HOME/data
- # the following syntax is valud only under Windows
+ # the following syntax is valid only under Windows
UserData = %windir%\\data.dat
@endcode
@library{wxbase}
@category{cfg}
*/
-class WXDLLIMPEXP_BASE wxConfigPathChanger
+class wxConfigPathChanger
{
public: