dbgagents/trkagent/toolsstarter/toolsstarterclient/inc/toolsclientutils.h
changeset 0 c6b0df440bee
equal deleted inserted replaced
-1:000000000000 0:c6b0df440bee
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef __toolsclientutils_h__
       
    19 #define __toolsclientutils_h__
       
    20 
       
    21 // System includes
       
    22 #include <e32base.h>
       
    23 
       
    24 
       
    25 //
       
    26 //  ToolsClientUtils (header)
       
    27 //
       
    28 class ToolsClientUtils
       
    29 {
       
    30 public:										// ENUMERATIONS
       
    31 	/** Panic numbers associated with the TRKTCBCLI panic category. */
       
    32 	enum TToolsClientPanic
       
    33 	{
       
    34 		EToolsClientPanicArgument			= 0,
       
    35 		EToolsClientPanicCancel			= 1,
       
    36 		EToolsClientPanicLast
       
    37 	};
       
    38 	/** Panic numbers associated with the TRKTCBCLIFAULT panic category. */
       
    39 	enum TToolsClientFault
       
    40 	{
       
    41 		EToolsClientFaultLogic					= 0,
       
    42 		EToolsClientFaultData					= 1,
       
    43 		EToolsClientFaultCouldNotLoadServer	= 2,
       
    44 		EToolsClientFaultDebugFuncError		= 3,
       
    45 		EToolsClientFaultLast
       
    46 	};
       
    47 
       
    48 public:
       
    49 
       
    50 	static void	Panic(TToolsClientPanic aPanic);
       
    51 
       
    52 	static void	Fault(TToolsClientFault aFault);
       
    53 
       
    54 	static TInt	StartToolsServer();
       
    55 };
       
    56 
       
    57 #endif //__toolsclientutils_h__
       
    58