~ubuntu-branches/ubuntu/oneiric/swig1.3/oneiric

« back to all changes in this revision

Viewing changes to Lib/std/std_map.i

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2007-12-06 10:27:08 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20071206102708-t37t62i45n595w0e
Tags: 1.3.33-2ubuntu1
* Merge with Debian; remaining changes:
  - Drop support for pike.
  - Use python2.5 instead of python2.4.
  - Clean Runtime/ as well.
  - Force a few environment variables.
* debian/Rules (clean): Remove Lib/ocaml/swigp4.ml.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
  void erase(iterator first, iterator last);
18
18
 
19
19
  iterator find(const key_type& x);
20
 
  const_iterator find(const key_type& x) const;
21
20
  iterator lower_bound(const key_type& x);
22
 
  const_iterator lower_bound(const key_type& x) const;
23
21
  iterator upper_bound(const key_type& x);
24
 
  const_iterator upper_bound(const key_type& x) const;
25
22
#endif
26
23
%enddef
27
24
 
114
111
 
115
112
    %typemap_traits_ptr(SWIG_TYPECHECK_MAP, std::map<_Key, _Tp, _Compare, _Alloc >);
116
113
 
 
114
    map( const _Compare& );
 
115
 
117
116
#ifdef %swig_map_methods
118
117
    // Add swig/language extra methods
119
118
    %swig_map_methods(std::map<_Key, _Tp, _Compare, _Alloc >);