Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 lines
1.2 KiB

  1. /**********************************************************************/
  2. /** Microsoft Windows/NT **/
  3. /** Copyright(c) Microsoft Corp., 1992 **/
  4. /**********************************************************************/
  5. /*
  6. strelaps.hxx
  7. Class declarations for the ELAPSED_TIME_STR class.
  8. FILE HISTORY:
  9. KeithMo 23-Mar-1992 Created for the Server Manager.
  10. */
  11. #ifndef _STRELAPS_HXX_
  12. #define _STRELAPS_HXX_
  13. #include <strnumer.hxx>
  14. //
  15. // ELAPSED_TIME_STR class.
  16. //
  17. /*************************************************************************
  18. NAME: ELAPSED_TIME_STR
  19. SYNOPSIS:
  20. INTERFACE: ELAPSED_TIME_STR - Class constructor.
  21. ~ELAPSED_TIME_STR - Class destructor.
  22. PARENT: NLS_STR
  23. HISTORY:
  24. KeithMo 23-Mar-1992 Created for the Server Manager.
  25. **************************************************************************/
  26. class ELAPSED_TIME_STR : public NLS_STR
  27. {
  28. public:
  29. //
  30. // Usual constructor/destructor goodies.
  31. //
  32. ELAPSED_TIME_STR( ULONG ulTime,
  33. TCHAR chTimeSep,
  34. BOOL fShowSeconds = FALSE );
  35. ~ELAPSED_TIME_STR( VOID );
  36. }; // class ELAPSED_TIME_STR
  37. #endif // _STRELAPS_HXX_
  38.