summaryrefslogtreecommitdiff
path: root/Examples/test-suite/abstract_inherit_ok.i
blob: 04715bad3b421873be59f613f9652d28e0fabf38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
%module abstract_inherit_ok

%feature("notabstract") Spam;
%warnfilter(403) Spam;

%inline %{

class Foo {
public:
    virtual int blah() = 0;
};

class Spam: public Foo {
public:
   Spam() { }
#ifndef SWIG
   int blah() { return 0; }
#endif
};

%}