/*
**  Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
**
**  File:	noaction.cpp
**
**  Author:  
**
**  Description:
**      Implementation of the training library "noaction" interface.
**
**  History:
*/
#include    "pch.h"
#include    "NoAction.h"

namespace Training
{
    //------------------------------------------------------------------------------
    // class methods
    //------------------------------------------------------------------------------
    /* void */  NoAction::~NoAction (void)
    {
    }

    //------------------------------------------------------------------------------
    void        NoAction::Execute (void)
    {
    }

    //------------------------------------------------------------------------------
}