Update wxStack class macro for the new wxVector

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48523 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2007-09-03 03:05:50 +00:00
parent 09da4ae594
commit c21ee7925b

View File

@@ -14,31 +14,26 @@
#include "wx/vector.h"
#define WX_DECLARE_STACK(obj, cls) \
class cls : public wxVectorBase\
class cls : public wxVector<obj> \
{\
WX_DECLARE_VECTORBASE(obj, cls);\
public:\
void push(const obj& o)\
{\
if ( !Alloc(size() + 1) )\
{\
wxFAIL_MSG(_T("failed to extend stack"));\
}\
Append(new obj(o));\
push_back(o); \
};\
\
void pop()\
{\
RemoveAt(size() - 1);\
pop_back(); \
};\
\
obj& top()\
{\
return *(obj *) GetItem(size() - 1);\
return at(size() - 1);\
};\
const obj& top() const\
{\
return *(obj *) GetItem(size() - 1);\
return at(size() - 1); \
};\
}