/****************************************************************
driver.cpp
    test program for class animal
****************************************************************/

#include "animal.h"

void main() {
    animal dog("Woof!");

    cout << "The dog goes ";
    dog.talk();
    cout << endl;

    cout << "When the dog is mad, it goes ";
    dog.setSound("Grrrrr....");
    dog.talk();
    cout << endl;
}