/*
** 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)
{
}
//------------------------------------------------------------------------------
}