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.

42 lines
999 B

  1. //+------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1993.
  5. //
  6. // File: BM_IID.hxx
  7. //
  8. // Contents: test class definition
  9. //
  10. // Classes: CGuidCompareTest
  11. //
  12. // Functions:
  13. //
  14. // History: 19-July-93 t-martig Created
  15. //
  16. //--------------------------------------------------------------------------
  17. #ifndef _BM_IID_HXX_
  18. #define _BM_IID_HXX_
  19. #include <bm_base.hxx>
  20. class CGuidCompareTest : public CTestBase
  21. {
  22. public:
  23. virtual TCHAR *Name ();
  24. virtual SCODE Setup (CTestInput *input);
  25. virtual SCODE Run ();
  26. virtual SCODE Report (CTestOutput &OutputFile);
  27. virtual SCODE Cleanup ();
  28. private:
  29. ULONG m_ulIterations;
  30. ULONG m_ulRepFunctionNEQTime[TEST_MAX_ITERATIONS];
  31. ULONG m_ulRepFunctionEQTime[TEST_MAX_ITERATIONS];
  32. ULONG m_ulRepInlineNEQTime[TEST_MAX_ITERATIONS];
  33. ULONG m_ulRepInlineEQTime[TEST_MAX_ITERATIONS];
  34. };
  35. #endif