diff -r 13d7c31c74e0 -r b183ec05bd8c devicediagnosticsfw/diagframework/inc/diagexecplanentry.h --- a/devicediagnosticsfw/diagframework/inc/diagexecplanentry.h Thu Aug 19 10:44:50 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,78 +0,0 @@ -/* -* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: Class declaration for CDiagExecPlanEntry -* -*/ - - -#ifndef DIAGEXECPLANENTRY_H -#define DIAGEXECPLANENTRY_H - - -// SYSTEM INCLUDE FILES -#include // TBool - -// FORWARD DECLARATION -class MDiagPlugin; - -/** -* Diagnostics Plug-in Execution Plan Entry. -* -* This class provides the interface for test execution plan entries. -* -* @since S60 v5.0 -* -*/ -class MDiagExecPlanEntry - { -public: // data types - /** - * Item execution state. - */ - enum TState - { - EStateQueued = 0, // Execution has not begun. - EStateInitDelay, // Waiting for initial delay timer to expire - EStateRunning, // RunTestL() is called. Waiting for completion. - EStateSuspended, // Execution is suspended - EStateStopped, // Plugin is stopped, but result not logged yet. - EStateCompleted // Result is logged - }; - -public: - /** - * Plugin associated with the entry - * @return Reference to the plugin. - */ - virtual const MDiagPlugin& Plugin() const = 0; - - /** - * Returns whether item is being executed to satisfy dependency or not. - * @return ETrue if item is being executed to satisfy dependency. - * EFalse if item is being executed explicitly. - */ - virtual TBool AsDependency() const = 0; - - /** - * Item State - * @return Current state of execution plan item - */ - virtual TState State() const = 0; - - }; - -#endif // DIAGEXECPLANENTRY_H - -// End of File -