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

« back to all changes in this revision

Viewing changes to Examples/guile/matrix/package.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
// FILE : package.i
 
2
// See the SWIG users manual
 
3
 
 
4
/*** Matrix and vector package ***/
 
5
 
 
6
%module Matrix
 
7
%{
 
8
#include <math.h>
 
9
%}
 
10
 
 
11
%include guilemain.i
 
12
%include matrix.i
 
13
%include vector.i
 
14
 
 
15
// Include the math library so we can get some random numbers and
 
16
// other stuff
 
17
 
 
18
%include math.i
 
19
 
 
20
extern double drand48();