vector_string.h 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. // Filename: vector_string.h
  2. // Created by: drose (15May00)
  3. //
  4. ////////////////////////////////////////////////////////////////////
  5. //
  6. // PANDA 3D SOFTWARE
  7. // Copyright (c) Carnegie Mellon University. All rights reserved.
  8. //
  9. // All use of this software is subject to the terms of the revised BSD
  10. // license. You should have received a copy of this license along
  11. // with this source code in a file named "LICENSE."
  12. //
  13. ////////////////////////////////////////////////////////////////////
  14. #ifndef VECTOR_STRING_H
  15. #define VECTOR_STRING_H
  16. #include "dtoolbase.h"
  17. ////////////////////////////////////////////////////////////////////
  18. // Class : vector_string
  19. // Description : A vector of strings. This class is defined once here,
  20. // and exported to DTOOL.DLL; other packages that want
  21. // to use a vector of this type (whether they need to
  22. // export it or not) should include this header file,
  23. // rather than defining the vector again.
  24. ////////////////////////////////////////////////////////////////////
  25. #define EXPCL EXPCL_DTOOL
  26. #define EXPTP EXPTP_DTOOL
  27. #define TYPE std::string
  28. #define NAME vector_string
  29. #include "vector_src.h"
  30. // Tell GCC that we'll take care of the instantiation explicitly here.
  31. #ifdef __GNUC__
  32. #pragma interface
  33. #endif
  34. #endif