#include "wx/object.h"
#include "wx/string.h"
-// due to circular header dependencies this function has to be declared here
-// (normally it's found in utils.h which includes itself list.h...)
-extern WXDLLEXPORT_BASE wxChar* copystring(const wxChar *s);
-
-class WXDLLEXPORT_BASE wxObjectListNode;
+class WXDLLIMPEXP_BASE wxObjectListNode;
typedef wxObjectListNode wxNode;
// undef it to get rid of old, deprecated functions
// for any keyed operation instead of 2 almost equivalent. OTOH, it's needed to
// resolve ambiguity which we would otherwise have with wxStringList::Find() and
// wxList::Find(const char *).
-class WXDLLEXPORT_BASE wxListKey
+class WXDLLIMPEXP_BASE wxListKey
{
public:
// implicit ctors
// wxNodeBase class is a (base for) node in a double linked list
// -----------------------------------------------------------------------------
-WXDLLEXPORT_DATA_BASE(extern wxListKey) wxDefaultListKey;
+WXDLLIMPEXP_DATA_BASE(extern wxListKey) wxDefaultListKey;
-class WXDLLEXPORT_BASE wxListBase;
+class WXDLLIMPEXP_BASE wxListBase;
-class WXDLLEXPORT_BASE wxNodeBase
+class WXDLLIMPEXP_BASE wxNodeBase
{
friend class wxListBase;
public:
class wxList;
-class WXDLLEXPORT_BASE wxListBase : public wxObject
+class WXDLLIMPEXP_BASE wxListBase : public wxObject
{
-friend class WXDLLEXPORT_BASE wxNodeBase; // should be able to call DetachNode()
+friend class WXDLLIMPEXP_BASE wxNodeBase; // should be able to call DetachNode()
friend class wxHashTableBase; // should be able to call untyped Find()
private:
// common part of all ctors
// wxList compatibility class: in fact, it's a list of wxObjects
// -----------------------------------------------------------------------------
-WX_DECLARE_LIST_2(wxObject, wxObjectList, wxObjectListNode, class WXDLLEXPORT_BASE);
+WX_DECLARE_LIST_2(wxObject, wxObjectList, wxObjectListNode, class WXDLLIMPEXP_BASE);
-class WXDLLEXPORT_BASE wxList : public wxObjectList
+class WXDLLIMPEXP_BASE wxList : public wxObjectList
{
public:
#ifdef wxWARN_COMPAT_LIST_USE
// wxStringList class for compatibility with the old code
// -----------------------------------------------------------------------------
-WX_DECLARE_LIST_2(wxChar, wxStringListBase, wxStringListNode, class WXDLLEXPORT_BASE);
+WX_DECLARE_LIST_2(wxChar, wxStringListBase, wxStringListNode, class WXDLLIMPEXP_BASE);
-class WXDLLEXPORT_BASE wxStringList : public wxStringListBase
+class WXDLLIMPEXP_BASE wxStringList : public wxStringListBase
{
public:
// ctors and such
// operations
// makes a copy of the string
- wxNode *Add(const wxChar *s)
- { return (wxNode *)wxStringListBase::Append(copystring(s)); }
+ wxNode *Add(const wxChar *s);
// Append to beginning of list
- wxNode *Prepend(const wxChar *s)
- { return (wxNode *)wxStringListBase::Insert(copystring(s)); }
+ wxNode *Prepend(const wxChar *s);
bool Delete(const wxChar *s);