Parcourir la source

Added CodeDweller namespace.


git-svn-id: https://svn.microneil.com/svn/CodeDweller/branches/adeniz_1@80 d34b734f-a00e-4b39-a726-e4eeb87269ab
adeniz_1
adeniz il y a 9 ans
Parent
révision
729b6fe305
2 fichiers modifiés avec 7 ajouts et 1 suppressions
  1. 4
    0
      timing.cpp
  2. 3
    1
      timing.hpp

+ 4
- 0
timing.cpp Voir le fichier

@@ -37,6 +37,8 @@

using namespace std;

namespace CodeDweller {

///////////////////////////////////////////////////////////////////////////////
// class Sleeper - An object that remembers how long it is supposed to sleep.
// This allows an application to create "standard" sleep timers. This also
@@ -326,3 +328,5 @@ msclock Timeout::getRemainingTime() {
bool Timeout::isExpired() { // Return true if time is up.
return (!(myTimer.getElapsedTime() < myDuration)); // Check the elapsed time against myDuration.
}

}

+ 3
- 1
timing.hpp Voir le fichier

@@ -56,7 +56,7 @@

// Introduce the standard namespace ///////////////////////////////////////////

using namespace std;
namespace CodeDweller {

///////////////////////////////////////////////////////////////////////////////
// class Sleeper - An object that remembers how long it is supposed to sleep.
@@ -357,4 +357,6 @@ class Timeout {
** Returns true if time is up.
*/

} // namespace CodeDweller

#endif // End MNR_timing once-only switch.

Chargement…
Annuler
Enregistrer