← index
Old.Learning.Projects/Inheritance/Example.cpp
Source: Old.Learning.Projects/Inheritance/Example.cpp
// example.cpp

// written by jared bruni

// www.lostsidedead.com


#include "example.h"


void ImporantFunctions::func1()
{
	cout << " something important " << endl;
}

void ImporantFunctions::func2()
{
	cout << " something important #2 " << endl;
}