Action.cpp 745 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. ** Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
  3. **
  4. ** File: action.cpp
  5. **
  6. ** Author:
  7. **
  8. ** Description:
  9. ** Implementation of the training library "action" interface.
  10. **
  11. ** History:
  12. */
  13. #include "pch.h"
  14. #include "Action.h"
  15. namespace Training
  16. {
  17. //------------------------------------------------------------------------------
  18. // class methods
  19. //------------------------------------------------------------------------------
  20. /* void */ Action::~Action (void)
  21. {
  22. }
  23. //------------------------------------------------------------------------------
  24. void Action::Stop (void)
  25. {
  26. }
  27. //------------------------------------------------------------------------------
  28. }