summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/impl/ndds/convertors/ReliableWriterCacheChangedStatus.h
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/dds4ccm/impl/ndds/convertors/ReliableWriterCacheChangedStatus.h')
-rw-r--r--CIAO/connectors/dds4ccm/impl/ndds/convertors/ReliableWriterCacheChangedStatus.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/CIAO/connectors/dds4ccm/impl/ndds/convertors/ReliableWriterCacheChangedStatus.h b/CIAO/connectors/dds4ccm/impl/ndds/convertors/ReliableWriterCacheChangedStatus.h
deleted file mode 100644
index 422bcde03aa..00000000000
--- a/CIAO/connectors/dds4ccm/impl/ndds/convertors/ReliableWriterCacheChangedStatus.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/**
- * @author Marcel Smit (msmit@remedy.nl)
- *
- * Wrapper facade for NDDS.
- */
-
-#ifndef DDS4CCM_RELIABLEWRITERCACHECHANGEDSTATUS_H
-#define DDS4CCM_RELIABLEWRITERCACHECHANGEDSTATUS_H
-
-#include "dds4ccm/impl/dds4ccm_conf.h"
-
-inline void
-operator<<= (::DDS::ReliableWriterCacheChangedStatus &ddsstatus, const ::DDS_ReliableWriterCacheChangedStatus & status)
-{
- ddsstatus.empty_reliable_writer_cache.total_count = status.empty_reliable_writer_cache.total_count;
- ddsstatus.empty_reliable_writer_cache.total_count_change = status.empty_reliable_writer_cache.total_count_change;
- ddsstatus.full_reliable_writer_cache.total_count = status.full_reliable_writer_cache.total_count;
- ddsstatus.full_reliable_writer_cache.total_count_change = status.full_reliable_writer_cache.total_count_change;
- ddsstatus.low_watermark_reliable_writer_cache.total_count = status.low_watermark_reliable_writer_cache.total_count;
- ddsstatus.low_watermark_reliable_writer_cache.total_count_change = status.low_watermark_reliable_writer_cache.total_count_change;
- ddsstatus.high_watermark_reliable_writer_cache.total_count = status.high_watermark_reliable_writer_cache.total_count;
- ddsstatus.high_watermark_reliable_writer_cache.total_count_change = status.high_watermark_reliable_writer_cache.total_count_change;
- ddsstatus.unacknowledged_sample_count = status.unacknowledged_sample_count;
- ddsstatus.unacknowledged_sample_count_peak = status.unacknowledged_sample_count_peak;
-}
-
-inline void
-operator<<= (::DDS_ReliableWriterCacheChangedStatus &ddsstatus, const ::DDS::ReliableWriterCacheChangedStatus & status)
-{
- ddsstatus.empty_reliable_writer_cache.total_count = status.empty_reliable_writer_cache.total_count;
- ddsstatus.empty_reliable_writer_cache.total_count_change = status.empty_reliable_writer_cache.total_count_change;
- ddsstatus.full_reliable_writer_cache.total_count = status.full_reliable_writer_cache.total_count;
- ddsstatus.full_reliable_writer_cache.total_count_change = status.full_reliable_writer_cache.total_count_change;
- ddsstatus.low_watermark_reliable_writer_cache.total_count = status.low_watermark_reliable_writer_cache.total_count;
- ddsstatus.low_watermark_reliable_writer_cache.total_count_change = status.low_watermark_reliable_writer_cache.total_count_change;
- ddsstatus.high_watermark_reliable_writer_cache.total_count = status.high_watermark_reliable_writer_cache.total_count;
- ddsstatus.high_watermark_reliable_writer_cache.total_count_change = status.high_watermark_reliable_writer_cache.total_count_change;
- ddsstatus.unacknowledged_sample_count = status.unacknowledged_sample_count;
- ddsstatus.unacknowledged_sample_count_peak = status.unacknowledged_sample_count_peak;
-}
-
-#endif /* DDS4CCM_RELIABLEWRITERCACHECHANGEDSTATUS_H */