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.

37 lines
851 B

  1. //+------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1993.
  5. //
  6. // File: bmdriver.hxx
  7. //
  8. // Contents: benchmark driver class definition
  9. //
  10. // Classes: CBenchMarkDriver
  11. //
  12. // Functions:
  13. //
  14. // History: 19-July-93 t-martig Created
  15. //
  16. //--------------------------------------------------------------------------
  17. #ifndef _BM_BMDRIVER_HXX_
  18. #define _BM_BMDRIVER_HXX_
  19. #include <benchmrk.hxx>
  20. #include <bm_base.hxx>
  21. class CBenchMarkDriver
  22. {
  23. public:
  24. SCODE RunTest (CTestInput &input, CTestOutput &output,
  25. CTestBase *pTest);
  26. SCODE Run (LPSTR lpCmdLine);
  27. void WriteHeader (CTestInput &input, CTestOutput &output);
  28. };
  29. void ReportBMConfig (CTestInput &input, CTestOutput &output);
  30. #endif // _BM_BMDRIVER_HXX_