From befd04312d8bdf2363921bf5ccb1393f5852a9a3 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 19 Jan 2018 14:31:20 -0500 Subject: Remove unneeded Doxygen directive --- smartptr.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'smartptr.h') diff --git a/smartptr.h b/smartptr.h index e5ee7705..783e2503 100644 --- a/smartptr.h +++ b/smartptr.h @@ -12,7 +12,6 @@ NAMESPACE_BEGIN(CryptoPP) -/// \class simple_ptr /// \brief Manages resources for a single object /// \tparam T class or type /// \details \p simple_ptr is used frequently in the library to manage resources and @@ -30,7 +29,6 @@ public: T *m_p; }; -/// \class member_ptr /// \brief Pointer that overloads operator -> /// \tparam T class or type /// \details member_ptr is used frequently in the library to avoid the issues related to @@ -73,7 +71,6 @@ template void member_ptr::reset(T *p) {delete m_p; m_p = p;} // ******************************************************** -/// \class value_ptr /// \brief Value pointer /// \tparam T class or type template class value_ptr : public member_ptr @@ -101,7 +98,6 @@ template value_ptr& value_ptr::operator=(const value_ptr& rhs // ******************************************************** -/// \class clonable_ptr /// \brief A pointer which can be copied and cloned /// \tparam T class or type /// \details \p T should adhere to the \p Clonable interface @@ -126,7 +122,6 @@ template clonable_ptr& clonable_ptr::operator=(const clonable_pt // ******************************************************** -/// \class counted_ptr /// \brief Reference counted pointer /// \tparam T class or type /// \details users should declare \p m_referenceCount as std::atomic @@ -220,7 +215,6 @@ template counted_ptr & counted_ptr::operator=(const counted_ptr< // ******************************************************** -/// \class vector_ptr /// \brief Manages resources for an array of objects /// \tparam T class or type /// \details \p vector_ptr is used frequently in the library to avoid large stack allocations, @@ -278,7 +272,6 @@ private: // ******************************************************** -/// \class vector_member_ptrs /// \brief Manages resources for an array of objects /// \tparam T class or type template class vector_member_ptrs -- cgit v1.2.1