summaryrefslogtreecommitdiff
path: root/TAO/DevGuideExamples/EventServices/RTEC_MCast_Federated/SimpleAddressServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/DevGuideExamples/EventServices/RTEC_MCast_Federated/SimpleAddressServer.h')
-rw-r--r--TAO/DevGuideExamples/EventServices/RTEC_MCast_Federated/SimpleAddressServer.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/TAO/DevGuideExamples/EventServices/RTEC_MCast_Federated/SimpleAddressServer.h b/TAO/DevGuideExamples/EventServices/RTEC_MCast_Federated/SimpleAddressServer.h
deleted file mode 100644
index 9c346d87a81..00000000000
--- a/TAO/DevGuideExamples/EventServices/RTEC_MCast_Federated/SimpleAddressServer.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// $Id$
-
-// SimpleAddressServer.h
-
-#ifndef SIMPLEADDRESSSERVER_H
-#define SIMPLEADDRESSSERVER_H
-
-#include "orbsvcs/RtecUDPAdminS.h"
-
-ACE_BEGIN_VERSIONED_NAMESPACE_DECL
-class ACE_INET_Addr;
-ACE_END_VERSIONED_NAMESPACE_DECL
-
-class SimpleAddressServer : public POA_RtecUDPAdmin::AddrServer {
-public:
- SimpleAddressServer (const ACE_INET_Addr& address);
- virtual void get_addr (const RtecEventComm::EventHeader& header,
- RtecUDPAdmin::UDP_Addr& address);
-
- virtual void get_address(const RtecEventComm::EventHeader& header,
- RtecUDPAdmin::UDP_Address& address);
-
-private:
- RtecUDPAdmin::UDP_Address address_;
-};
-
-#endif