summaryrefslogtreecommitdiff
path: root/Examples/test-suite/director_exception_nothrow.i
blob: 8a072617fb64249892e79e6a965dfd92160a7b3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
%module(directors="1") director_exception_nothrow

%include "std_string.i"

%feature("director") Bar;

%{
#if defined(_MSC_VER)
  #pragma warning(disable: 4290) // C++ exception specification ignored except to indicate a function is not __declspec(nothrow)
#endif
%}

%inline %{
#include <string>

class Base
{
public:
  virtual ~Base() throw() {}
};


class Bar : public Base
{
public:
  virtual std::string pang() throw() { return "Bar::pang()"; }
};
%}