#include #include "Car.h" Car::Car(string aType, string aColor, bool mine) { type = aType; color = aColor; mine = isMine; } string Car::getType() { return type; } string Car::getColor() { return color; } bool Car::isItMine() { return isMine; } void Car::setOwnership(bool owner) { isMine = owner; } void Car::setType(string make) { type = make; } void Car::setColor(string col) { color = col; }