#include "Car.h" int main() { Car *mycar = new Car("Chevy", "blue", true); cout << "Attributes of my car: " << endl << "Make: " << mycar->getType() << endl << "Color: " << mycar->getColor() << endl << "Is it mine? " << mycar->isItMine() << endl << " (a 1 indicates it is, since 1 means true.)" << endl << endl; mycar->setOwnership(false); mycar->setType("Ford"); mycar->setColor("red"); cout << "Attributes of my car: " << endl << "Make: " << mycar->getType() << endl << "Color: " << mycar->getColor() << endl; if(mycar->isItMine()) { cout << "It's my car." << endl; } else { cout << "It's not my car." << endl; } return 0; }