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

Object virtual copy constructor.

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

Implements csdbg::object.

Definition at line 179 of file stack.hpp.

180 {
181  return new stack(*this);
182 }
stack()
Object default constructor.
Definition: stack.hpp:133