I was looking in the Kovan source code today, and I saw that the c++ class create.cpp has a method called move.
looking at the create_c.cpp it seems like I should be able create a C++ library that only has this code, and then call it from my C program after dealing with extern issues.
void create_move(int distance, int speed) { Create::instance()->move(distance, speed); }
What would I have to #include to have access to the Create Object?
Thanks
Brad
The Create class is defined in create.hpp
I'm not sure what will happen if you include it into C code though.