Lab7: Modeling Vehicles ####################### This is a group project! With any luck, you should have your highway set up and maybe have a single car wandering along the highway. In this lab, we will create a bunch of cars to start filling the highway up like the real I35 through Austin. We will build vehicles using a simple class, and manage the entire highway mess using a linked list. Here is the vwhicle class definition I used in the demo simulation. Feel free to modify it as you see fit: .. literalinclude:: vehicle.h :linenos: The code you see here should get you thinking about how we want our cars to behave. For now, just add this code and see if you can get a collection of cars moving along.