📄 historyobj.h
字号:
// HistoryObj.h: interface for the CHistoryObj class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_HISTORYOBJ_H__2B7964ED_DAD3_435F_993D_0859AA0BCCB3__INCLUDED_)
#define AFX_HISTORYOBJ_H__2B7964ED_DAD3_435F_993D_0859AA0BCCB3__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CHistoryObj
{
public:
CHistoryObj(const CString& strTitle, const CString& strURL, const UINT uiCommand);
virtual ~CHistoryObj();
LPCTSTR GetTitle () const
{
return m_strTitle;
}
LPCTSTR GetURL () const
{
return m_strURL;
}
UINT GetCommand () const
{
return m_uiCommand;
}
protected:
const CString m_strTitle;
const CString m_strURL;
const UINT m_uiCommand;
};
#endif // !defined(AFX_HISTORYOBJ_H__2B7964ED_DAD3_435F_993D_0859AA0BCCB3__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -