diff --git a/SWIG/Doc/Manual/Extending.html b/SWIG/Doc/Manual/Extending.html index e7a7bc21d..8db934c68 100644 --- a/SWIG/Doc/Manual/Extending.html +++ b/SWIG/Doc/Manual/Extending.html @@ -6,7 +6,7 @@ -

30 Extending SWIG

+

31 Extending SWIG

-

30.4.4 Attribute namespaces

+

31.4.4 Attribute namespaces

@@ -655,7 +655,7 @@ that matches the name of the target language. For example, python:foo perl:foo.

-

30.4.5 Symbol Tables

+

31.4.5 Symbol Tables

@@ -743,7 +743,7 @@ example.i:5. Previous declaration is foo_i(int ) -

30.4.6 The %feature directive

+

31.4.6 The %feature directive

@@ -799,7 +799,7 @@ For example, the exception code above is simply stored without any modifications.

-

30.4.7 Code Generation

+

31.4.7 Code Generation

@@ -921,7 +921,7 @@ public : The role of these functions is described shortly.

-

30.4.8 SWIG and XML

+

31.4.8 SWIG and XML

@@ -934,7 +934,7 @@ internal data structures, it may be useful keep XML in the back of your mind as a model.

-

30.5 Primitive Data Structures

+

31.5 Primitive Data Structures

@@ -980,7 +980,7 @@ typedef Hash Typetab; -

30.5.1 Strings

+

31.5.1 Strings

@@ -1121,7 +1121,7 @@ Returns the number of replacements made (if any). -

30.5.2 Hashes

+

31.5.2 Hashes

@@ -1198,7 +1198,7 @@ Returns the list of hash table keys. -

30.5.3 Lists

+

31.5.3 Lists

@@ -1287,7 +1287,7 @@ If t is not a standard object, it is assumed to be a char * and is used to create a String object. -

30.5.4 Common operations

+

31.5.4 Common operations

The following operations are applicable to all datatypes. @@ -1342,7 +1342,7 @@ objects and report errors. Gets the line number associated with x. -

30.5.5 Iterating over Lists and Hashes

+

31.5.5 Iterating over Lists and Hashes

To iterate over the elements of a list or a hash table, the following functions are used: @@ -1387,7 +1387,7 @@ for (j = First(j); j.item; j= Next(j)) { -

30.5.6 I/O

+

31.5.6 I/O

Special I/O functions are used for all internal I/O. These operations @@ -1523,7 +1523,7 @@ Similarly, the preprocessor and parser all operate on string-files. -

30.6 Navigating and manipulating parse trees

+

31.6 Navigating and manipulating parse trees

Parse trees are built as collections of hash tables. Each node is a hash table in which @@ -1657,7 +1657,7 @@ Deletes a node from the parse tree. Deletion reconnects siblings and properly u the parent so that sibling nodes are unaffected. -

30.7 Working with attributes

+

31.7 Working with attributes

@@ -1774,7 +1774,7 @@ the attribute is optional. Swig_restore() must always be called after function. -

30.8 Type system

+

31.8 Type system

@@ -1783,7 +1783,7 @@ pointers, references, and pointers to members. A detailed discussion of type theory is impossible here. However, let's cover the highlights.

-

30.8.1 String encoding of types

+

31.8.1 String encoding of types

@@ -1884,7 +1884,7 @@ make the final type, the two parts are just joined together using string concatenation.

-

30.8.2 Type construction

+

31.8.2 Type construction

@@ -2053,7 +2053,7 @@ Returns the prefix of a type. For example, if ty is ty is unmodified. -

30.8.3 Type tests

+

31.8.3 Type tests

@@ -2140,7 +2140,7 @@ Checks if ty is a varargs type. Checks if ty is a templatized type. -

30.8.4 Typedef and inheritance

+

31.8.4 Typedef and inheritance

@@ -2242,7 +2242,7 @@ Fully reduces ty according to typedef rules. Resulting datatype will consist only of primitive typenames. -

30.8.5 Lvalues

+

31.8.5 Lvalues

@@ -2279,7 +2279,7 @@ Literal y; // type = 'Literal', ltype='p.char' -

30.8.6 Output functions

+

31.8.6 Output functions

@@ -2341,7 +2341,7 @@ SWIG, but is most commonly associated with type-descriptor objects that appear in wrappers (e.g., SWIGTYPE_p_double). -

30.9 Parameters

+

31.9 Parameters

@@ -2440,7 +2440,7 @@ included. Used to emit prototypes. Returns the number of required (non-optional) arguments in p. -

30.10 Writing a Language Module

+

31.10 Writing a Language Module

@@ -2451,7 +2451,7 @@ describes the creation of a minimal Python module. You should be able to extra this to other languages.

-

30.10.1 Execution model

+

31.10.1 Execution model

@@ -2461,7 +2461,7 @@ the parsing of command line options, all aspects of code generation are controll different methods of the Language that must be defined by your module.

-

30.10.2 Starting out

+

31.10.2 Starting out

@@ -2574,7 +2574,7 @@ that activates your module. For example, swig -python foo.i. The messages from your new module should appear.

-

30.10.3 Command line options

+

31.10.3 Command line options

@@ -2633,7 +2633,7 @@ to mark the option as valid. If you forget to do this, SWIG will terminate wit unrecognized command line option error.

-

30.10.4 Configuration and preprocessing

+

31.10.4 Configuration and preprocessing

@@ -2682,7 +2682,7 @@ an implementation file python.cxx and a configuration file python.swg.

-

30.10.5 Entry point to code generation

+

31.10.5 Entry point to code generation

@@ -2740,13 +2740,13 @@ int Python::top(Node *n) { -

30.10.6 Module I/O and wrapper skeleton

+

31.10.6 Module I/O and wrapper skeleton

-

30.10.7 Low-level code generators

+

31.10.7 Low-level code generators

-

30.10.8 Configuration files

+

31.10.8 Configuration files

@@ -2901,7 +2901,7 @@ to handle some of these configuration tasks, but that point is now long past. If you are interested in working on that, feel free to raise the issue in the context of a next-generation clean-slate SWIG. -

30.10.9 Runtime support

+

31.10.9 Runtime support

@@ -2910,7 +2910,7 @@ Discuss the kinds of functions typically needed for SWIG runtime support (e.g. the SWIG files that implement those functions.

-

30.10.10 Standard library files

+

31.10.10 Standard library files

@@ -2924,7 +2924,7 @@ Discuss the standard library files that most language modules provide, e.g.

  • stl.i
  • -

    30.10.11 Examples and test cases

    +

    31.10.11 Examples and test cases

    @@ -2951,7 +2951,7 @@ during this process, see the section on configuration files.

    -

    30.10.12 Documentation

    +

    31.10.12 Documentation

    @@ -2983,13 +2983,13 @@ Some topics that you'll want to be sure to address include: if available. -

    30.11 Typemaps

    +

    31.11 Typemaps

    -

    30.11.1 Proxy classes

    +

    31.11.1 Proxy classes

    -

    30.12 Guide to parse tree nodes

    +

    31.12 Guide to parse tree nodes