directsymbols.h 659 B

123456789101112131415161718192021222324252627
  1. /**
  2. * PANDA 3D SOFTWARE
  3. * Copyright (c) Carnegie Mellon University. All rights reserved.
  4. *
  5. * All use of this software is subject to the terms of the revised BSD
  6. * license. You should have received a copy of this license along
  7. * with this source code in a file named "LICENSE."
  8. *
  9. * @file directsymbols.h
  10. * @author drose
  11. * @date 2000-02-18
  12. */
  13. #ifndef DIRECTSYMBOLS_H
  14. #define DIRECTSYMBOLS_H
  15. /* See dtoolsymbols.h for a rant on the purpose of this file. */
  16. #ifdef BUILDING_DIRECT
  17. #define EXPCL_DIRECT EXPORT_CLASS
  18. #define EXPTP_DIRECT EXPORT_TEMPL
  19. #else
  20. #define EXPCL_DIRECT IMPORT_CLASS
  21. #define EXPTP_DIRECT IMPORT_TEMPL
  22. #endif
  23. #endif