Panda3D
 All Classes Functions Variables Enumerations
pandaode.cxx
00001 // Filename: pandaode.cxx
00002 // Created by:  drose (16May00)
00003 // 
00004 ////////////////////////////////////////////////////////////////////
00005 
00006 #include "pandaode.h"
00007 #include "config_ode.h"
00008 
00009 // By including checkPandaVersion.h, we guarantee that runtime
00010 // attempts to load libpandaode.so/.dll will fail if they
00011 // inadvertently link with the wrong version of libdtool.so/.dll.
00012 
00013 #include "checkPandaVersion.h"
00014 
00015 ////////////////////////////////////////////////////////////////////
00016 //     Function: init_libpandaode
00017 //  Description: Initializes the library.  This must be called at
00018 //               least once before any of the functions or classes in
00019 //               this library can be used.  Normally it will be
00020 //               called by the static initializers and need not be
00021 //               called explicitly, but special cases exist.
00022 ////////////////////////////////////////////////////////////////////
00023 void
00024 init_libpandaode() {
00025   init_libode();
00026 }
 All Classes Functions Variables Enumerations