summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/impl/ndds/PublisherListener_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/dds4ccm/impl/ndds/PublisherListener_T.h')
-rw-r--r--CIAO/connectors/dds4ccm/impl/ndds/PublisherListener_T.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/CIAO/connectors/dds4ccm/impl/ndds/PublisherListener_T.h b/CIAO/connectors/dds4ccm/impl/ndds/PublisherListener_T.h
new file mode 100644
index 00000000000..8e8e4bc9ab7
--- /dev/null
+++ b/CIAO/connectors/dds4ccm/impl/ndds/PublisherListener_T.h
@@ -0,0 +1,39 @@
+/**
+ * @author William R. Otte <wotte@dre.vanderbilt.edu>
+ * @author Johnny Willemsen <jwillemsen@remedy.nl>
+ *
+ * $Id$
+ *
+ * Wrapper facade for NDDS.
+ */
+
+#include "dds4ccm/idl/dds_rtf2_dcpsC.h"
+#include "ace/Copy_Disabled.h"
+
+namespace CIAO
+{
+ namespace DDS4CCM
+ {
+ namespace RTI
+ {
+ template <typename DDS_TYPE, typename CCM_TYPE>
+ class PublisherListener_T :
+ public ::DDS::PublisherListener,
+ private ACE_Copy_Disabled
+ {
+ public:
+ /// Constructor
+ PublisherListener_T (
+ ::CCM_DDS::ConnectorStatusListener_ptr error_listener);
+
+ /// Destructor
+ virtual ~PublisherListener_T (void);
+
+ private:
+ ::CCM_DDS::ConnectorStatusListener_var error_listener_;
+ };
+ }
+ }
+}
+
+#include "dds4ccm/impl/ndds/PublisherListener_T.cpp"