📄 managernode.h
字号:
// ManagerNode.h: interface for the CManagerNode class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_MANAGERNODE_H__9DE5C50E_8188_44E0_8EED_D0345C9F6AE2__INCLUDED_)
#define AFX_MANAGERNODE_H__9DE5C50E_8188_44E0_8EED_D0345C9F6AE2__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CManagerNode
{
public:
CManagerNode(CString ManagerName,CString Pwd,CManagerNode *next=NULL)
{
this->m_ManagerName = ManagerName;
this->m_password = Pwd;
this->next = next;
}
CManagerNode(CManagerNode* next = NULL )
{
this->next = next;
}
virtual ~CManagerNode();
CString m_ManagerName;
CString m_password;
CManagerNode* next;//pointer to next manager
};
#endif // !defined(AFX_MANAGERNODE_H__9DE5C50E_8188_44E0_8EED_D0345C9F6AE2__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -