graphable_element.cpp

来自「这是广泛使用的通信开源项目,对于大容量,高并发的通讯要求完全能够胜任,他广泛可用」· C++ 代码 · 共 14 行

CPP
14
字号
// Graphable_Element.cpp,v 1.1 2004/01/01 21:01:00 shuston Exp

#include "Graphable_Element.h"

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
template class _List_base<Graphable_Element, allocator<Graphable_Element> >;
template void list<Graphable_Element, allocator<Graphable_Element> >::sort(void);
template void list<Graphable_Element, allocator<Graphable_Element> >::merge(list<Graphable_Element, allocator<Graphable_Element> > &);
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
pragma instantiate _List_base<Graphable_Element, allocator<Graphable_Element> >;
pragma instantiate list<Graphable_Element, allocator<Graphable_Element> >::sort(void);
pragma instantiate list<Graphable_Element, allocator<Graphable_Element> >::merge(list<Graphable_Element, allocator<Graphable_Element> > &);
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */

⌨️ 快捷键说明

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