swig streamer

This commit is contained in:
Vitor Santos Costa
2017-11-30 01:16:52 +00:00
parent 690f1d3830
commit 2a93f1da99
3 changed files with 143 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
/* File : example.i */
%module(directors="1") streamer
%{
#include "streamer.h"
%}
%include "std_string.i"
/* A base class for callbacks from C++ to output text on the Java side */
%feature("director") AndroidStreamer;
%include "streamer.h"