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

Object virtual copy constructor.

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

Implements csdbg::object.

Reimplemented in csdbg::dictionary.

Definition at line 264 of file chain.hpp.

265 {
266  return new chain(*this);
267 }
chain()
Object default constructor.
Definition: chain.hpp:216