]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/stack.h
1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: STL stack clone
4 // Author: Lindsay Mathieson
7 // Copyright: (c) 2001 Lindsay Mathieson <lindsay@mathieson.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
14 #include "wx/vector.h"
16 #define WX_DECLARE_STACK(obj, cls) \
17 class cls : public wxVector<obj> \
20 void push(const obj& o)\
32 return at(size() - 1);\
34 const obj& top() const\
36 return at(size() - 1); \
40 #endif // _WX_STACK_H_