AutoCar
v1.0.0
Main Page
Classes
Files
File List
shooting_mode.h
1
#ifndef SHOOTINGMODE_H
2
#define SHOOTINGMODE_H
3
#include "mission_mode.h"
4
5
class
LogicalCore
;
6
class
ShootingMode
:
public
MissionMode
7
{
8
public
:
9
ShootingMode
(
LogicalCore
*
logical_core
);
10
void
obtainedGoalState();
11
void
busyState();
12
void
idleState();
13
private
:
14
LogicalCore
*logical_core_;
15
};
16
17
#endif // SHOOTINGMODE_H
LogicalCore
Definition:
logical_core.h:26
logical_core
Definition:
SetGoal.h:15
MissionMode
There are three missions of the autocar: point state, patrol state, shooting state. and the autocar also have three state: OBTAINED_GOAL_STATE, BUSY_STATE, IDLE_STATE.
Definition:
mission_mode.h:9
ShootingMode
Definition:
shooting_mode.h:6
src
logical_core
src
shooting_mode.h
Generated by
1.8.11