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

« back to all changes in this revision

Viewing changes to Examples/test-suite/python/li_std_string.i

  • Committer: Bazaar Package Importer
  • Author(s): Benjamin Drung
  • Date: 2009-11-15 14:00:28 UTC
  • mfrom: (1.2.9 upstream) (2.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091115140028-me7amr2rie8zz1xn
Tags: 1.3.40-2ubuntu1
* Merge from Debian testing (LP: #356529), remaining changes:
  - Drop libchicken-dev from the build-depends (it's in universe)
  - Remove Pike from package description and from configure flags
  - drop "--without-mzscheme", we don't have it in our build-depends
  - use php-config5
  - Clean Runtime/ as well.
  - debian/rules (clean): Remove Lib/ocaml/swigp4.ml.
* debian/rules: Remove hardcoded python version.
* Remove upper limit for python from Build-Depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
%module li_std_string
2
 
 
3
 
%naturalvar A;
4
 
 
5
 
 
6
 
%include <std_basic_string.i>
7
 
%include <std_string.i>
8
 
 
9
 
 
10
 
%inline %{
11
 
 
12
 
struct A : std::string 
13
 
{
14
 
  A(const std::string& s) : std::string(s)
15
 
  {
16
 
  }
17
 
};
18
 
 
19
 
struct B 
20
 
{
21
 
  B(const std::string& s) : cname(0), name(s), a(s)
22
 
  {
23
 
  }
24
 
  
25
 
  char *cname;
26
 
  std::string name;
27
 
  A a;
28
 
 
29
 
};
30
 
 
31
 
 
32
 
const char* test_ccvalue(const char* x) {
33
 
   return x;
34
 
}
35
 
 
36
 
char* test_cvalue(char* x) {
37
 
   return x;
38
 
}
39
 
 
40
 
std::basic_string<char> test_value_basic1(std::basic_string<char> x) {
41
 
   return x;
42
 
}
43
 
 
44
 
std::basic_string<char,std::char_traits<char> > test_value_basic2(std::basic_string<char,std::char_traits<char> > x) {
45
 
   return x;
46
 
}
47
 
 
48
 
std::basic_string<char,std::char_traits<char>,std::allocator<char> > test_value_basic3(std::basic_string<char,std::char_traits<char>,std::allocator<char> > x) {
49
 
   return x;
50
 
}
51
 
 
52
 
%}
53
 
 
54
 
%include ../li_std_string.i
55