📄 ogrestdheaders.h
字号:
#ifndef __StdHeaders_H__
#define __StdHeaders_H__
#ifdef __BORLANDC__
#define __STD_ALGORITHM
#endif
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <cstring>
#include <cstdarg>
#include <cmath>
// STL containers
#include <vector>
#include <map>
#include <string>
#include <set>
#include <list>
#include <deque>
#include <queue>
// Note - not in the original STL, but exists in SGI STL and STLport
#ifdef EXT_HASH
# include <ext/hash_map>
# include <ext/hash_set>
#else
# include <hash_set>
# include <hash_map>
#endif
// STL algorithms & functions
#include <algorithm>
#include <functional>
#include <limits>
// C++ Stream stuff
#include <fstream>
#include <iostream>
#include <iomanip>
#include <sstream>
#ifdef __BORLANDC__
namespace Ogre
{
using namespace std;
}
#endif
extern "C" {
# include <sys/types.h>
# include <sys/stat.h>
}
#if OGRE_PLATFORM == PLATFORM_WIN32
#undef min
#undef max
#endif
#if OGRE_PLATFORM == PLATFORM_LINUX
extern "C" {
# include <unistd.h>
# include <dlfcn.h>
}
#endif
#if OGRE_PLATFORM == PLATFORM_APPLE
extern "C" {
# include <unistd.h>
# include <sys/param.h>
# include <CoreFoundation/CoreFoundation.h>
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -