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