phonebookui/phonebookservices/inc/cntserviceviewfactory.h
branchRCL_3
changeset 19 5b6f26637ad3
equal deleted inserted replaced
18:d4f567ce2e7c 19:5b6f26637ad3
       
     1 /*
       
     2 * Copyright (c) 2009 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef CNTSERVICEVIEWFACTORY_H_
       
    19 #define CNTSERVICEVIEWFACTORY_H_
       
    20 
       
    21 #include "cntabstractviewfactory.h"
       
    22 
       
    23 class CntAbstractView;
       
    24 class CntAbstractServiceProvider;
       
    25 class CntExtensionManager;
       
    26 
       
    27 class CntServiceViewFactory : public CntDefaultViewFactory
       
    28 {
       
    29 public:
       
    30     CntServiceViewFactory( CntAbstractServiceProvider& aServiceProvider, CntExtensionManager& aMgr ); 
       
    31     ~CntServiceViewFactory();
       
    32     
       
    33 public:
       
    34     CntAbstractView* createView( int aViewId );
       
    35     
       
    36 private:
       
    37     CntAbstractServiceProvider& mProvider;
       
    38 };
       
    39 #endif /* CNTSERVICEVIEWFACTORY_H_ */