76 friend class Ptr<const T>;
104 template <
typename U>
145 template <
typename U>
223 explicit operator bool()
const;
244template <
typename T,
typename... Ts>
281template <
typename T1,
typename T2>
284template <
typename T1,
typename T2>
287template <
typename T1,
typename T2>
296template <
typename T1,
typename T2>
297std::enable_if_t<std::is_same_v<T2, std::nullptr_t>,
bool>
operator==(
const Ptr<T1>& lhs, T2 rhs);
320template <
typename T1,
typename T2>
323template <
typename T1,
typename T2>
326template <
typename T1,
typename T2>
335template <
typename T1,
typename T2>
336std::enable_if_t<std::is_same_v<T2, std::nullptr_t>,
bool>
operator!=(
const Ptr<T1>& lhs, T2 rhs);
371template <
typename T1,
typename T2>
408struct EventMemberImplObjTraits;
452template <
typename T,
typename... Ts>
456 static_assert(!std::is_base_of_v<Object, T>,
457 "Use CreateObject() instead of Create() for Object subclasses");
458 return Ptr<T>(
new T(std::forward<Ts>(args)...),
false);
484template <
typename T1,
typename T2>
491template <
typename T1,
typename T2>
498template <
typename T1,
typename T2>
505template <
typename T1,
typename T2>
512template <
typename T1,
typename T2>
519template <
typename T1,
typename T2>
526template <
typename T1,
typename T2>
527std::enable_if_t<std::is_same_v<T2, std::nullptr_t>,
bool>
533template <
typename T1,
typename T2>
534std::enable_if_t<std::is_same_v<T2, std::nullptr_t>,
bool>
591template <
typename T1,
typename T2>
603template <
typename T1,
typename T2>
610template <
typename T1,
typename T2>
653 if (
m_ptr !=
nullptr)
705 if (
m_ptr !=
nullptr)
719 if (
m_ptr !=
nullptr)
763 return m_ptr !=
nullptr;
786struct std::hash<
ns3::Ptr<T>>
NS_ASSERT() and NS_ASSERT_MSG() macro definitions.
A base class which provides memory management and object aggregation.
Smart pointer class similar to boost::intrusive_ptr.
Ptr(T *ptr)
Create a smart pointer which points to the object pointed to by the input raw pointer ptr.
Ptr(const Ptr &o)
Copy by referencing the same underlying object.
T & operator*()
A dereference.
Ptr()
Create an empty smart pointer.
void Acquire() const
Mark this as a a reference by incrementing the reference count.
friend U * PeekPointer(const Ptr< U > &p)
Get a temporary pointer to the underlying object.
Ptr(const Ptr< U > &o)
Copy, removing const qualifier.
T * operator->()
An lvalue member access.
T & operator*() const
A const dereference.
friend U * GetPointer(const Ptr< U > &p)
Get a permanent pointer to the underlying object.
Ptr< T > & operator=(const Ptr &o)
Assignment operator by referencing the same underlying object.
Ptr(T *ptr, bool ref)
Create a smart pointer which points to the object pointed to by the input raw pointer ptr.
T * operator->() const
An rvalue member access.
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
bool operator>=(const int64x64_t &lhs, const int64x64_t &rhs)
Greater or equal operator.
bool operator<=(const int64x64_t &lhs, const int64x64_t &rhs)
Less or equal operator.
bool operator>(const Length &left, const Length &right)
Check if left has a value greater than right.
Ptr< T > Create(Ts &&... args)
Create class instances by constructors with varying numbers of arguments and return them by Ptr.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
U * PeekPointer(const Ptr< U > &p)
bool operator!=(Callback< R, Args... > a, Callback< R, Args... > b)
Inequality test.
bool operator==(const EventId &a, const EventId &b)
std::ostream & operator<<(std::ostream &os, const Angles &a)
Ptr< T1 > const_pointer_cast(const Ptr< T2 > &p)
Return a copy of p with its stored pointer const casted from T2 to T1.
Ptr< T1 > DynamicCast(const Ptr< T2 > &p)
Cast a Ptr.
bool operator<(const EventId &a, const EventId &b)
Ptr< T > Copy(Ptr< T > object)
Return a deep copy of a Ptr.
Ptr< T1 > StaticCast(const Ptr< T2 > &p)
Cast a Ptr.
U * GetPointer(const Ptr< U > &p)
Ptr< T1 > ConstCast(const Ptr< T2 > &p)
Cast a Ptr.
static T & GetReference(const Ptr< T > p)
static T & GetReference(Ptr< T > p)
Helper for the MakeEvent functions which take a class method.
std::size_t operator()(ns3::Ptr< T > p) const
The functor.