smartptr.h

来自「loki库的源代码。loki库是以模板技术和面向对象技术为基础的c++类库。」· C头文件 代码 · 共 27 行

H
27
字号
////////////////////////////////
// Generated header: SmartPtr.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 "../../loki/SmartPtr.h"
#else
#	if (__INTEL_COMPILER)
#		include "../../loki/SmartPtr.h"
#	elif (__MWERKS__)
#		include "../../loki/SmartPtr.h"
#	elif (__BORLANDC__ >= 0x560)
#		include "../Borland/SmartPtr.h"
#	elif (_MSC_VER >= 1301)
#		include "../../loki/SmartPtr.h"
#	elif (_MSC_VER >= 1300)
#		include "../MSVC/1300/SmartPtr.h"
#	elif (_MSC_VER >= 1200)
#		include "../MSVC/1200/SmartPtr.h"
#	else
#		include "../../loki/SmartPtr.h"
#	endif
#endif

⌨️ 快捷键说明

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