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

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

#ifndef CONSUMER_DISPATCH_SET
#define CONSUMER_DISPATCH_SET

#include "ace/Containers.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

// Forward reference.
class Connection_Handler;

typedef ACE_Unbounded_Set<Connection_Handler *> Consumer_Dispatch_Set;
typedef ACE_Unbounded_Set_Iterator<Connection_Handler *> Consumer_Dispatch_Set_Iterator;

#endif /* CONSUMER_DISPATCH_SET */