a
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
// scheduler.h: interface for the CScheduler class.
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
|
||||
#if !defined(AFX_SCHEDULER_H__A2A0BA12_0524_4F0E_8B3B_5FD220F95704__INCLUDED_)
|
||||
#define AFX_SCHEDULER_H__A2A0BA12_0524_4F0E_8B3B_5FD220F95704__INCLUDED_
|
||||
|
||||
#if _MSC_VER > 1000
|
||||
#pragma once
|
||||
#endif // _MSC_VER > 1000
|
||||
|
||||
class CMainFrame;
|
||||
|
||||
class CScheduler
|
||||
{
|
||||
public:
|
||||
|
||||
bool Execute(UINT uStyle, UINT uState); //执行(uStyle---in:类型,uState)
|
||||
CScheduler(CMainFrame* mainFrm);
|
||||
virtual ~CScheduler();
|
||||
|
||||
private:
|
||||
void Restore(void); //恢复
|
||||
void GetToolBarFromMainFrm(); //从主界面取工具条
|
||||
bool GetMenuFromMainFrm(); //从主界面取菜单
|
||||
CMainFrame* m_pMainFrm;
|
||||
CMenu* m_pMenu;
|
||||
CToolBar* m_pToolBar;
|
||||
};
|
||||
|
||||
#endif // !defined(AFX_SCHEDULER_H__A2A0BA12_0524_4F0E_8B3B_5FD220F95704__INCLUDED_)
|
||||
Reference in New Issue
Block a user