Example #1
0
int main()
{
	Romance novel;
	Book book;

	cout << novel.getDescription() << endl;
	cout << book.getDescription() << endl;
	cout << novel.getHeight() << endl;
	cout << book.getHeight() << endl;

	return 0;
}