📄 reslistnode.cpp
字号:
// ResListNode.cpp
//
// Author: Lea Hayes
// Date Created: 10/03/2006
// Date Modified: 10/03/2006
#include "Common.h"
#include "ResListNode.h"
using namespace Resources;
// ResListNode - Construction and destruction.
ResListNode::ResListNode(LPRESOURCE pRes /*=NULL*/)
: m_pPrev(NULL)
, m_pNext(NULL)
, m_pRes(pRes)
, m_nIndex(NULL)
{
}
ResListNode::~ResListNode()
{
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -