#include #include class Car { string type; string color; bool isMine; public: string getType(); string getColor(); bool isItMine(); void setOwnership(bool possession); void setType(string theType); void setColor(string theColor); Car(string theType, string theColor, bool possession); };