git-svn-id: https://svn.microneil.com/svn/CodeDweller/branches/adeniz_1@80 d34b734f-a00e-4b39-a726-e4eeb87269abadeniz_1
using namespace std; | using namespace std; | ||||
namespace CodeDweller { | |||||
/////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////// | ||||
// class Sleeper - An object that remembers how long it is supposed to sleep. | // class Sleeper - An object that remembers how long it is supposed to sleep. | ||||
// This allows an application to create "standard" sleep timers. This also | // This allows an application to create "standard" sleep timers. This also | ||||
bool Timeout::isExpired() { // Return true if time is up. | bool Timeout::isExpired() { // Return true if time is up. | ||||
return (!(myTimer.getElapsedTime() < myDuration)); // Check the elapsed time against myDuration. | return (!(myTimer.getElapsedTime() < myDuration)); // Check the elapsed time against myDuration. | ||||
} | } | ||||
} |
// Introduce the standard namespace /////////////////////////////////////////// | // Introduce the standard namespace /////////////////////////////////////////// | ||||
using namespace std; | |||||
namespace CodeDweller { | |||||
/////////////////////////////////////////////////////////////////////////////// | /////////////////////////////////////////////////////////////////////////////// | ||||
// class Sleeper - An object that remembers how long it is supposed to sleep. | // class Sleeper - An object that remembers how long it is supposed to sleep. | ||||
** Returns true if time is up. | ** Returns true if time is up. | ||||
*/ | */ | ||||
} // namespace CodeDweller | |||||
#endif // End MNR_timing once-only switch. | #endif // End MNR_timing once-only switch. |