Hi Brian,
Hi all -I have a case where I have a largeish inheritance hierarchy. I will be calling an initialization function on all objects before using them in some fashion.Basically what I need to happen is when I call init() on a Foo the following would occur:void Foo::init() {super::init();// now with the knowledge that anything I inherited is set up, I can set myself up...}