summaryrefslogtreecommitdiff
path: root/apps/Gateway/Gateway/Consumer_Entry.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-23 04:30:06 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-23 04:30:06 +0000
commit615c6979c0b339c7e2c89477899d63bf87e1dd93 (patch)
tree7e633c5be1c568b2e00f6ec8a2b6b3e6dbf3bd58 /apps/Gateway/Gateway/Consumer_Entry.cpp
parent34cd7dceb74cbcc62c09c388504bec353bed4881 (diff)
downloadATCD-TAO-0_2_32.tar.gz
This commit was manufactured by cvs2svn to create tag 'TAO-0_2_32'.TAO-0_2_32
Diffstat (limited to 'apps/Gateway/Gateway/Consumer_Entry.cpp')
-rw-r--r--apps/Gateway/Gateway/Consumer_Entry.cpp31
1 files changed, 0 insertions, 31 deletions
diff --git a/apps/Gateway/Gateway/Consumer_Entry.cpp b/apps/Gateway/Gateway/Consumer_Entry.cpp
deleted file mode 100644
index c3dcd96ebbf..00000000000
--- a/apps/Gateway/Gateway/Consumer_Entry.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-// Defines an entry in the Consumer Map.
-// $Id$
-
-#include "Consumer_Entry.h"
-
-Consumer_Entry::Consumer_Entry (void)
-{
- ACE_NEW (this->destinations_, Consumer_Entry::ENTRY_SET);
-}
-
-Consumer_Entry::~Consumer_Entry (void)
-{
- delete this->destinations_;
-}
-
-// Get the associated set of destinations.
-
-Consumer_Entry::ENTRY_SET *
-Consumer_Entry::destinations (void)
-{
- return this->destinations_;
-}
-
-// Set the associated set of destinations.
-
-void
-Consumer_Entry::destinations (Consumer_Entry::ENTRY_SET *s)
-{
- this->destinations_ = s;
-}
-