⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainwin.h

📁 VC++串口通信设。本书详细说明讲解了在VC++环境下编写串口通信得过程。值得一看
💻 H
字号:
#ifndef MAINWIN_H
#define MAINWIN_H

#include "StdInc.h"
#include "IRobot.h"
#include "IDrawbl.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;
};

#endif

⌨️ 快捷键说明

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