myclass.cpp
来自「几个关于网络编程的程序」· C++ 代码 · 共 27 行
CPP
27 行
// Myclass.cpp : Implementation of CMyclass
#include "stdafx.h"
#include "FirstATL.h"
#include "Myclass.h"
/////////////////////////////////////////////////////////////////////////////
// CMyclass
STDMETHODIMP CMyclass::SayHello()
{
AFX_MANAGE_STATE(AfxGetStaticModuleState())
AfxMessageBox("Welcom to use my class");
return S_OK;
}
STDMETHODIMP CMyclass::SayGoodbye()
{
AFX_MANAGE_STATE(AfxGetStaticModuleState())
// TODO: Add your implementation code here
return S_OK;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?