libcsdbg  1.28
C++ exception (and generic) stack trace debug library
template<class T >
node< T > * csdbg::node< T >::clone ( ) const
inlineprotectedvirtual

Object virtual copy constructor.

Returns
the object copy (heap allocated)
Exceptions
std::bad_alloc

Implements csdbg::object.

Definition at line 142 of file node.hpp.

143 {
144  return new node(*this);
145 }
node(T *)
Object constructor.
Definition: node.hpp:92