implemented explicit copy constructor and assignement operator

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15411 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2002-05-07 20:40:04 +00:00
parent 26ddbfd329
commit 54380f29f0
3 changed files with 35 additions and 3 deletions

View File

@@ -124,8 +124,11 @@ class WXDLLEXPORT wxCSConv : public wxMBConv
{
public:
wxCSConv(const wxChar *charset);
wxCSConv(const wxCSConv& conv);
virtual ~wxCSConv();
wxCSConv& operator=(const wxCSConv& conv);
void LoadNow();
virtual size_t MB2WC(wchar_t *buf, const char *psz, size_t n) const;