GetAutopilotCondition.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. ** Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  3. **
  4. ** File: getautopilotcondition.h
  5. **
  6. ** Author:
  7. **
  8. ** Description:
  9. ** Header file for the training library "getautopilotcondition" interface.
  10. **
  11. ** History:
  12. */
  13. #ifndef _GET_AUTOPILOT_CONDITION_H_
  14. #define _GET_AUTOPILOT_CONDITION_H_
  15. #ifndef _CONDITION_H_
  16. #include "Condition.h"
  17. #endif //_CONDITION_H_
  18. namespace Training
  19. {
  20. //------------------------------------------------------------------------------
  21. // class definitions
  22. //------------------------------------------------------------------------------
  23. class GetAutopilotCondition : public Condition
  24. {
  25. public:
  26. /* void */ GetAutopilotCondition (const TRef<IshipIGC>& ship);
  27. virtual /* void */ ~GetAutopilotCondition (void);
  28. virtual bool Evaluate (void);
  29. protected:
  30. TRef<IshipIGC> m_ship;
  31. };
  32. //------------------------------------------------------------------------------
  33. }
  34. #endif //_GET_AUTOPILOT_CONDITION_H_