stdafx.h
来自「a basic interpreter free basic」· C头文件 代码 · 共 42 行
H
42 行
// 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 + =
减小字号Ctrl + -
显示快捷键?