Doxygen example

Replace the unnecessarily large number of doxygen examples with one
doxygen example.
This commit is contained in:
William S Fulton 2018-05-31 20:13:52 +01:00
commit 12e7926ee2
84 changed files with 259 additions and 3574 deletions

View file

@ -0,0 +1,17 @@
%module example
%{
#include "example.h"
%}
%immutable NumSquares;
%immutable NumCircles;
%include "example.h"
/*! - this instantiation uses type int */
%template(RectangleInt) Rectangle<int>;
/*! - this instantiation uses type int */
%template(MakeRectangleInt) MakeRectangle<int>;