mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
20 lines
323 B
C++
20 lines
323 B
C++
// -*- C++ -*-
|
|
//
|
|
// $Id: Countdown_Time.inl 85368 2009-05-18 10:23:19Z johnnyw $
|
|
|
|
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
|
|
|
|
ACE_INLINE bool
|
|
ACE_Countdown_Time::stopped (void) const
|
|
{
|
|
return stopped_;
|
|
}
|
|
|
|
ACE_INLINE void
|
|
ACE_Countdown_Time::update (void)
|
|
{
|
|
this->stop ();
|
|
this->start ();
|
|
}
|
|
|
|
ACE_END_VERSIONED_NAMESPACE_DECL
|