// Example of how ot use mulitple inheritance // pure virtual functions (ADT's), function overloading/overriding // written by Jared Bruni // www.lostsidedead.com // master@lostsidedead.com #include #include "example.h" void main() { Dog dog; dog.Bark(); }