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

📄 code.h

📁 a basic interpreter free basic
💻 H
字号:
#pragma once
#include "stdafx.h"
/*
 * Class CCode - Class for the entire source listing
 */
class CCode
{
private:
	// Full source listing
	codelinelist_t *m_Code;

	// Iterator to current line of code
	codelinelist_t::iterator m_CodeIterator;

	// Current line number
	int m_LineNumber;

public:
	CCode(void);
	~CCode(void);
	// Add a line of code to the listing
	void Add(CCodeLine * CodeLine);
	// Find a line of code by line number
	CCodeLine * Find(unsigned int LineNumber);
	// Get the next code line
	CCodeLine * GetNext(void);
	// Get the current line number
	int GetCurrentLineNumber(void);
	// Reset the code iterator
	void Reset(void);
};

⌨️ 快捷键说明

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