added wxPersistentRegisterAndRestore() function to work around VC6 brokenness in debug DLL build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58635 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -259,6 +259,23 @@ protected:
|
||||
framework.
|
||||
|
||||
@see @ref persistence_defining
|
||||
|
||||
@header{wx/persist.h}
|
||||
*/
|
||||
template <class T>
|
||||
wxPersistentObject *wxCreatePersistentObject(T *obj);
|
||||
|
||||
/**
|
||||
A shorter synonym for wxPersistenceManager::RegisterAndRestore().
|
||||
|
||||
This function simply calls wxPersistenceManager::RegisterAndRestore() but
|
||||
using it results in slightly shorter code as it calls
|
||||
wxPersistenceManager::Get() internally.
|
||||
|
||||
For the implementation reasons, this function @em mucst be used instead of
|
||||
the template method when using Microsoft Visual C++ 6 compiler.
|
||||
|
||||
@header{wx/persist.h}
|
||||
*/
|
||||
template <class T>
|
||||
bool wxPersistentRegisterAndRestore(T *obj);
|
||||
|
Reference in New Issue
Block a user