~laney/ubuntu/quantal/swig2.0/guile-2.0

« back to all changes in this revision

Viewing changes to Examples/test-suite/li_std_map.i

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Landschoff
  • Date: 2010-12-19 18:25:59 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101219182559-8lh77o66bo890jwo
Tags: 2.0.1-1
* Merge new upstream release 2.0.1.
* Remove dependency on quilt and usage in debian/rules, the new source
  format will take care of that.
* Remove patch fix-cleaning.diff (applied upstream).
* Remove patch keep_docs.diff (applied upstream).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
%module("templatereduce") li_std_map
2
2
%feature("trackobjects");
3
3
 
 
4
%inline %{
 
5
namespace another {
 
6
struct map {
 
7
  int val;
 
8
  map(int x) : val(x) {}
 
9
};
 
10
}
 
11
%}
 
12
 
4
13
%include "std_pair.i"
5
14
%include "std_map.i"
6
15
%include "std_string.i"