📄 symbolentry.h
字号:
// SymbolEntry.h: interface for the SymbolEntry class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_SYMBOLENTRY_H__A231FFAB_5A7D_48A0_8C11_F52721EA1653__INCLUDED_)
#define AFX_SYMBOLENTRY_H__A231FFAB_5A7D_48A0_8C11_F52721EA1653__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <string>
using namespace std;
class SymbolEntry
{
public:
string lexeme;
int token_type;
SymbolEntry(const string& alexeme, int atoken_type);
bool operator!=(const SymbolEntry& se) const;
};
#endif // !defined(AFX_SYMBOLENTRY_H__A231FFAB_5A7D_48A0_8C11_F52721EA1653__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -