/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/ocaml/strings_test/example.i
16 строк
245 B
Zackery Spytz
[OCaml] Fix reference typemaps for std::string
21 апр 2023, 00:39
21 апр 2023, 00:39
27f9649
Код
Авторство
О чём код?
%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" %apply std::string& INOUT { std::string &inout } %include example.h