// -*- C++ -*- ACE_BEGIN_VERSIONED_NAMESPACE_DECL template ACE_Time_Value_T &ACE_Time_Value_T::operator += (const ACE_Time_Value &tv) { this->ACE_Time_Value::operator +=(tv); return *this; } template ACE_Time_Value_T &ACE_Time_Value_T::operator += (time_t tv) { this->ACE_Time_Value::operator +=(tv); return *this; } template ACE_Time_Value_T &ACE_Time_Value_T::operator = (const ACE_Time_Value_T &tv) { this->time_policy_ = tv.time_policy_; this->ACE_Time_Value::operator =(tv); return *this; } template ACE_Time_Value_T &ACE_Time_Value_T::operator = (const ACE_Time_Value &tv) { this->ACE_Time_Value::operator =(tv); return *this; } template ACE_Time_Value_T &ACE_Time_Value_T::operator = (time_t tv) { this->ACE_Time_Value::operator =(tv); return *this; } template ACE_Time_Value_T &ACE_Time_Value_T::operator -= (const ACE_Time_Value &tv) { this->ACE_Time_Value::operator -=(tv); return *this; } template ACE_Time_Value_T &ACE_Time_Value_T::operator -= (time_t tv) { this->ACE_Time_Value::operator -=(tv); return *this; } template ACE_Time_Value_T &ACE_Time_Value_T::operator *= (double d) { this->ACE_Time_Value::operator *=(d); return *this; } template ACE_Time_Value_T ACE_Time_Value_T::operator++ (int) { ACE_Time_Value_T tv (*this); ++*this; return tv; } template ACE_Time_Value_T &ACE_Time_Value_T::operator++ () { this->ACE_Time_Value::operator ++(); return *this; } template ACE_Time_Value_T ACE_Time_Value_T::operator-- (int) { ACE_Time_Value_T tv (*this); --*this; return tv; } template ACE_Time_Value_T &ACE_Time_Value_T::operator-- () { this->ACE_Time_Value::operator --(); return *this; } ACE_END_VERSIONED_NAMESPACE_DECL