Simulation.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. // Simulation.h: interface for the CSimulation class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SIMULATION_H__52C07D2D_A43C_4021_B926_3A8FE98354AF__INCLUDED_)
  5. #define AFX_SIMULATION_H__52C07D2D_A43C_4021_B926_3A8FE98354AF__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. //////////////////////////////////////////////////////////////////////
  10. // CSimulation
  11. class CSimulation;
  12. typedef struct simulation_info_t {
  13. HWND hMainWnd;
  14. CStrategy * pStrategy;
  15. } SIMULATION_INFO, * LPSIMULATION_INFO;
  16. /***
  17. 策略的模拟线程控制类
  18. */
  19. class CSimulation  
  20. {
  21. public:
  22. CSimulation();
  23. virtual ~CSimulation();
  24. static HANDLE m_hEventKillSimulationThread;
  25. static HANDLE m_hEventSimulationThreadKilled;
  26. void SetStrategy( CStrategy * pStrategy, HWND hMainWnd );
  27. BOOL DownloadDataIfNeed( );
  28. void Restart( );
  29. void Pause( );
  30. void Continue( );
  31. void Stop();
  32. void OnEnd( BOOL bFinished );
  33. protected:
  34. SIMULATION_INFO * m_pSimulationInfo;
  35. CStrategy * m_pStrategy;
  36. HWND m_hMainWnd;
  37. BOOL m_bStopAndReset;
  38. };
  39. #endif // !defined(AFX_SIMULATION_H__52C07D2D_A43C_4021_B926_3A8FE98354AF__INCLUDED_)