INTERFACE: #include IMPLEMENTATION: template inline Child_ptr downcast(Src_ptr p) { Child_ptr c = dynamic_cast(p); assert (c); return c; }