summaryrefslogtreecommitdiff
path: root/ACE/apps/Gateway/Gateway/Consumer_Dispatch_Set.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/Gateway/Gateway/Consumer_Dispatch_Set.h')
-rw-r--r--ACE/apps/Gateway/Gateway/Consumer_Dispatch_Set.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/ACE/apps/Gateway/Gateway/Consumer_Dispatch_Set.h b/ACE/apps/Gateway/Gateway/Consumer_Dispatch_Set.h
new file mode 100644
index 00000000000..3a5d0cf3e25
--- /dev/null
+++ b/ACE/apps/Gateway/Gateway/Consumer_Dispatch_Set.h
@@ -0,0 +1,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 */