Ver código fonte

Added CodeDweller namespace.


git-svn-id: https://svn.microneil.com/svn/CodeDweller/branches/adeniz_1@80 d34b734f-a00e-4b39-a726-e4eeb87269ab
adeniz_1
adeniz 9 anos atrás
pai
commit
729b6fe305
2 arquivos alterados com 7 adições e 1 exclusões
  1. 4
    0
      timing.cpp
  2. 3
    1
      timing.hpp

+ 4
- 0
timing.cpp Ver arquivo



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.
} }

}

+ 3
- 1
timing.hpp Ver arquivo



// 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.

Carregando…
Cancelar
Salvar