Abraxas/Meyers: Effective C++ Home Table of Contents
templateclass auto_ptr {
};
class Investment {
};
Investment * create();
Function Name: f()
void f() {auto_ptrpInv(create()); Investment *pInv = create();
}
Abraxas/Meyers: Effective C++ Home Table of Contents