windows-nt/Source/XPSP1/NT/admin/burnslib/inc/containers.hpp

29 lines
426 B
C++
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
// 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