From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
|
#ifdef __cplusplus
extern "C" {
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "ppport.h"
}
#endif
#include "lib_ann_interface.h"
MODULE = Algorithm::KNN::XS PACKAGE = Algorithm::KNN::XS
## The include line executes xspp with the supplied typemap and the
## xsp interface code for our class.
## It will include the output of the xsubplusplus run.
INCLUDE_COMMAND: $^X -MExtUtils::XSpp::Cmd -e xspp -- --typemap=typemap.xsp Object-LibANNInterface.xsp
|