00001
00002
00003
00004
00005
00006
00007
00008 #ifndef OPENDDS_DCPS_TRANSIENT_KLUDGE_H
00009 #define OPENDDS_DCPS_TRANSIENT_KLUDGE_H
00010
00011 #include "dcps_export.h"
00012
00013 #if !defined (ACE_LACKS_PRAGMA_ONCE)
00014 #pragma once
00015 #endif
00016
00017 namespace OpenDDS {
00018 namespace DCPS {
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 class OpenDDS_Dcps_Export Transient_Kludge {
00030 public:
00031
00032 Transient_Kludge();
00033 ~Transient_Kludge();
00034
00035
00036 static Transient_Kludge* instance();
00037
00038
00039 void enable();
00040
00041
00042 void disable();
00043
00044
00045 bool is_enabled();
00046
00047 private:
00048
00049 bool enabled_;
00050 };
00051
00052 #define TheTransientKludge OpenDDS::DCPS::Transient_Kludge::instance()
00053
00054 }
00055 }
00056
00057 #if defined(__ACE_INLINE__)
00058 #include "Transient_Kludge.inl"
00059 #endif
00060
00061 #endif