summaryrefslogtreecommitdiff
path: root/apps/Gateway/Gateway/Dispatch_Set.h
blob: a867f1ca5ff498c22863d753c0773e2474e3004b (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
/* -*- C++ -*- */
// $Id$

// ============================================================================
//
// = LIBRARY
//    apps
// 
// = FILENAME
//    Dispatch_Set.h
//
// = AUTHOR
//    Doug Schmidt 
// 
// ============================================================================

#if !defined (_DISPATCH_SET)
#define _DISPATCH_SET

#include "ace/Set.h"

// Forward reference.
class Proxy_Handler;

typedef ACE_Unbounded_Set<Proxy_Handler *> Dispatch_Set;
typedef ACE_Unbounded_Set_Iterator<Proxy_Handler *> Dispatch_Set_Iterator;

#endif /* _DISPATCH_SET */