From 92bceacc38a15e7fe86b3fef1101b78a7865246e Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Wed, 17 Oct 2007 21:47:25 +0000 Subject: Remove cvs $Header$ git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10005 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/java/callback/index.html | 2 -- Examples/java/class/index.html | 2 -- Examples/java/constants/index.html | 2 -- Examples/java/enum/index.html | 2 -- Examples/java/extend/index.html | 2 -- Examples/java/funcptr/index.html | 2 -- Examples/java/index.html | 2 -- Examples/java/native/index.html | 2 -- Examples/java/pointer/index.html | 2 -- Examples/java/reference/index.html | 2 -- Examples/java/simple/index.html | 2 -- Examples/java/template/index.html | 2 -- Examples/java/typemap/index.html | 2 -- Examples/java/variables/index.html | 2 -- Examples/perl5/class/index.html | 2 -- Examples/perl5/constants/index.html | 2 -- Examples/perl5/funcptr/index.html | 2 -- Examples/perl5/index.html | 2 -- Examples/perl5/pointer/index.html | 2 -- Examples/perl5/reference/index.html | 2 -- Examples/perl5/simple/index.html | 2 -- Examples/perl5/value/index.html | 2 -- Examples/perl5/variables/index.html | 2 -- Examples/python/callback/index.html | 2 -- Examples/python/class/index.html | 2 -- Examples/python/constants/index.html | 2 -- Examples/python/enum/index.html | 2 -- Examples/python/extend/index.html | 2 -- Examples/python/funcptr/index.html | 2 -- Examples/python/index.html | 2 -- Examples/python/pointer/index.html | 2 -- Examples/python/reference/index.html | 2 -- Examples/python/shadow/index.html | 2 -- Examples/python/simple/index.html | 2 -- Examples/python/variables/index.html | 4 +--- Examples/tcl/class/index.html | 2 -- Examples/tcl/constants/index.html | 2 -- Examples/tcl/enum/index.html | 2 -- Examples/tcl/funcptr/index.html | 2 -- Examples/tcl/index.html | 2 -- Examples/tcl/pointer/index.html | 2 -- Examples/tcl/reference/index.html | 2 -- Examples/tcl/simple/index.html | 2 -- Examples/tcl/value/index.html | 2 -- Examples/tcl/variables/index.html | 2 -- 45 files changed, 1 insertion(+), 91 deletions(-) (limited to 'Examples') diff --git a/Examples/java/callback/index.html b/Examples/java/callback/index.html index c36c63d6c..c25452018 100644 --- a/Examples/java/callback/index.html +++ b/Examples/java/callback/index.html @@ -11,8 +11,6 @@

Implementing C++ callbacks in Java

-$Header$
-

This example illustrates how to use directors to implement C++ callbacks in Java.

diff --git a/Examples/java/class/index.html b/Examples/java/class/index.html index 0360ce9ee..07725da51 100644 --- a/Examples/java/class/index.html +++ b/Examples/java/class/index.html @@ -11,8 +11,6 @@

Wrapping a simple C++ class

-$Header$
-

This example illustrates the high level form of C++ class wrapping performed by SWIG. In this case, a C++ class has a proxy Java class, which diff --git a/Examples/java/constants/index.html b/Examples/java/constants/index.html index 50460ebe4..8367d0571 100644 --- a/Examples/java/constants/index.html +++ b/Examples/java/constants/index.html @@ -10,8 +10,6 @@

Wrapping C Constants

-$Header$
-

When SWIG encounters C preprocessor macros and C declarations that look like constants, it creates Java constant with an identical value. Click here diff --git a/Examples/java/enum/index.html b/Examples/java/enum/index.html index 6179f9f97..52c06c5d1 100644 --- a/Examples/java/enum/index.html +++ b/Examples/java/enum/index.html @@ -11,8 +11,6 @@

Wrapping enumerations

-$Header$
-

