1
0
Fork 0

setState doesn't return a value

This commit is contained in:
fredb 2010-04-25 16:11:30 +00:00 committed by Tim Moore
parent e004e43553
commit 1df4cd3f8c

View file

@ -129,7 +129,7 @@ public:
void setLeg(int lg) { leg = lg;};
int getId() { return id;};
int getState() { return state;};
int setState(int s) { state = s;}
void setState(int s) { state = s;}
FGATCInstruction getInstruction() { return instruction;};
bool hasInstruction() { return instruction.hasInstruction(); };
void setPositionAndHeading(double lat, double lon, double hdg, double spd, double alt);