~ubuntu-branches/ubuntu/maverick/swig1.3/maverick

« back to all changes in this revision

Viewing changes to Examples/test-suite/cplusplus_throw.i

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Landschoff
  • Date: 2002-03-29 01:56:07 UTC
  • Revision ID: james.westby@ubuntu.com-20020329015607-c0wt03xu8oy9ioj7
Tags: upstream-1.3.11
ImportĀ upstreamĀ versionĀ 1.3.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This interface file checks whether the SWIG parses the throw
 
2
   directive in combination with the const directive.  Bug reported by
 
3
   Scott B. Drummonds, 08 June 2001.  
 
4
*/
 
5
 
 
6
%module test
 
7
 
 
8
%pragma no_default
 
9
 
 
10
class Bar {
 
11
  void baz() const;
 
12
  void foo() throw (exception);
 
13
  void bazfoo() const throw ();
 
14
};