This example tests SWIG's ability to wrap enumerations. SWIG wraps enums in numerous different ways. The default approach is to wrap diff --git a/Examples/java/extend/index.html b/Examples/java/extend/index.html index b4ddbf244..c7c2c127d 100644 --- a/Examples/java/extend/index.html +++ b/Examples/java/extend/index.html @@ -11,8 +11,6 @@

Extending a simple C++ class in Java

-$Header
-

This example illustrates the extending of a C++ class with cross language polymorphism. diff --git a/Examples/java/funcptr/index.html b/Examples/java/funcptr/index.html index 06d9008bf..0ad2be1cf 100644 --- a/Examples/java/funcptr/index.html +++ b/Examples/java/funcptr/index.html @@ -11,8 +11,6 @@

Pointers to Functions

-$Header$
-

Okay, just what in the heck does SWIG do with a declaration like this? diff --git a/Examples/java/index.html b/Examples/java/index.html index 455278f1f..d98f9a393 100644 --- a/Examples/java/index.html +++ b/Examples/java/index.html @@ -6,8 +6,6 @@

SWIG Java Examples

-$Header$
-

The following examples illustrate the use of SWIG with Java. diff --git a/Examples/java/native/index.html b/Examples/java/native/index.html index a2cea6d04..7ecf129ce 100644 --- a/Examples/java/native/index.html +++ b/Examples/java/native/index.html @@ -11,8 +11,6 @@

SWIG wrapped and manually wrapped functions in Java

-$Header$
-

Click here for the relevant section in the SWIG and Java documentation.

This example compares wrapping a c global function using the manual way and the SWIG way. diff --git a/Examples/java/pointer/index.html b/Examples/java/pointer/index.html index 2be8d38d7..c30d549e6 100644 --- a/Examples/java/pointer/index.html +++ b/Examples/java/pointer/index.html @@ -10,8 +10,6 @@

Simple Pointer Handling

-$Header$
-

This example illustrates a couple of techniques for handling simple pointers in SWIG. The prototypical example is a C function diff --git a/Examples/java/reference/index.html b/Examples/java/reference/index.html index 29d5db63f..64b129cbb 100644 --- a/Examples/java/reference/index.html +++ b/Examples/java/reference/index.html @@ -11,8 +11,6 @@

C++ Reference Handling

-$Header$
-

This example tests SWIG's handling of C++ references. Since C++ references are closely related to pointers (as both refer to a diff --git a/Examples/java/simple/index.html b/Examples/java/simple/index.html index 5b7848f31..a363327fe 100644 --- a/Examples/java/simple/index.html +++ b/Examples/java/simple/index.html @@ -11,8 +11,6 @@

Simple Java Example

-$Header$
-

This example illustrates how you can hook Java to a very simple C program containing a function and a global variable. diff --git a/Examples/java/template/index.html b/Examples/java/template/index.html index 04c910c14..1aebd4c2a 100644 --- a/Examples/java/template/index.html +++ b/Examples/java/template/index.html @@ -11,8 +11,6 @@

C++ template support

-$Header$
-

This example illustrates how C++ templates can be used from Java using SWIG. diff --git a/Examples/java/typemap/index.html b/Examples/java/typemap/index.html index 259f42953..486aa8e79 100644 --- a/Examples/java/typemap/index.html +++ b/Examples/java/typemap/index.html @@ -11,8 +11,6 @@

Typemaps in Java

-$Header$
-

This example shows how typemaps can be used to modify the default behaviour of the Java SWIG module. diff --git a/Examples/java/variables/index.html b/Examples/java/variables/index.html index 5ffffa067..05aaa2d6e 100644 --- a/Examples/java/variables/index.html +++ b/Examples/java/variables/index.html @@ -10,8 +10,6 @@

Wrapping C Global Variables

-$Header$
-

When a C global variable appears in an interface file, SWIG tries to wrap it using a technique known as "variable linking." The idea is diff --git a/Examples/perl5/class/index.html b/Examples/perl5/class/index.html index d90ad28c8..e8d2db5a3 100644 --- a/Examples/perl5/class/index.html +++ b/Examples/perl5/class/index.html @@ -11,8 +11,6 @@

Wrapping a simple C++ class

-$Header$
-

