homescreensrv_plat/content_harvester_plugin_api/tsrc/inc/cpstestplugin.h
changeset 73 4bc7b118b3df
parent 66 32469d7d46ff
child 80 397d00875918
child 81 5ef31a21fdd5
equal deleted inserted replaced
66:32469d7d46ff 73:4bc7b118b3df
     1 /*
       
     2 * Copyright (c) 2007 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:  Action Handler test Plugin
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef C_CPS_TEST_PLUGIN_H
       
    20 #define C_CPS_TEST_PLUGIN_H
       
    21 
       
    22 #include <e32base.h>
       
    23 #include <contentharvesterplugin.h>
       
    24 
       
    25 
       
    26 // FORWARD DECLARATION
       
    27 
       
    28 /**
       
    29  *  Exemplary CPS Plugin.
       
    30  * 
       
    31  *  @lib exemplaryactionhandler
       
    32  *  @since S60 S60 v5.0
       
    33  */
       
    34 class CCPSTestPlugin : public CContentHarvesterPlugin
       
    35 	{
       
    36 
       
    37 public:
       
    38 
       
    39 	/**
       
    40 	 * Standard Symbian 2 phase constructor
       
    41 	 */
       
    42 	static CCPSTestPlugin* NewL();
       
    43 	
       
    44 	/**
       
    45 	 * Standard Symbian 2 phase constructor
       
    46 	 */
       
    47 	static CCPSTestPlugin* NewLC();
       
    48 
       
    49 	/**
       
    50 	 * Standard C++ destructor.
       
    51 	 */
       
    52 	~CCPSTestPlugin ();
       
    53 
       
    54 	/**
       
    55 	 * Executes provided action
       
    56 	 *
       
    57 	 * @return status code
       
    58 	 */
       
    59 	void UpdateL();
       
    60 private:
       
    61 	/**
       
    62 	 * Standard Symbian 2nd phase constructor.
       
    63 	 */
       
    64 	void ConstructL();
       
    65     
       
    66 public:
       
    67 
       
    68     TInt iInt;    
       
    69 
       
    70 	
       
    71 	};
       
    72 
       
    73 #endif /* C_CPS_TEST_PLUGIN_H */