dbgagents/trkagent/trksrvclient/trksrvclientutils.h
changeset 0 c6b0df440bee
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dbgagents/trkagent/trksrvclient/trksrvclientutils.h	Tue Mar 02 10:33:16 2010 +0530
@@ -0,0 +1,58 @@
+/*
+* Copyright (c) 2009 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: 
+*
+*/
+
+#ifndef __TrkSrvClientUtils_H__
+#define __TrkSrvClientUtils_H__
+
+// System includes
+#include <e32base.h>
+
+
+//
+//  TrkSrvClientUtils (header)
+//
+class TrkSrvClientUtils
+{
+public:										// ENUMERATIONS
+	/** Panic numbers associated with the TRKSRVCLI panic category. */
+	enum TTrkSrvClientPanic
+	{
+		ETrkSrvClientPanicArgument			= 0,
+		ETrkSrvClientPanicCancel			= 1,
+		ETrkSrvClientPanicLast
+	};
+	/** Panic numbers associated with the TRKSRVCLIFAULT panic category. */
+	enum TTrkSrvClientFault
+	{
+		ETrkSrvClientFaultLogic					= 0,
+		ETrkSrvClientFaultData					= 1,
+		ETrkSrvClientFaultCouldNotLoadServer	= 2,
+		ETrkSrvClientFaultDebugFuncError		= 3,
+		ETrkSrvClientFaultLast
+	};
+
+public:
+
+	static void	Panic(TTrkSrvClientPanic aPanic);
+
+	static void	Fault(TTrkSrvClientFault aFault);
+
+	static TInt	StartTrkServer();
+};
+
+#endif //__TrkTcbClientUtils_H__
+