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::setActor(Codethink::prjact::Actor *actor)
0017 {
0018     m_actor = actor;
0019 }
0020 
0021 void Codethink::prjvhc::Vehicle::drive_impl()
0022 {
0023     int e = 0;
0024     for(int i = 0; i < 10; i++) {
0025         e = i;
0026     }
0027     e = e + 0;
0028     (void) e;
0029 }
0030