imsrv_plat/ximp_im_data_model_api/inc/imoperationfactoryimp.h
branchRCL_3
changeset 22 113b91e0a2ad
parent 21 cfd5c2994f10
child 23 482d5cf4c4b4
equal deleted inserted replaced
21:cfd5c2994f10 22:113b91e0a2ad
     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:  Interface for Search info object.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef IMCOPERATIONFACTORYIMP_H
       
    20 #define IMCOPERATIONFACTORYIMP_H
       
    21 
       
    22 
       
    23 #include <e32base.h>
       
    24 class CXIMPOperationBase;
       
    25 
       
    26 #include "ximpoperationfactory.h"
       
    27 
       
    28 /**
       
    29  * Operation factory
       
    30  * Class is owned by and handled as singleton by CXIMPGlobals.
       
    31  *
       
    32  * @lib imoperation.dll
       
    33  * @since S60 v4.0
       
    34  */
       
    35 class CImOperationFactory : public CBase, 
       
    36                                   public MXIMPOperationFactory
       
    37     {
       
    38     public: // Construction and desctruction
       
    39 
       
    40         IMPORT_C static CImOperationFactory* NewL();
       
    41 
       
    42         ~CImOperationFactory();
       
    43 
       
    44     private: // Construction
       
    45 
       
    46         /**
       
    47          * C++ default constructor.
       
    48          */
       
    49         CImOperationFactory();
       
    50 
       
    51         /**
       
    52          * Symbian 2nd phase constructor
       
    53          */
       
    54         void ConstructL();
       
    55 
       
    56 
       
    57     public: // From MXIMPOperationFactory
       
    58 
       
    59 		/**
       
    60 		 * @see MXIMPOperationFactory
       
    61 	 	 */
       
    62 		CXIMPOperationBase* CreateOperationL( TInt aOperation );
       
    63 
       
    64     private:    // Data
       
    65 
       
    66     };
       
    67 
       
    68 #endif      // IMCOPERATIONFACTORYIMP_H
       
    69