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