16 lines
196 B
OpenEdge ABL
16 lines
196 B
OpenEdge ABL
%module example
|
|
%{
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
using std::endl;
|
|
using std::string;
|
|
|
|
#include "example.h"
|
|
%}
|
|
|
|
%include "std_string.i"
|
|
%include example.h
|