18 lines
199 B
OpenEdge ABL
18 lines
199 B
OpenEdge ABL
|
|
%module multi_import_b
|
||
|
|
|
||
|
|
%include multi_import_c.i
|
||
|
|
|
||
|
|
%{
|
||
|
|
#include "multi_import.h"
|
||
|
|
%}
|
||
|
|
|
||
|
|
class YYY : public XXX
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
int testy();
|
||
|
|
};
|
||
|
|
|
||
|
|
%inline %{
|
||
|
|
void use_www_b(const WWW& w) {w.nullop();}
|
||
|
|
%}
|