File indexing completed on 2024-11-24 05:05:28

0001 #include <prjvhc_vehicle.h>
0002 
0003 Codethink::prjvhc::Vehicle::Vehicle()
0004 {
0005 }
0006 
0007 Codethink::prjvhc::Vehicle::~Vehicle()
0008 {
0009 }
0010 
0011 void Codethink::prjvhc::Vehicle::drive()
0012 {
0013     drive_impl();
0014 }
0015 
0016 void Codethink::prjvhc::Vehicle::drive_impl()
0017 {
0018     int e = 0;
0019     for(int i = 0; i < 10; i++) {
0020         e = i;
0021     }
0022     e = e + 0;
0023     (void) e;
0024 }
0025