vector_float.h 843 B

123456789101112131415161718192021222324252627282930313233
  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 vector_float.h
  10. * @author drose
  11. * @date 2000-05-10
  12. */
  13. #ifndef VECTOR_FLOAT_H
  14. #define VECTOR_FLOAT_H
  15. #include "dtoolbase.h"
  16. /**
  17. * A vector of floats. This class is defined once here, and exported to
  18. * DTOOL.DLL; other packages that want to use a vector of this type (whether
  19. * they need to export it or not) should include this header file, rather than
  20. * defining the vector again.
  21. */
  22. #define EXPCL EXPCL_DTOOL_DTOOLUTIL
  23. #define EXPTP EXPTP_DTOOL_DTOOLUTIL
  24. #define TYPE float
  25. #define NAME vector_float
  26. #include "vector_src.h"
  27. #endif