This example illustrates the most primitive form of C++ class wrapping performed by SWIG. In this case, C++ classes are simply transformed into a collection of diff --git a/Examples/perl5/constants/index.html b/Examples/perl5/constants/index.html index d43a97b80..f38338b63 100644 --- a/Examples/perl5/constants/index.html +++ b/Examples/perl5/constants/index.html @@ -10,8 +10,6 @@

Wrapping C Constants

-$Header$
-

When SWIG encounters C preprocessor macros and C declarations that look like constants, it creates Perl5 variables with an identical value. Click here diff --git a/Examples/perl5/funcptr/index.html b/Examples/perl5/funcptr/index.html index 984b2a02b..7333a39f2 100644 --- a/Examples/perl5/funcptr/index.html +++ b/Examples/perl5/funcptr/index.html @@ -11,8 +11,6 @@

Pointers to Functions

-$Header$
-

Okay, just what in the heck does SWIG do with a declaration like this? diff --git a/Examples/perl5/index.html b/Examples/perl5/index.html index 1f25b8539..254bd41f5 100644 --- a/Examples/perl5/index.html +++ b/Examples/perl5/index.html @@ -6,8 +6,6 @@

SWIG Perl Examples

-$Header$
-

The following examples illustrate the use of SWIG with Perl. diff --git a/Examples/perl5/pointer/index.html b/Examples/perl5/pointer/index.html index f37783462..6f9fd397d 100644 --- a/Examples/perl5/pointer/index.html +++ b/Examples/perl5/pointer/index.html @@ -10,8 +10,6 @@

Simple Pointer Handling

-$Header$
-

This example illustrates a couple of techniques for handling simple pointers in SWIG. The prototypical example is a C function diff --git a/Examples/perl5/reference/index.html b/Examples/perl5/reference/index.html index d2c894374..70b4f3d34 100644 --- a/Examples/perl5/reference/index.html +++ b/Examples/perl5/reference/index.html @@ -11,8 +11,6 @@

C++ Reference Handling

-$Header$
-

This example tests SWIG's handling of C++ references. Since C++ references are closely related to pointers (as both refer to a diff --git a/Examples/perl5/simple/index.html b/Examples/perl5/simple/index.html index 4e88b8ea4..7f230531d 100644 --- a/Examples/perl5/simple/index.html +++ b/Examples/perl5/simple/index.html @@ -11,8 +11,6 @@

Simple Perl5 Example

-$Header$
-

This example illustrates how you can hook Perl to a very simple C program containing a function and a global variable. diff --git a/Examples/perl5/value/index.html b/Examples/perl5/value/index.html index 1f7734496..0e9502a00 100644 --- a/Examples/perl5/value/index.html +++ b/Examples/perl5/value/index.html @@ -11,8 +11,6 @@

Passing and Returning Structures by Value

-$Header$
-

Occasionally, a C program will manipulate structures by value such as shown in the following code: diff --git a/Examples/perl5/variables/index.html b/Examples/perl5/variables/index.html index b72242c86..e4d426e2d 100644 --- a/Examples/perl5/variables/index.html +++ b/Examples/perl5/variables/index.html @@ -10,8 +10,6 @@

Wrapping C Global Variables

-$Header$
-

When a C global variable appears in an interface file, SWIG tries to wrap it using a technique known as "variable linking." The idea is diff --git a/Examples/python/callback/index.html b/Examples/python/callback/index.html index 34fe4d127..e2017eca3 100644 --- a/Examples/python/callback/index.html +++ b/Examples/python/callback/index.html @@ -11,8 +11,6 @@

Implementing C++ callbacks in Python

-$Header$
-

This example illustrates how to use directors to implement C++ callbacks in Python. diff --git a/Examples/python/class/index.html b/Examples/python/class/index.html index 2ec53b0bb..09e34471f 100644 --- a/Examples/python/class/index.html +++ b/Examples/python/class/index.html @@ -11,8 +11,6 @@

Wrapping a simple C++ class

-$Header$
-

