X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/765624f7350bf32b1c78a10ab1a1e10729c52cd1..6dbb903bb9410e2a2a977ad349ba7b4b3b12ac78:/include/wx/regex.h?ds=sidebyside diff --git a/include/wx/regex.h b/include/wx/regex.h index e024d0e52a..946d106cb2 100644 --- a/include/wx/regex.h +++ b/include/wx/regex.h @@ -20,16 +20,12 @@ #if wxUSE_REGEX +class WXDLLEXPORT wxString; + // ---------------------------------------------------------------------------- // constants // ---------------------------------------------------------------------------- -// max number of subexpression matches, the default should be big enough for -// all uses but may be a bit wasteful -#ifndef WX_REGEX_MAXMATCHES - #define WX_REGEX_MAXMATCHES 1024 -#endif - // flags for regex compilation: these can be used with Compile() enum { @@ -146,6 +142,11 @@ private: // the real guts of this class wxRegExImpl *m_impl; + + // as long as the class wxRegExImpl is not ref-counted, + // instances of the handle wxRegEx must not be copied. + wxRegEx(const wxRegEx&); + wxRegEx &operator=(const wxRegEx&); }; #endif // wxUSE_REGEX