Post Made Community Wiki by Community
show/hide this revision's text 2 few new ideas

Modern style is to define IPet and PetBase.

The advantage of the interface is that other code can use it without any ties whatsoever to other executable code. Completely "clean." Also interfaces can be mixed.

But base classes are useful for simple implementations and useful common utilities. So provide an abstract base class as well for folks who will find it usefulto save time and code.

show/hide this revision's text 1

Modern style is to define IPet and PetBase.

The advantage of the interface is that other code can use it without any ties whatsoever to other executable code. Completely "clean."

But base classes are useful for simple implementations and useful utilities. So provide an abstract base class as well for folks who will find it useful.