my cvs dir got screwed up and didn't commit this...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33811 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton 2005-04-21 23:35:02 +00:00
parent d24b23b76e
commit ac7f7b51da

View File

@ -9,6 +9,9 @@
// Licence: wxWindows licence // Licence: wxWindows licence
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
#ifndef __WX_CFSTRINGHOLDER_H__
#define __WX_CFSTRINGHOLDER_H__
#ifdef __DARWIN__ #ifdef __DARWIN__
#include <CoreFoundation/CFString.h> #include <CoreFoundation/CFString.h>
#else #else
@ -70,7 +73,7 @@ public:
void Assign( const wxString &str , wxFontEncoding encoding ) ; void Assign( const wxString &str , wxFontEncoding encoding ) ;
operator CFStringRef () { return m_cfs; } operator CFStringRef () const { return m_cfs; }
wxString AsString( wxFontEncoding encoding = wxFONTENCODING_DEFAULT ) ; wxString AsString( wxFontEncoding encoding = wxFONTENCODING_DEFAULT ) ;
private: private:
@ -81,3 +84,4 @@ private:
DECLARE_NO_COPY_CLASS( wxMacCFStringHolder ) DECLARE_NO_COPY_CLASS( wxMacCFStringHolder )
} ; } ;
#endif //__WXCFSTRINGHOLDER_H__