Action.h 793 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. ** Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  3. **
  4. ** File: action.h
  5. **
  6. ** Author:
  7. **
  8. ** Description:
  9. ** Header file for the training library "action" interface.
  10. **
  11. ** History:
  12. */
  13. #ifndef _ACTION_H_
  14. #define _ACTION_H_
  15. namespace Training
  16. {
  17. //------------------------------------------------------------------------------
  18. // class definitions
  19. //------------------------------------------------------------------------------
  20. class Action
  21. {
  22. public:
  23. virtual /* void */ ~Action (void);
  24. virtual void Execute (void) = 0;
  25. virtual void Stop (void);
  26. };
  27. //------------------------------------------------------------------------------
  28. }
  29. #endif //_ACTION_H_