This example illustrates the most primitive form of C++ class wrapping performed by SWIG. In this case, C++ classes are simply transformed into a collection of diff --git a/Examples/python/constants/index.html b/Examples/python/constants/index.html index 45d30155f..35cc0d7e6 100644 --- a/Examples/python/constants/index.html +++ b/Examples/python/constants/index.html @@ -10,8 +10,6 @@

Wrapping C Constants

-$Header$
-

When SWIG encounters C preprocessor macros and C declarations that look like constants, it creates Python variables with an identical value. Click here diff --git a/Examples/python/enum/index.html b/Examples/python/enum/index.html index e5c7c578a..776030ffa 100644 --- a/Examples/python/enum/index.html +++ b/Examples/python/enum/index.html @@ -11,8 +11,6 @@

Wrapping enumerations

-$Header$
-

This example tests SWIG's ability to wrap enumerations. By default, SWIG converts enumeration specifications into integer constants. Further use diff --git a/Examples/python/extend/index.html b/Examples/python/extend/index.html index fe1bf9a1a..959e8c63b 100644 --- a/Examples/python/extend/index.html +++ b/Examples/python/extend/index.html @@ -11,8 +11,6 @@

Extending a simple C++ class in Python

-$Header$
-

This example illustrates the extending of a C++ class with cross language polymorphism. diff --git a/Examples/python/funcptr/index.html b/Examples/python/funcptr/index.html index 11c5ae43e..e41e0db45 100644 --- a/Examples/python/funcptr/index.html +++ b/Examples/python/funcptr/index.html @@ -11,8 +11,6 @@

Pointers to Functions

-$Header$
-

Okay, just what in the heck does SWIG do with a declaration like this? diff --git a/Examples/python/index.html b/Examples/python/index.html index fba1e202e..8443a85e1 100644 --- a/Examples/python/index.html +++ b/Examples/python/index.html @@ -6,8 +6,6 @@

SWIG Python Examples

-$Header$
-

The following examples illustrate the use of SWIG with Python. diff --git a/Examples/python/pointer/index.html b/Examples/python/pointer/index.html index a18fbfb8f..ceef30566 100644 --- a/Examples/python/pointer/index.html +++ b/Examples/python/pointer/index.html @@ -10,8 +10,6 @@

Simple Pointer Handling

-$Header$
-

This example illustrates a couple of techniques for handling simple pointers in SWIG. The prototypical example is a C function diff --git a/Examples/python/reference/index.html b/Examples/python/reference/index.html index 0f924463b..25d40299e 100644 --- a/Examples/python/reference/index.html +++ b/Examples/python/reference/index.html @@ -11,8 +11,6 @@

C++ Reference Handling

-$Header$
-

This example tests SWIG's handling of C++ references. Since C++ references are closely related to pointers (as both refer to a diff --git a/Examples/python/shadow/index.html b/Examples/python/shadow/index.html index e28329bc2..5e9bd7db0 100644 --- a/Examples/python/shadow/index.html +++ b/Examples/python/shadow/index.html @@ -11,8 +11,6 @@

Wrapping a simple C++ class

-$Header$
-

This example illustrates the wrapping of some C++ classes by shadow classes. diff --git a/Examples/python/simple/index.html b/Examples/python/simple/index.html index 4f5329204..dace471a3 100644 --- a/Examples/python/simple/index.html +++ b/Examples/python/simple/index.html @@ -11,8 +11,6 @@

Simple Python Example

-$Header$
-

This example illustrates how you can hook Python to a very simple C program containing a function and a global variable. diff --git a/Examples/python/variables/index.html b/Examples/python/variables/index.html index 3bdf705f5..2940d8a6b 100644 --- a/Examples/python/variables/index.html +++ b/Examples/python/variables/index.html @@ -10,8 +10,6 @@

Wrapping C Global Variables

-$Header$
-

When a C global variable appears in an interface file, SWIG tries to wrap it using a technique known as "variable linking." The idea is @@ -99,4 +97,4 @@ more than one module be loaded in this manner. -


