⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 template_instantiations.cpp

📁 ACE自适配通信环境(ADAPTIVE Communication Environment)是可以自由使用、开放源码的面向对象(OO)框架(Framework)
💻 CPP
字号:
// Template_Instantiations.cpp,v 1.1 2005/11/18 22:41:18 shuston Exp// Note: this file is here only until support for explicit template// instantiations is removed from ACE, after ACE 5.5 is released.#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION) || \    defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)# include "ace/Null_Mutex.h"# include "ace/Refcounted_Auto_Ptr.h"# include "TransactionController.hpp"#endif#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)template class ACE_Refcounted_Auto_Ptr<ACE_TMCast::Message, ACE_Null_Mutex>;template class ACE_Refcounted_Auto_Ptr<ACE_TMCast::Recv, ACE_Null_Mutex>;template class ACE_Refcounted_Auto_Ptr<ACE_TMCast::Send, ACE_Null_Mutex>;#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)# pragma instantiate class ACE_Refcounted_Auto_Ptr<ACE_TMCast::Message, ACE_Null_Mutex># pragma instantiate class ACE_Refcounted_Auto_Ptr<ACE_TMCast::Recv, ACE_Null_Mutex># pragma instantiate class ACE_Refcounted_Auto_Ptr<ACE_TMCast::Send, ACE_Null_Mutex>#elif defined (__HP_aCC)// Make aC++ stop complaining about an empty translation unitstatic int shut_up_aCC = 0;#endif

⌨️ 快捷键说明

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