/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: src/usr/diag/prdf/common/framework/resolution/iipAnalyzeChipResolution.h $ */ /* */ /* IBM CONFIDENTIAL */ /* */ /* COPYRIGHT International Business Machines Corp. 1997,2013 */ /* */ /* p1 */ /* */ /* Object Code Only (OCO) source materials */ /* Licensed Internal Code Source Materials */ /* IBM HostBoot Licensed Internal Code */ /* */ /* The source code for this program is not published or otherwise */ /* divested of its trade secrets, irrespective of what has been */ /* deposited with the U.S. Copyright Office. */ /* */ /* Origin: 30 */ /* */ /* IBM_PROLOG_END_TAG */ #ifndef iipAnalyzeChipResolution_h #define iipAnalyzeChipResolution_h // Class Description ************************************************* // // Name: AnalyzeChipResolution // Base class: Resolution // // Description: Resolution to call Analyze() on a CHIP_CLASS // Usage: // // End Class Description ********************************************* //-------------------------------------------------------------------- // Includes //-------------------------------------------------------------------- #if !defined(iipResolution_h) #include #endif namespace PRDF { //-------------------------------------------------------------------- // Forward References //-------------------------------------------------------------------- class CHIP_CLASS; /** @author Doug Gilbert */ class AnalyzeChipResolution: public Resolution { public: /** Constructor
*/ AnalyzeChipResolution(CHIP_CLASS & chip) : xChip(chip) {} /* Destructor
*/ // ~iipAnalyzeChipResolution(); /** Resolve service data by calling chip.Analyze()
*/ virtual int32_t Resolve(STEP_CODE_DATA_STRUCT & serviceData); private: // functions private: // Data /** @see CHIP_CLASS */ CHIP_CLASS & xChip; }; } // end namespace PRDF #endif /* iipAnalyzeChipResolution_h */ // Change Log ********************************************************* // // Flag Reason Vers Date Coder Description // ---- -------- ---- -------- ----- ------------------------------- // 05/05/98 DRG Initial Creation // // End Change Log *****************************************************