⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scan.h

📁 This program about compilers.This is the first section of compilers.Source routines after manual inp
💻 H
字号:
// Scan.h: interface for the Scan class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_SCAN_H__5D332763_31D4_4A6A_8001_1A64B522ACB6__INCLUDED_)
#define AFX_SCAN_H__5D332763_31D4_4A6A_8001_1A64B522ACB6__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class CScan
{
public:
	
	CScan();
	virtual ~CScan();
	
	char curchar;    //当前分析的字符
	void ReadLine(CString str); //获取当前分析的程序的行数
	BOOL GetChar(CString str,int index,char &curch);
	void scan(CString str);
	
};

#endif // !defined(AFX_SCAN_H__5D332763_31D4_4A6A_8001_1A64B522ACB6__INCLUDED_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -