/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/ordering.i
29 строк
429 B
William S Fulton
fix php keyword warnings
24 янв 2006, 00:46
24 янв 2006, 00:46
8c29c1a
Код
Авторство
О чём код?
%module ordering // Ruby used to fail on the ordering of the two Class declarations below struct Klass { int variable; }; %{ struct Klass { int variable; }; %} // Testing the order of various code block sections %runtime %{ class RuntimeSection {}; %} %header %{ class HeaderSection {}; void HeaderMethod(RuntimeSection rs) {} %} %wrapper %{ void WrapperMethod(HeaderSection hs, RuntimeSection rs) {} %}