?? basicincludes.h
字號:
/******************
BasicIncludes.h
******************/
/*!\file BasicIncludes.h
* \brief Contains some Basic Include-files used almost everywhere
* (like iostream, assert, stdlib, etc.).
*/
#ifndef __INC_BasicIncludes_h__
#define __INC_BasicIncludes_h__
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <assert.h>
#include <iostream>
#include <fstream>
// for MSVC++ 6.0
/*
namespace std
{
typedef unsigned int size_t ;
}
*/
#endif /* __INC_BasicIncludes_h__ */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -