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.

48 lines
1.0 KiB

  1. //+------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1993.
  5. //
  6. // File: bm_nest.hxx
  7. //
  8. // Contents: test class definition
  9. //
  10. // Classes: CNestTest
  11. //
  12. // Functions:
  13. //
  14. // History: 19-July-93 t-martig Created
  15. //
  16. //--------------------------------------------------------------------------
  17. #ifndef _BM_NEST_HXX_
  18. #define _BM_NEST_HXX_
  19. #include <bm_base.hxx>
  20. #include <iloop.h> // ILoop
  21. class CNestTest : public CTestBase
  22. {
  23. public:
  24. virtual TCHAR *Name ();
  25. virtual SCODE Setup (CTestInput *input);
  26. virtual SCODE Run ();
  27. virtual SCODE Report (CTestOutput &OutputFile);
  28. virtual SCODE Cleanup ();
  29. private:
  30. ULONG m_ulIterations;
  31. CLSID m_ClsID;
  32. ILoop *m_pILoop1;
  33. ILoop *m_pILoop2;
  34. ULONG m_ulNest2Time[TEST_MAX_ITERATIONS];
  35. ULONG m_ulNest3Time[TEST_MAX_ITERATIONS];
  36. ULONG m_ulNest4Time[TEST_MAX_ITERATIONS];
  37. ULONG m_ulNest5Time[TEST_MAX_ITERATIONS];
  38. };
  39. #endif