README 405 B

123456789101112131415161718
  1. this is the public C interface to the ODE library.
  2. all these files should be includable from C, i.e. they should not use any
  3. C++ features. everything should be protected with
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. ...
  8. #ifdef __cplusplus
  9. }
  10. #endif
  11. the only exceptions are the odecpp.h and odecpp_collisioh.h files, which define a C++ wrapper for
  12. the C interface. remember to keep this in sync!