Sophie

Sophie

distrib > Mandriva > 9.1 > i586 > by-pkgid > 3c88344d1f3d15057277d028d0022277 > files > 820

swig-1.3.11-4mdk.i586.rpm

/* This interface file checks whether the SWIG parses the throw
   directive in combination with the const directive.  Bug reported by
   Scott B. Drummonds, 08 June 2001.  
*/

%module test

%pragma no_default

class Bar {
  void baz() const;
  void foo() throw (exception);
  void bazfoo() const throw ();
};