summaryrefslogtreecommitdiff
path: root/CIAO/connectors/dds4ccm/impl/Coherent_Changes_Guard.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/connectors/dds4ccm/impl/Coherent_Changes_Guard.cpp')
-rw-r--r--CIAO/connectors/dds4ccm/impl/Coherent_Changes_Guard.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/CIAO/connectors/dds4ccm/impl/Coherent_Changes_Guard.cpp b/CIAO/connectors/dds4ccm/impl/Coherent_Changes_Guard.cpp
deleted file mode 100644
index ad574ed8726..00000000000
--- a/CIAO/connectors/dds4ccm/impl/Coherent_Changes_Guard.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "dds4ccm/impl/Coherent_Changes_Guard.h"
-
-CIAO::DDS4CCM::Coherent_Changes_Guard::Coherent_Changes_Guard (
- ::DDS::Publisher_ptr p,
- bool coherent_write) :
- p_ (::DDS::Publisher::_duplicate (p)),
- coherent_write_ (coherent_write)
-{
- if (this->coherent_write_)
- {
- p_->begin_coherent_changes ();
- }
-}
-
-CIAO::DDS4CCM::Coherent_Changes_Guard::~Coherent_Changes_Guard ()
-{
- if (this->coherent_write_)
- {
- this->p_->end_coherent_changes ();
- }
-}
-