| 44 | } |
| 45 | |
| 46 | EMSCRIPTEN_BINDINGS(textsort_sort_items) { |
| 47 | em::class_<::textsort::SortItems>("SortItems") |
| 48 | .smart_ptr<std::shared_ptr<::textsort::SortItems>>("SortItems") |
| 49 | .function("nativeDestroy", &NativeSortItems::nativeDestroy) |
| 50 | .function("sort", NativeSortItems::sort) |
| 51 | .class_function("createWithListener", NativeSortItems::create_with_listener) |
| 52 | .class_function("runSort", NativeSortItems::run_sort) |
| 53 | ; |
| 54 | } |
| 55 | |
| 56 | } // namespace djinni_generated |
nothing calls this directly
no outgoing calls
no test coverage detected