📄 myobject.cpp
字号:
// MyObject.cpp: implementation of the MyObject class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
//#include "8051class.h"
#include "MyObject.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
MyObject::MyObject()
{
}
MyObject::~MyObject()
{
}
int MyObject::Serial_Char_Event_CallBack(char ch)
{
return 0;
}
int MyObject::Serial_String_Event_CallBack(TCHAR *str)
{
return 0;
}
int MyObject::WndCommand(UINT uid)
{
return 0;
}
int MyObject::SetpView(UINT p)
{
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -