summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Trader/stl.h
blob: 300ac8ee9f689cd6618e6f7c9f0df3796f37caf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* -*- 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;
using std::less;
using std::pair;
using std::multimap;
using std::make_pair;

#endif // ACE_USES