summaryrefslogtreecommitdiff
path: root/Examples/python/docstrings/example.i
blob: 15e08e641f847edf036bc176fcca8f673981d6dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* File : example.i */
%module example

%{
#include "example.h"
%}

/* %feature("docstring") has to come before the declaration of the method to
 * SWIG. */
%feature("docstring") Foo::bar "No comment"

/* Let's just grab the original header file here */
%include "example.h"