📄 commondatadef.h
字号:
// CommonDataDef.h: interface for the CCommonDataDef class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_COMMONDATADEF_H__AD328658_5DAA_4F3F_9056_35B335A4E9F5__INCLUDED_)
#define AFX_COMMONDATADEF_H__AD328658_5DAA_4F3F_9056_35B335A4E9F5__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <Afxtempl.h>
class CINTStack
{
public:
CINTStack();
virtual ~CINTStack();
private:
int m_nDept;
CArray<int,int&> m_Stack;
public:
int GetDept();
void Push(int nV);
int Pop();
int GetTop();
void Clear();
BOOL IsEmpty();
};
#endif // !defined(AFX_COMMONDATADEF_H__AD328658_5DAA_4F3F_9056_35B335A4E9F5__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -