summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h b/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h
index b4e72e090da..daa20dfffb2 100644
--- a/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h
+++ b/TAO/orbsvcs/orbsvcs/Time/TAO_UTO.h
@@ -54,21 +54,20 @@ public:
~TAO_UTO (void);
/// For the readonly attribute <time>.
- virtual TimeBase::TimeT time (
- ACE_ENV_SINGLE_ARG_DECL_WITH_DEFAULTS)
+ virtual TimeBase::TimeT time ()
ACE_THROW_SPEC ((CORBA::SystemException));
/// For the readonly attribute <inaccuracy>.
- virtual TimeBase::InaccuracyT inaccuracy (ACE_ENV_SINGLE_ARG_DECL)
+ virtual TimeBase::InaccuracyT inaccuracy (void)
ACE_THROW_SPEC ((CORBA::SystemException));
/// For the readonly attribute <tdf>, which is the "time displacement
/// factor".
- virtual TimeBase::TdfT tdf (ACE_ENV_SINGLE_ARG_DECL)
+ virtual TimeBase::TdfT tdf (void)
ACE_THROW_SPEC ((CORBA::SystemException));
/// For the readonly attribute <utc_time>.
- virtual TimeBase::UtcT utc_time (ACE_ENV_SINGLE_ARG_DECL)
+ virtual TimeBase::UtcT utc_time (void)
ACE_THROW_SPEC ((CORBA::SystemException));
/**
@@ -76,14 +75,13 @@ public:
* ?? Find out more about the Base Time, UTC and
* Distributed Time Sync. Algos. [3
*/
- CosTime::UTO_ptr absolute_time (ACE_ENV_SINGLE_ARG_DECL)
+ CosTime::UTO_ptr absolute_time (void)
ACE_THROW_SPEC ((CORBA::SystemException));
/// Compares the time contained in the object with the time in the
/// supplied uto according to the supplied comparison type.
CosTime::TimeComparison compare_time (CosTime::ComparisonType comparison_type,
- CosTime::UTO_ptr uto
- ACE_ENV_ARG_DECL)
+ CosTime::UTO_ptr uto)
ACE_THROW_SPEC ((CORBA::SystemException));
/**
@@ -93,13 +91,12 @@ public:
* two UTOs. Inaccuracies are ignored. Note the result of this
* operation is meaningless if the base times of UTOs are different.
*/
- CosTime::TIO_ptr time_to_interval (CosTime::UTO_ptr
- ACE_ENV_ARG_DECL)
+ CosTime::TIO_ptr time_to_interval (CosTime::UTO_ptr)
ACE_THROW_SPEC ((CORBA::SystemException));
/// Returns a TIO object representing the error interval around the
/// time value in the UTO.
- CosTime::TIO_ptr interval (ACE_ENV_SINGLE_ARG_DECL)
+ CosTime::TIO_ptr interval (void)
ACE_THROW_SPEC ((CORBA::SystemException));
private: