/////////////////////////////////////////////////////////////////////////////
// Name: fileconf.h
-// Purpose: documentation for wxFileConfig class
+// Purpose: interface of wxFileConfig
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxbase}
@category{FIXME}
- @seealso
- wxFileConfig::Save
+ @see wxFileConfig::Save
*/
class wxFileConfig : public wxConfigBase
{
)
Read the config data from the specified stream instead of the associated file,
as usual.
-
+
@see Save()
*/
wxFileConfig(wxInputStream& is);
after saving it successfully, the dirty flag is reset so no changes will be
written back to the file this object is associated with until you change its
contents again.
-
+
@see wxConfigBase::Flush
*/
bool Save(wxOutputStream& os);
some sensitive information, such as passwords), you could use
@c SetUmask(0077).
This function doesn't do anything on non-Unix platforms.
-
- @see wxCHANGE_UMASK
+
+ @see wxCHANGE_UMASK()
*/
void SetUmask(int mode);
};
+