\ No newline at end of file +
diff --git a/Examples/tcl/class/index.html b/Examples/tcl/class/index.html index c3069ced6..fd8cfe502 100644 --- a/Examples/tcl/class/index.html +++ b/Examples/tcl/class/index.html @@ -11,8 +11,6 @@

Wrapping a simple C++ class

-$Header$
-

This example illustrates the most primitive form of C++ class wrapping performed by SWIG. In this case, C++ classes are simply transformed into a collection of diff --git a/Examples/tcl/constants/index.html b/Examples/tcl/constants/index.html index dc3739e5a..fa332c64c 100644 --- a/Examples/tcl/constants/index.html +++ b/Examples/tcl/constants/index.html @@ -10,8 +10,6 @@

Wrapping C Constants

-$Header$
-

When SWIG encounters C preprocessor macros and C declarations that look like constants, it creates Tcl variables with an identical value. Click here diff --git a/Examples/tcl/enum/index.html b/Examples/tcl/enum/index.html index 4390e38ab..559f6a804 100644 --- a/Examples/tcl/enum/index.html +++ b/Examples/tcl/enum/index.html @@ -11,8 +11,6 @@

Wrapping enumerations

-$Header$
-

This example tests SWIG's ability to wrap enumerations. By default, SWIG converts enumeration specifications into integer constants. Further use diff --git a/Examples/tcl/funcptr/index.html b/Examples/tcl/funcptr/index.html index 5a4210e8d..b822962c7 100644 --- a/Examples/tcl/funcptr/index.html +++ b/Examples/tcl/funcptr/index.html @@ -11,8 +11,6 @@

Pointers to Functions

-$Header$
-

Okay, just what in the heck does SWIG do with a declaration like this? diff --git a/Examples/tcl/index.html b/Examples/tcl/index.html index 1b60dd760..b32726002 100644 --- a/Examples/tcl/index.html +++ b/Examples/tcl/index.html @@ -6,8 +6,6 @@

SWIG Tcl Examples

-$Header$
-

The following examples illustrate the use of SWIG with Tcl. diff --git a/Examples/tcl/pointer/index.html b/Examples/tcl/pointer/index.html index 2f9c7d9a2..874088a72 100644 --- a/Examples/tcl/pointer/index.html +++ b/Examples/tcl/pointer/index.html @@ -10,8 +10,6 @@

Simple Pointer Handling

-$Header$
-

This example illustrates a couple of techniques for handling simple pointers in SWIG. The prototypical example is a C function diff --git a/Examples/tcl/reference/index.html b/Examples/tcl/reference/index.html index 764a382b9..ef799fa90 100644 --- a/Examples/tcl/reference/index.html +++ b/Examples/tcl/reference/index.html @@ -11,8 +11,6 @@

C++ Reference Handling

-$Header$
-

This example tests SWIG's handling of C++ references. Since C++ references are closely related to pointers (as both refer to a diff --git a/Examples/tcl/simple/index.html b/Examples/tcl/simple/index.html index 908f486b7..333d90593 100644 --- a/Examples/tcl/simple/index.html +++ b/Examples/tcl/simple/index.html @@ -10,8 +10,6 @@

Simple Tcl Example

-$Header$
-

This example illustrates how you can hook Tcl to a very simple C program containing a function and a global variable. diff --git a/Examples/tcl/value/index.html b/Examples/tcl/value/index.html index 80c7968be..17a991ecf 100644 --- a/Examples/tcl/value/index.html +++ b/Examples/tcl/value/index.html @@ -11,8 +11,6 @@

Passing and Returning Structures by Value

-$Header$
-

Occasionally, a C program will manipulate structures by value such as shown in the following code: diff --git a/Examples/tcl/variables/index.html b/Examples/tcl/variables/index.html index d41ace2a9..245a445d5 100644 --- a/Examples/tcl/variables/index.html +++ b/Examples/tcl/variables/index.html @@ -10,8 +10,6 @@

Wrapping C Global Variables

-$Header$
-

When a C global variable appears in an interface file, SWIG tries to wrap it using a technique known as "variable linking." The idea is pretty simple---we try to create a Tcl -- cgit v1.2.3