#include #include #include "Person.h" using namespace std; int main(int argc, char *argv[]) { Person jz("jz", "box 352350"); Person ebeth("elizabeth", "seattle"); cout << jz.name() << " lives at " << jz.address() << endl; jz.move_to("u village"); cout << jz.name() << " lives at " << jz.address() << endl; cout << "jz is married to " << (jz.is_married() ? jz.spouse()->name() : "no one" ) << endl; jz.marry(ebeth); cout << "jz is married to " << (jz.is_married() ? jz.spouse()->name() : "no one") << endl; return EXIT_SUCCESS; }