summaryrefslogtreecommitdiff
path: root/tests/projects/swig/auto_include/src/example.i
blob: 945b77892d455405cfd151fbfcc4438699b03c6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%module example

%{
/* Put headers and other declarations here */
#include "nlohmann/json.hpp"
extern double My_variable;
extern int    fact(int);
extern int    my_mod(int n, int m);
%}

extern double My_variable;
extern int    fact(int);
extern int    my_mod(int n, int m);