"Conley, John H" <JohnH.Conley@xxxxxxxxx> writes: > class A : public parentA { > class A: public parentB { This is a C++ ODR violation. Your program is undefined. There is no reliable way to make this work. I recommend putting one or both classes in a namespace. Ian