Add WXDLLEXPORT
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13933 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
#include <wx/string.h>
|
#include <wx/string.h>
|
||||||
|
|
||||||
// private
|
// private
|
||||||
struct _wxHashTable_NodeBase
|
struct WXDLLEXPORT _wxHashTable_NodeBase
|
||||||
{
|
{
|
||||||
_wxHashTable_NodeBase() : m_nxt(0) {}
|
_wxHashTable_NodeBase() : m_nxt(0) {}
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@ struct _wxHashTable_NodeBase
|
|||||||
};
|
};
|
||||||
|
|
||||||
// private
|
// private
|
||||||
class _wxHashTableBase2
|
class WXDLLEXPORT _wxHashTableBase2
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef void (*NodeDtor)(_wxHashTable_NodeBase*);
|
typedef void (*NodeDtor)(_wxHashTable_NodeBase*);
|
||||||
@@ -378,7 +378,7 @@ inline bool grow_lf70( size_t buckets, size_t items )
|
|||||||
}
|
}
|
||||||
|
|
||||||
// integer types
|
// integer types
|
||||||
class wxIntegerHash
|
class WXDLLEXPORT wxIntegerHash
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxIntegerHash() {};
|
wxIntegerHash() {};
|
||||||
@@ -388,7 +388,7 @@ public:
|
|||||||
unsigned long operator()( unsigned int x ) const { return x; }
|
unsigned long operator()( unsigned int x ) const { return x; }
|
||||||
};
|
};
|
||||||
|
|
||||||
class wxIntegerEqual
|
class WXDLLEXPORT wxIntegerEqual
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxIntegerEqual() {};
|
wxIntegerEqual() {};
|
||||||
@@ -401,7 +401,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
// pointers
|
// pointers
|
||||||
class wxPointerHash
|
class WXDLLEXPORT wxPointerHash
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxPointerHash() {};
|
wxPointerHash() {};
|
||||||
@@ -409,7 +409,7 @@ public:
|
|||||||
{ return (unsigned long)k; }
|
{ return (unsigned long)k; }
|
||||||
};
|
};
|
||||||
|
|
||||||
class wxPointerEqual
|
class WXDLLEXPORT wxPointerEqual
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxPointerEqual() {};
|
wxPointerEqual() {};
|
||||||
@@ -418,7 +418,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
// wxString, char*, wxChar*
|
// wxString, char*, wxChar*
|
||||||
class wxStringHash
|
class WXDLLEXPORT wxStringHash
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxStringHash() {};
|
wxStringHash() {};
|
||||||
@@ -434,7 +434,7 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
|
||||||
class wxStringEqual
|
class WXDLLEXPORT wxStringEqual
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
wxStringEqual() {};
|
wxStringEqual() {};
|
||||||
|
Reference in New Issue
Block a user