vector_string.h 1008 B

12345678910111213141516171819202122232425262728293031
  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 "ppremake.h"
  17. #include <vector>
  18. ////////////////////////////////////////////////////////////////////
  19. // Class : vector_string
  20. // Description : This typedef is borrowed from dtool/src/dtoolutil, and
  21. // stripped down to just the bare minimum that Filename
  22. // needs; and also modified to build outside of Panda.
  23. ////////////////////////////////////////////////////////////////////
  24. typedef vector<string> vector_string;
  25. #endif