singleton.h

来自「loki 程序库」· C头文件 代码 · 共 27 行

H
27
字号
/////////////////////////////////
// Generated header: Singleton.h
// Forwards to the appropriate code
// that works on the detected compiler
// Generated on Mon Sep 30 23:14:48 2002
/////////////////////////////////

#ifdef LOKI_USE_REFERENCE
#	include "Reference/Singleton.h"
#else
#	if (__INTEL_COMPILER)
#		include "Reference/Singleton.h"
#	elif (__MWERKS__)
#		include "Reference/Singleton.h"
#	elif (__BORLANDC__ >= 0x560)
#		include "Borland/Singleton.h"
#	elif (_MSC_VER >= 1301)
#		include "Reference/Singleton.h"
#	elif (_MSC_VER >= 1300)
#		include "MSVC/1300/Singleton.h"
#	elif (_MSC_VER >= 1200)
#		include "MSVC/1200/Singleton.h"
#	else
#		include "Reference/Singleton.h"
#	endif
#endif

⌨️ 快捷键说明

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