diff options
author | mk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-12 01:22:57 +0000 |
---|---|---|
committer | mk1 <mk1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-05-12 01:22:57 +0000 |
commit | 257625942ace37e5ec4ad8e67969fd87bbe2273f (patch) | |
tree | 50fd2173d41ebb1d6c9b9638e94b52ec9769ff77 /TAO | |
parent | 4569ee143a2648b988121da0da9216bef53c7f75 (diff) | |
download | ATCD-257625942ace37e5ec4ad8e67969fd87bbe2273f.tar.gz |
STL declarations
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/orbsvcs/orbsvcs/Trader/stl.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Trader/stl.h b/TAO/orbsvcs/orbsvcs/Trader/stl.h new file mode 100644 index 00000000000..210b5c5eb24 --- /dev/null +++ b/TAO/orbsvcs/orbsvcs/Trader/stl.h @@ -0,0 +1,38 @@ +/* -*- C++ -*- */ + +// ======================================================================== +// $Id$ +// +// = LIBRARY +// orbsvcs +// +// = FILENAME +// stl.h +// +// = AUTHOR +// Seth Widoff <sbw1@cs.wustl.edu> +// +// ======================================================================== + + +#include<map> +#include<vector> +#include<string> +#include<set> +#include<deque> +#include<list> +#include<queue> +#include<stack> + +#if defined (ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB) && \ + (ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB != 0) +using std::map; +using std::vector; +using std::string; +using std::set; +using std::deque; +using std::list; +using std::queue; +using std::stack; + +#endif // ACE_USES ... |