Added missing size(), clear(), empty() functions.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9822 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Gonzalo Garramuno 2007-05-18 23:31:14 +00:00
commit 49c61cd129

View file

@ -7,11 +7,18 @@
// Set
%define %std_set_methods_common(set...)
set();
set( const set& );
bool empty() const;
size_type size() const;
void clear();
void swap(set& v);
class const_iterator;
class const_reverse_iterator;
set();
set( const set& );
const_iterator begin() const;
const_iterator end() const;