pandaode.cxx 944 B

1234567891011121314151617181920212223242526
  1. // Filename: pandaode.cxx
  2. // Created by: drose (16May00)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. #include "pandaode.h"
  6. #include "config_ode.h"
  7. // By including checkPandaVersion.h, we guarantee that runtime
  8. // attempts to load libpandaode.so/.dll will fail if they
  9. // inadvertently link with the wrong version of libdtool.so/.dll.
  10. #include "checkPandaVersion.h"
  11. ////////////////////////////////////////////////////////////////////
  12. // Function: init_libpandaode
  13. // Description: Initializes the library. This must be called at
  14. // least once before any of the functions or classes in
  15. // this library can be used. Normally it will be
  16. // called by the static initializers and need not be
  17. // called explicitly, but special cases exist.
  18. ////////////////////////////////////////////////////////////////////
  19. void
  20. init_libpandaode() {
  21. init_libode();
  22. }