PageRenderTime 28ms CodeModel.GetById 22ms app.highlight 4ms RepoModel.GetById 1ms app.codeStats 0ms

/tags/ttn-post-libtool-1-4-3-upgrade/SWIG/Examples/test-suite/casts.i

#
Swig | 21 lines | 15 code | 6 blank | 0 comment | 0 complexity | 5a66c0fe279fe92b5c213c74746d19fd MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
 1%module casts
 2
 3%inline %{
 4
 5class A { 
 6 public: 
 7  A() {} 
 8  
 9  void hello() 
10    { 
11    } 
12}; 
13
14class B : public A 
15{ 
16 public: 
17  B() {} 
18  
19};
20
21%}