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

« back to all changes in this revision

Viewing changes to Examples/tcl/enum/example.h

  • 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
/* File : example.h */
 
2
 
 
3
enum color { RED, BLUE, GREEN };
 
4
 
 
5
class Foo {
 
6
 public:
 
7
  Foo() { }
 
8
  enum speed { IMPULSE, WARP, LUDICROUS };
 
9
  void enum_test(speed s);
 
10
};
 
11
 
 
12
void enum_test(color c, Foo::speed s);
 
13