shared_ptr_docstub.h

来自「gnuradio软件无线电源程序.现在的手机多基于软件无线电」· C头文件 代码 · 共 25 行

H
25
字号
namespace boost{  /*!   * \brief shared_ptr documentation stub   *   * \warning   * This isn't the real shared_ptr template.  It's just enough to get doxygen   * to draw pretty collaboration diagrams.   *   * An enhanced relative of scoped_ptr with reference counted copy semantics.   * The object pointed to is deleted when the last shared_ptr pointing to it   * is destroyed or reset.   */template<class T> class shared_ptr{public:    T * px;                     // contained pointer};  // shared_ptr} // namespace boost

⌨️ 快捷键说明

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