diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2010-06-11 18:59:26 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2010-06-11 18:59:26 +0000 |
commit | cf6c51a2ea4c91b987b683f9f830cf3d98c03aeb (patch) | |
tree | 8a0dfde8b8810826cecce7179ecb10ec43c13026 /CIAO/connectors | |
parent | 37925bfcb56c3bb7320bbab08c34afba0b4ce35c (diff) | |
download | ATCD-cf6c51a2ea4c91b987b683f9f830cf3d98c03aeb.tar.gz |
Fri Jun 11 18:59:12 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* connectors/dds4ccm/impl/dds/DDS_Base_Connector_T.cpp:
Added guards around RTI specific code
Diffstat (limited to 'CIAO/connectors')
-rw-r--r-- | CIAO/connectors/dds4ccm/impl/dds/DDS_Base_Connector_T.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CIAO/connectors/dds4ccm/impl/dds/DDS_Base_Connector_T.cpp b/CIAO/connectors/dds4ccm/impl/dds/DDS_Base_Connector_T.cpp index 359cc385d67..7394347946a 100644 --- a/CIAO/connectors/dds4ccm/impl/dds/DDS_Base_Connector_T.cpp +++ b/CIAO/connectors/dds4ccm/impl/dds/DDS_Base_Connector_T.cpp @@ -84,14 +84,16 @@ DDS_Base_Connector_T<DDS_TYPE, CCM_TYPE>::init_default_domain (void) this->domain_id_)); try { +#if (CIAO_DDS4CCM_NDDS==1) ACE_Env_Value<int> verbosity (ACE_TEXT("DDS4CCM_NDDS_LOG_VERBOSITY"), NDDS_CONFIG_LOG_VERBOSITY_SILENT); NDDS_Config_LogVerbosity n_verbosity = static_cast <NDDS_Config_LogVerbosity> (verbosity.operator int()); NDDSConfigLogger::get_instance()->set_verbosity (n_verbosity); +#endif /* CIAO_DDS4CCM_NDDS==1 */ - // Generic code + // Generic parsing code, library and profile should be seperated by a # if (this->qos_profile_.in ()) { char* buf = ACE_OS::strdup (this->qos_profile_.in ()); |