12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #ifndef _CREATE_WAYPOINT_ACTION_H_
- #define _CREATE_WAYPOINT_ACTION_H_
- #ifndef _CREATE_OBJECT_ACTION_H_
- #include "CreateObjectAction.h"
- #endif
- namespace Training
- {
-
-
-
- class CreateWaypointAction : public CreateObjectAction
- {
- public:
- CreateWaypointAction (BuoyID buoyID, const Vector& position, SectorID sectorID);
- virtual ~CreateWaypointAction (void);
- virtual void Execute (void);
- protected:
- BuoyID m_buoyID;
- Vector m_position;
- SectorID m_sectorID;
- DataBuoyIGC m_buoyData;
- };
-
- }
- #endif
|