Added an implementation of std_queue with tests.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9779 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Gonzalo Garramuno 2007-05-06 05:25:58 +00:00
commit a7aa62ce68
6 changed files with 206 additions and 1 deletions

View file

@ -14,7 +14,7 @@
%define %std_stack_methods(stack...)
bool empty() const;
size_type size() const;
const value_type& top();
const value_type& top() const;
void pop();
void push( const value_type& );
%enddef