diff --git a/Doc/Manual/Advanced.html b/Doc/Manual/Advanced.html index 9c26e68fa..09301c8e7 100644 --- a/Doc/Manual/Advanced.html +++ b/Doc/Manual/Advanced.html @@ -454,8 +454,5 @@ Most well-structured C codes will find an exact match on the first attempt, prov As a rule of thumb, C++ programs require somewhat more processing than C programs, but this seems to be avoidable. Also, keep in mind that performance penalties in the type-checker don't necessarily translate into big penalties in the overall application. Performance is most greatly affected by the efficiency of the target scripting language and the types of operations your C code is performing.

-
- -
SWIG 1.3 - Last Modified : July 9, 2004
diff --git a/Doc/Manual/Arguments.html b/Doc/Manual/Arguments.html index c70cda65a..02ab857c6 100644 --- a/Doc/Manual/Arguments.html +++ b/Doc/Manual/Arguments.html @@ -447,7 +447,5 @@ constraint, the %clear directive can be used :

%clear Vector *; -
-
SWIG 1.3 - Last Modified : October 13, 2002
diff --git a/Doc/Manual/CSharp.html b/Doc/Manual/CSharp.html index 32132dbab..45a39d026 100644 --- a/Doc/Manual/CSharp.html +++ b/Doc/Manual/CSharp.html @@ -139,7 +139,6 @@ then ilrun runme (Portable.NET C# compiler) or mono runme (Mon Windows users can also get the examples working using a Cygwin or MinGW environment for automatic configuration of the example makefiles. Any one of the three C# compilers (Portable.NET, Mono or Microsoft) can be detected from within a Cygwin or Mingw environment if installed in your path. - diff --git a/Doc/Manual/Chicken.html b/Doc/Manual/Chicken.html index e927b8168..797950ec2 100644 --- a/Doc/Manual/Chicken.html +++ b/Doc/Manual/Chicken.html @@ -541,5 +541,6 @@ + diff --git a/Doc/Manual/Contents.html b/Doc/Manual/Contents.html index c321a68f0..eca81a89c 100644 --- a/Doc/Manual/Contents.html +++ b/Doc/Manual/Contents.html @@ -91,7 +91,7 @@
  • Variable linking
  • Constants
  • Structures and classes -
  • Shadow classes +
  • Proxy classes
  • Building scripting language extensions @@ -807,7 +808,7 @@
  • Pointers
  • Structures and C++ classes
  • Constants -
  • Shadow classes +
  • Proxy classes
  • Constructors and Destructers
  • Static Member Variables
  • PHP4 Pragmas @@ -1058,7 +1059,7 @@
  • Turning a SWIG module into a Tcl Package.
  • Building new kinds of Tcl interfaces (in Tcl) diff --git a/Doc/Manual/Contract.html b/Doc/Manual/Contract.html index 0001bf9fd..ae148884a 100644 --- a/Doc/Manual/Contract.html +++ b/Doc/Manual/Contract.html @@ -238,8 +238,5 @@ release. Contract support was implemented by Songyan (Tiger) Feng and first appeared in SWIG-1.3.20. -
    - -
    SWIG 1.3 - Last Modified : November 12, 2003
    diff --git a/Doc/Manual/Customization.html b/Doc/Manual/Customization.html index 1a1f90ccd..3ae99640d 100644 --- a/Doc/Manual/Customization.html +++ b/Doc/Manual/Customization.html @@ -671,8 +671,5 @@ public: Further details of %feature usage is described in the documentation for specific language modules. -
    - -
    SWIG 1.3 - Last Modified : June 28, 2004
    diff --git a/Doc/Manual/Extending.html b/Doc/Manual/Extending.html index d3b5829db..55e80714d 100644 --- a/Doc/Manual/Extending.html +++ b/Doc/Manual/Extending.html @@ -2460,8 +2460,8 @@ void Language::main(int argc, char *argv[]) { } else { Swig_arg_error(); } - } else if ((strcmp(argv[i],"-shadow") == 0) || ((strcmp(argv[i],"-proxy") == 0))) { - shadow = 1; + } else if ( (strcmp(argv[i],"-proxy") == 0)) { + proxy_flag = 1; Swig_mark_arg(i); } else if (strcmp(argv[i],"-keyword") == 0) { use_kw = 1; @@ -3198,8 +3198,5 @@ extern "X" { ... } declaration. -
    - -
    SWIG 1.3 - Last Modified : January 22, 2002
    diff --git a/Doc/Manual/Guile.html b/Doc/Manual/Guile.html index 5d224295b..76125aac6 100644 --- a/Doc/Manual/Guile.html +++ b/Doc/Manual/Guile.html @@ -32,7 +32,7 @@
  • Exception Handling
  • Procedure documentation
  • Procedures with setters -
  • GOOPS Shadow Classes +
  • GOOPS Proxy Classes
  • Building scripting language extensions @@ -3062,11 +3062,12 @@ danger of blowing something up (although it is easily accomplished with an out of bounds array access).

    -

    28.9.1 Shadow classes

    +

    28.9.1 Proxy classes

    -A similar approach can be applied to shadow classes. The following +A similar approach can be applied to proxy classes (also known as +shadow classes). The following example is provided by Erik Bierwagen and Paul Saxe. To use it, run SWIG with the -noobject option (which disables the builtin object oriented interface). When running Tcl, simply source this @@ -3182,8 +3183,5 @@ short, but clever Tcl script can be combined with SWIG to do many interesting things.

    -
    - -
    SWIG 1.3 - Last Modified : May 28, 2002
    diff --git a/Doc/Manual/Typemaps.html b/Doc/Manual/Typemaps.html index 3fa4c1bfc..428d51993 100644 --- a/Doc/Manual/Typemaps.html +++ b/Doc/Manual/Typemaps.html @@ -3184,8 +3184,5 @@ for how to define typemaps of your own. Some of the language modules support additional typemaps and further information is available in the individual chapters for each target language. -
    - -
    SWIG 1.3 - Last Modified : July 2 , 2004
    diff --git a/Doc/Manual/Varargs.html b/Doc/Manual/Varargs.html index 08fc066f9..4082051ec 100644 --- a/Doc/Manual/Varargs.html +++ b/Doc/Manual/Varargs.html @@ -845,8 +845,5 @@ Also, be aware of the platform dependencies and reliability issues that this will introduce. Good luck.

    -
    - -
    SWIG 1.3 - Last Modified : March 24, 2002
    diff --git a/Doc/Manual/Warnings.html b/Doc/Manual/Warnings.html index 441f61b86..a2b1cc319 100644 --- a/Doc/Manual/Warnings.html +++ b/Doc/Manual/Warnings.html @@ -453,7 +453,5 @@ These numbers can be used by your own application. The ability to control warning messages was first added to SWIG-1.3.12. -
    -
    SWIG 1.3 - Last Modified : June 28, 2003