Further cleaning up of class examples

This commit is contained in:
Olly Betts 2014-02-24 10:10:24 +13:00
commit 0de4cf13a8
29 changed files with 150 additions and 216 deletions

View file

@ -7,4 +7,3 @@
/* Let's just grab the original header file here */
%include "example.h"

View file

@ -229,11 +229,11 @@ set Shapes_nshapes 13 # Set a static data member
<li>The low-level function interface is much faster than the high-level interface.
In fact, all the higher level interface does is call functions in the low-level interface.
<li>SWIG *does* know how to properly perform upcasting of objects in an inheritance
<li>SWIG <b>does</b> know how to properly perform upcasting of objects in an inheritance
hierarchy (including multiple inheritance). Therefore it is perfectly safe to pass
an object of a derived class to any function involving a base class.
<li>C++ Namespaces - %nspace isn't yet supported for Python.
<li>C++ Namespaces - %nspace isn't yet supported for Tcl.
</ul>