#include #include "AnimalT.h" #include "DogT.h" using namespace std; int main() { cout << "There are " << DogT::DogCount() << " dogs." << endl; cout << "Declaring rover. " << endl; DogT rover("Rover"); cout << "There are " << DogT::DogCount() << " dogs." << endl; rover.Identify(); rover.MakeNoise(); return 0; }