diff options
Diffstat (limited to 'CIAO/connectors/dds4ccm/impl/ndds/OfferedDeadlineMissedStatus.h')
-rw-r--r-- | CIAO/connectors/dds4ccm/impl/ndds/OfferedDeadlineMissedStatus.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/CIAO/connectors/dds4ccm/impl/ndds/OfferedDeadlineMissedStatus.h b/CIAO/connectors/dds4ccm/impl/ndds/OfferedDeadlineMissedStatus.h new file mode 100644 index 00000000000..164d6a571c4 --- /dev/null +++ b/CIAO/connectors/dds4ccm/impl/ndds/OfferedDeadlineMissedStatus.h @@ -0,0 +1,39 @@ +/** + * @author William R. Otte <wotte@dre.vanderbilt.edu> + * @author Johnny Willemsen <jwillemsen@remedy.nl> + * + * $Id$ + * + * Wrapper facade for NDDS. + */ + +#ifndef DDS4CCM_OFFEREDDEADLINEMISSEDSTATUS_H +#define DDS4CCM_OFFEREDDEADLINEMISSEDSTATUS_H + +#include "InstanceHandle_t.h" +#include "dds4ccm/impl/dds4ccm_conf.h" + +#if (CIAO_DDS4CCM_OPENDDS==1) +typedef ::DDS::OfferedDeadlineMissedStatus DDS_OfferedDeadlineMissedStatus; +#endif + +#if (CIAO_DDS4CCM_NDDS==1) +inline void +operator<<= (::DDS::OfferedDeadlineMissedStatus &ddsstatus, const ::DDS_OfferedDeadlineMissedStatus & status) +{ + ddsstatus.total_count = status.total_count; + ddsstatus.total_count_change = status.total_count_change; + ddsstatus.last_instance_handle <<= status.last_instance_handle; +} + +inline void +operator<<= (::DDS_OfferedDeadlineMissedStatus &ddsstatus, const ::DDS::OfferedDeadlineMissedStatus & status) +{ + ddsstatus.total_count = status.total_count; + ddsstatus.total_count_change = status.total_count_change; + ddsstatus.last_instance_handle <<= status.last_instance_handle; +} + +#endif + +#endif /* DDS4CCM_OFFEREDDEADLINEMISSEDSTATUS_H */ |