Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
454 B

  1. // Copyright (c) 1997-1999 Microsoft Corporation
  2. //
  3. // common container classes
  4. //
  5. // 13 Jan 2000 sburns
  6. #ifndef CONTAINERS_HPP_INCLUDED
  7. #define CONTAINERS_HPP_INCLUDED
  8. namespace Burnslib
  9. {
  10. typedef
  11. std::list<String, Burnslib::Heap::Allocator<String> >
  12. StringList;
  13. typedef
  14. std::vector<String, Burnslib::Heap::Allocator<String> >
  15. StringVector;
  16. } // namespace Burnslib
  17. #endif // CONTAINERS_HPP_INCLUDED