mainwin.h

来自「VC++串口通信设。本书详细说明讲解了在VC++环境下编写串口通信得过程。值得一」· C头文件 代码 · 共 32 行

H
32
字号
#ifndef MAINWIN_H
#define MAINWIN_H

#include "StdInc.h"
#include "IRobot.h"
#include "IDrawbl.h"
#include "INoise.h"


class CMainWindow : public CFrameWnd
{
public:

	CMainWindow();
   virtual ~CMainWindow();

protected:

   afx_msg int  OnCreate(LPCREATESTRUCT);
   afx_msg void OnPaint(); 
	afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);

	DECLARE_MESSAGE_MAP()

private:
   ISimpleDrawable  *m_pISimpleDrawable;
   IRobot           *m_pIRobot;
   INoise           *m_pINoise;
};

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?