sipproviderplugins/sipprovider/sipconnectionplugins/inc/siptiermanagerfactory.h
changeset 0 307788aac0a8
equal deleted inserted replaced
-1:000000000000 0:307788aac0a8
       
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // SIPTIERMANAGERFACTORY_H.H
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalTechnology
       
    21  @prototype
       
    22 */
       
    23 
       
    24 #ifndef SYMBIAN_SIP_TIER_MANAGER_FACTORY_H
       
    25 #define SYMBIAN_SIP_TIER_MANAGER_FACTORY_H
       
    26 
       
    27 #include <comms-infras/ss_tiermanager.h>
       
    28 
       
    29 
       
    30 class CSipTierManagerFactory : public ESock::CTierManagerFactoryBase
       
    31 	{
       
    32 public:
       
    33     enum { iUid = 0x200041F7 };
       
    34 	static CSipTierManagerFactory* NewL(TAny* aParentContainer);
       
    35 
       
    36 protected:
       
    37 	CSipTierManagerFactory(TUid aTierTypeId, TUid aFactoryUid, ESock::CTierManagerFactoryContainer& aParentContainer);
       
    38 	virtual ESock::ACommsFactoryNodeId* DoCreateObjectL(ESock::TFactoryQueryBase& aQuery);
       
    39 	};
       
    40 
       
    41 #endif //SYMBIAN_SIP_TIER_MANAGER_FACTORY_H
       
    42