pandaegg.cxx 471 B

12345678910111213141516171819202122
  1. /**
  2. * @file pandaegg.cxx
  3. * @author drose
  4. * @date 2000-05-16
  5. */
  6. #include "pandaegg.h"
  7. #include "config_egg.h"
  8. #include "config_egg2pg.h"
  9. /**
  10. * Initializes the library. This must be called at least once before any of
  11. * the functions or classes in this library can be used. Normally it will be
  12. * called by the static initializers and need not be called explicitly, but
  13. * special cases exist.
  14. */
  15. void
  16. init_libpandaegg() {
  17. init_libegg();
  18. init_libegg2pg();
  19. }