15 lines
172 B
OpenEdge ABL
15 lines
172 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 example.h
|