fixed VC6 warnings about non-dllexported members in dllexported classes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46407 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2007-06-11 19:59:11 +00:00
parent ae51cebbe6
commit 541aa82180
4 changed files with 29 additions and 10 deletions

View File

@@ -263,9 +263,9 @@ public:
// we need to declare const_iterator in wxStringImpl scope, the friend
// declaration inside iterator class itself is not enough, or at least not
// for g++ 3.4 (g++ 4 is ok)
class const_iterator;
class WXDLLIMPEXP_BASE const_iterator;
class iterator
class WXDLLIMPEXP_BASE iterator
{
WX_DEFINE_STRINGIMPL_ITERATOR(iterator,
wxStringCharType&,
@@ -274,7 +274,7 @@ public:
friend class const_iterator;
};
class const_iterator
class WXDLLIMPEXP_BASE const_iterator
{
public:
const_iterator(iterator i) : m_ptr(i.m_ptr) { }