homescreensrv_plat/action_handler_plugin_api/tsrc/inc/ahtestplugin.h
changeset 93 82b66994846c
parent 92 782e3408c2ab
child 94 dbb8300717f7
--- a/homescreensrv_plat/action_handler_plugin_api/tsrc/inc/ahtestplugin.h	Fri Apr 16 14:45:49 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,83 +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:  Action Handler test Plugin
- *
-*/
-
-
-#ifndef C_AH_TEST_PLUGIN_H
-#define C_AH_TEST_PLUGIN_H
-
-#include <e32base.h>
-#include <ahplugin.h>
-
-
-// FORWARD DECLARATION
-class CLiwMap;
-class TLiwVariant;
-class CEikonEnv;
-
-
-/**
- *  Exemplary Action Handler Plugin.
- *  Class extends the CAHPlugin in order to be able to be used
- *  as a plugin for action handler.
- * 
- *  @lib exemplaryactionhandler
- *  @since S60 S60 v5.0
- */
-class CActionHandlerTestPlugin : public CAHPlugin
-	{
-
-public:
-
-	/**
-	 * Standard Symbian 2 phase constructor
-	 */
-	static CActionHandlerTestPlugin* NewL();
-	
-	/**
-	 * Standard Symbian 2 phase constructor
-	 */
-	static CActionHandlerTestPlugin* NewLC();
-
-	/**
-	 * Standard C++ destructor.
-	 */
-	~CActionHandlerTestPlugin ();
-
-	/**
-	 * Executes provided action
-	 *
-	 * @return status code
-	 */
-	TInt ExecuteActionL( const CLiwMap* aMap );
-private:
-	/**
-	 * Standard Symbian 2nd phase constructor.
-	 */
-	void ConstructL();
-
-private:
-
-	/**
-	 * Extract Variant
-	 */
-	TInt ExtractVariantL( const CLiwMap* aMap,
-							TLiwVariant& aVariant,
-							const TDesC8& aMapName );
-	
-	};
-
-#endif /* C_AH_TEST_PLUGIN_H */