📄 symbolrecord.h
字号:
// SymbolRecord.h: interface for the SymbolRecord class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SYMBOLRECORD_H__39EE2514_3C0B_45AB_92CA_6A639EE936AF__INCLUDED_)
#define AFX_SYMBOLRECORD_H__39EE2514_3C0B_45AB_92CA_6A639EE936AF__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <vector>
using namespace std;
class SymbolRecord
{
public:
CString TokenString; //符号字串值
int TokenType; //符号类型
int Location; //分配的内存地址
vector<int> Lines; //符号所有被引用的行号
void* m_pValue; //变量的值指针通用为void型
SymbolRecord();
virtual ~SymbolRecord();
};
#endif // !defined(AFX_SYMBOLRECORD_H__39EE2514_3C0B_45AB_92CA_6A639EE936AF__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -