Add some missing STL container typedefs for Perl

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@13620 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2012-08-15 23:04:26 +00:00
commit c20cacad87
4 changed files with 27 additions and 2 deletions

View file

@ -180,6 +180,9 @@ namespace std {
}
}
public:
typedef size_t size_type;
typedef T value_type;
typedef const value_type& const_reference;
vector(unsigned int size = 0);
vector(unsigned int size, const T& value);
vector(const vector<T> &);
@ -349,6 +352,9 @@ namespace std {
}
}
public:
typedef size_t size_type;
typedef T value_type;
typedef const value_type& const_reference;
vector(unsigned int size = 0);
vector(unsigned int size, T *value);
vector(const vector<T *> &);
@ -517,6 +523,9 @@ namespace std {
}
}
public:
typedef size_t size_type;
typedef T value_type;
typedef const value_type& const_reference;
vector(unsigned int size = 0);
vector(unsigned int size, T value);
vector(const vector<T> &);