← index
Old.Learning.Projects/InheritVF/main.cpp
Source: Old.Learning.Projects/InheritVF/main.cpp
// 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 <iostream.h>

#include "example.h"


void main()
{
	Dog dog;

	dog.Bark();


}