12345678910111213141516171819202122232425262728293031 |
- /*
- ** Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
- **
- ** File: action.cpp
- **
- ** Author:
- **
- ** Description:
- ** Implementation of the training library "action" interface.
- **
- ** History:
- */
- #include "pch.h"
- #include "Action.h"
- namespace Training
- {
- //------------------------------------------------------------------------------
- // class methods
- //------------------------------------------------------------------------------
- /* void */ Action::~Action (void)
- {
- }
- //------------------------------------------------------------------------------
- void Action::Stop (void)
- {
- }
- //------------------------------------------------------------------------------
- }
|