#include <iostream.h>
#include "tq.h"
int main()
{
cout <<"Here is an example of inheritance...." << endl;
cout<<"Using Base class, Creating a Reptile...." << endl;
Reptile Dinosaur;
cout<<"Lets See how much the first Dinosaur Weighed and the Size..nn";
cout <<"Name: Dinosaurn";
cout <<"Size: " << Dinosaur.getHeight() << endl;
cout <<"Weight: " << Dinosaur.getWeight() << endl;
cout <<"nn";
cout <<"Using Derived class, Creating a Lizard...." << endl;
Lizard KamotoDragon;
cout <<"Lets find out the size, weight, and age of this lizard...nn";
cout <<"Name: Kamoto Dragonn";
cout <<"Size: " << KamotoDragon.getHeight() << endl;
cout <<"Weight: " << KamotoDragon.getWeight() << endl;
cout <<"Age: " << KamotoDragon.getAge() << endl;
return 0;
}