contentstorage/extinc/cahandlerplugin.h
changeset 61 8e5041d13c84
parent 60 f62f87b200ec
child 66 32469d7d46ff
equal deleted inserted replaced
60:f62f87b200ec 61:8e5041d13c84
     1 /*
       
     2  * Copyright (c) 2008 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:  ?Description
       
    15  *
       
    16  */
       
    17 
       
    18 #ifndef C_CAHANDLERPLUGIN_H
       
    19 #define C_CAHANDLERPLUGIN_H
       
    20 
       
    21 #include <e32base.h>
       
    22 #include <ecom/ecom.h>
       
    23 
       
    24 #include "cahandler.h"
       
    25 
       
    26 /**
       
    27  *  ?one_line_short_description
       
    28  *  ?more_complete_description
       
    29  *
       
    30  *  @code
       
    31  *   ?good_class_usage_example(s)
       
    32  *  @endcode
       
    33  *
       
    34  *  @lib ?library
       
    35  *  @since S60 ?S60_version *** for example, S60 v3.0
       
    36  */
       
    37 class CCaHandlerPlugin: public CCaHandler
       
    38     {
       
    39 
       
    40 public:
       
    41 
       
    42     /**
       
    43      * Two-phased constructor.
       
    44      * @param aImplementationUid  implementation uid
       
    45      * @return pointer to a newly created instance of CCaHandlerPlugin.
       
    46      */
       
    47     inline static CCaHandlerPlugin* NewL( TUid aImplementationUid );
       
    48 
       
    49     /**
       
    50      * Constructor.
       
    51      */
       
    52     inline CCaHandlerPlugin();
       
    53 
       
    54     /**
       
    55      * Destructor.
       
    56      */
       
    57     inline virtual ~CCaHandlerPlugin();
       
    58 
       
    59 private:
       
    60 
       
    61     /**
       
    62      * Destructor ID key.
       
    63      */
       
    64     TUid iDtor_ID_Key;
       
    65 
       
    66     };
       
    67 
       
    68 #include "cahandlerplugin.inl"
       
    69 
       
    70 #endif // C_CAHANDLERPLUGIN_H