noaction.h 830 B

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