123456789101112131415161718192021222324252627282930313233343536373839 |
- /*
- ** Copyright (C) 1999 Microsoft Corporation. All Rights Reserved.
- **
- ** File: truecondition.cpp
- **
- ** Author:
- **
- ** Description:
- ** Implementation of the training library "truecondition" interface.
- **
- ** History:
- */
- #include "pch.h"
- #include "TrueCondition.h"
- namespace Training
- {
- //------------------------------------------------------------------------------
- // class methods
- //------------------------------------------------------------------------------
- /* void */ TrueCondition::~TrueCondition (void)
- {
- }
- //------------------------------------------------------------------------------
- bool TrueCondition::Start (void)
- {
- return true;
- }
- //------------------------------------------------------------------------------
- bool TrueCondition::Evaluate (void)
- {
- return true;
- }
- //------------------------------------------------------------------------------
- }
|