This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/packages/swig/android/streamer.i
Vitor Santos Costa 9dab200c61 treamer
2017-11-18 08:16:09 +00:00

17 lines
261 B
OpenEdge ABL

/* 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"
%init %{
%}