Expand std::shared_ptr testing to C# D Java Python

This commit is contained in:
William S Fulton 2017-09-22 20:03:47 +01:00
commit f5e1856650
8 changed files with 112 additions and 9 deletions

View file

@ -15,11 +15,11 @@ class C;
%inline %{
class C {
int m;
public:
C() : m(-1) {}
C(int i) : m(i) {}
int get_m() { return m; }
int m;
};
%}