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
28 lines
454 B
// Copyright (c) 1997-1999 Microsoft Corporation
|
|
//
|
|
// common container classes
|
|
//
|
|
// 13 Jan 2000 sburns
|
|
|
|
|
|
|
|
#ifndef CONTAINERS_HPP_INCLUDED
|
|
#define CONTAINERS_HPP_INCLUDED
|
|
|
|
|
|
|
|
namespace Burnslib
|
|
{
|
|
|
|
typedef
|
|
std::list<String, Burnslib::Heap::Allocator<String> >
|
|
StringList;
|
|
|
|
typedef
|
|
std::vector<String, Burnslib::Heap::Allocator<String> >
|
|
StringVector;
|
|
|
|
} // namespace Burnslib
|
|
|
|
|
|
#endif // CONTAINERS_HPP_INCLUDED
|