Site hosted by Angelfire.com: Build your free website today!
// Dog.cpp
/*	Crystal Torres
	Section 1MA3C
*/
// -----------------------------

#include "Dog.h"

Dog::Dog ():Animal() {
	walk = 0;
}

Dog::Dog(string n,int w,int wa):Animal(n,w) {
	walk = wa;
}

AnimalInfo Dog::getInfo () const {
	AnimalInfo info(weight,name,"Dog",3,3);
	return info;
}