pkiutilities/DeviceToken/Src/Certstore/server/DevandTruSrvCertStoreSession.cpp
changeset 0 164170e6151a
equal deleted inserted replaced
-1:000000000000 0:164170e6151a
       
     1 /*
       
     2 * Copyright (c) 2006 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:   Implementation of DevandTruSrvCertStoreSession
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include "DevandTruSrvCertStoreSession.h"
       
    21 #include "DevandTruSrvCertStoreConduit.h"
       
    22 
       
    23 
       
    24 // ======== MEMBER FUNCTIONS ========
       
    25 
       
    26 // ---------------------------------------------------------------------------
       
    27 // CDevandTruSrvCertStoreSession::NewL()
       
    28 // ---------------------------------------------------------------------------
       
    29 //
       
    30 CDevandTruSrvCertStoreSession* CDevandTruSrvCertStoreSession::NewL(CDevandTruSrvCertStoreConduit& aConduit)
       
    31     {
       
    32     return new (ELeave) CDevandTruSrvCertStoreSession(aConduit);
       
    33     }
       
    34 
       
    35 
       
    36 // ---------------------------------------------------------------------------
       
    37 // CDevandTruSrvCertStoreSession::CDevandTruSrvCertStoreSession()
       
    38 // ---------------------------------------------------------------------------
       
    39 //	
       
    40 CDevandTruSrvCertStoreSession::CDevandTruSrvCertStoreSession(CDevandTruSrvCertStoreConduit& aConduit) :
       
    41     iConduit(aConduit)
       
    42     {
       
    43     }
       
    44 
       
    45 
       
    46 // ---------------------------------------------------------------------------
       
    47 // CDevandTruSrvCertStoreSession::DoServiceL()
       
    48 // ---------------------------------------------------------------------------
       
    49 //
       
    50 void CDevandTruSrvCertStoreSession::DoServiceL(const RMessage2& aMessage)
       
    51     {
       
    52     iConduit.ServiceCertStoreRequestL(aMessage);
       
    53     }
       
    54 
       
    55 //EOF
       
    56 
       
    57