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

📄 stdafx.h

📁 a basic interpreter free basic
💻 H
字号:
// stdafx.h : include file for standard system include files,
// or project specific include files that are used frequently, but
// are changed infrequently
//

#pragma once

#ifndef _WIN32_WINNT		// Allow use of features specific to Windows XP or later.                   
#define _WIN32_WINNT 0x0501	// Change this to the appropriate value to target other versions of Windows.
#endif						

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <time.h>
#include <ctype.h>
#include <windows.h>
#include <iostream>
#include <fstream>
#include <string>
#include <sstream>
#include <list>
#include <stack>
#include <queue>

using namespace std;

#include "Symbol.h"
#include "SymbolTable.h"
#include "Builtins.h"
#include "Function.h"
#include "FunctionTable.h"
#include "CodeLine.h"
#include "Code.h"
#include "Token.h"
#include "Context.h"
#include "LexicalAnalyzer.h"
#include "SyntaxAnalyzer.h"
#include "RunTime.h"
#include "Common.h"

⌨️ 快捷键说明

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