blob: be9eabfbcfa4fb3f3033a6f70e3ed78a8269575b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
%module example
%{
#include <iostream>
#include <string>
using std::cin;
using std::cout;
using std::endl;
using std::string;
#include "example.h"
%}
%include example.h
|