vector_uchar.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. // Filename: vector_uchar.h
  2. // Created by: drose (10May00)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) 2001, Disney Enterprises, Inc. All rights reserved
  8. //
  9. // All use of this software is subject to the terms of the Panda 3d
  10. // Software license. You should have received a copy of this license
  11. // along with this source code; you will also find a current copy of
  12. // the license at http://www.panda3d.org/license.txt .
  13. //
  14. // To contact the maintainers of this program write to
  15. // [email protected] .
  16. //
  17. ////////////////////////////////////////////////////////////////////
  18. #ifndef VECTOR_UCHAR_H
  19. #define VECTOR_UCHAR_H
  20. #include <pandabase.h>
  21. #include "pvector.h"
  22. ////////////////////////////////////////////////////////////////////
  23. // Class : vector_uchar
  24. // Description : A vector of uchars. This class is defined once here,
  25. // and exported to PANDAEXPRESS.DLL; other packages that
  26. // want to use a vector of this type (whether they need
  27. // to export it or not) should include this header file,
  28. // rather than defining the vector again.
  29. ////////////////////////////////////////////////////////////////////
  30. #define EXPCL EXPCL_PANDAEXPRESS
  31. #define EXPTP EXPTP_PANDAEXPRESS
  32. #define TYPE unsigned char
  33. #define NAME vector_uchar
  34. #include <vector_src.h>
  35. // Tell GCC that we'll take care of the instantiation explicitly here.
  36. #ifdef __GNUC__
  37. #pragma interface
  38. #endif
  39. #endif