Source cleaning: whitespaces, tabs, -1/wxID_ANY/wxNOT_FOUND/wxDefaultCoord, TRUE/true, FALSE/false.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29257 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -16,28 +16,28 @@
|
||||
#define WX_DECLARE_STACK(obj, cls)\
|
||||
class cls : public wxVectorBase\
|
||||
{\
|
||||
WX_DECLARE_VECTORBASE(obj, cls);\
|
||||
WX_DECLARE_VECTORBASE(obj, cls);\
|
||||
public:\
|
||||
void push(const obj& o)\
|
||||
{\
|
||||
bool rc = Alloc(size() + 1);\
|
||||
wxASSERT(rc);\
|
||||
Append(new obj(o));\
|
||||
};\
|
||||
void push(const obj& o)\
|
||||
{\
|
||||
bool rc = Alloc(size() + 1);\
|
||||
wxASSERT(rc);\
|
||||
Append(new obj(o));\
|
||||
};\
|
||||
\
|
||||
void pop()\
|
||||
{\
|
||||
RemoveAt(size() - 1);\
|
||||
};\
|
||||
void pop()\
|
||||
{\
|
||||
RemoveAt(size() - 1);\
|
||||
};\
|
||||
\
|
||||
obj& top()\
|
||||
{\
|
||||
return *(obj *) GetItem(size() - 1);\
|
||||
};\
|
||||
const obj& top() const\
|
||||
{\
|
||||
return *(obj *) GetItem(size() - 1);\
|
||||
};\
|
||||
obj& top()\
|
||||
{\
|
||||
return *(obj *) GetItem(size() - 1);\
|
||||
};\
|
||||
const obj& top() const\
|
||||
{\
|
||||
return *(obj *) GetItem(size() - 1);\
|
||||
};\
|
||||
}
|
||||
|
||||
#endif // _WX_STACK_H_
|
||||
|
Reference in New Issue
Block a user