xdmprotocols/XcapProtocol/XcapCache/Client/src/XcapCacheClient.cpp
changeset 0 c8caa15ef882
equal deleted inserted replaced
-1:000000000000 0:c8caa15ef882
       
     1 /*
       
     2 * Copyright (c) 2005 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:   CXcapCacheClient
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <e32std.h>
       
    21 #include "XcapCache.h"
       
    22 #include "CommonDefines.h"
       
    23 #include "XcapCacheClient.h"
       
    24 
       
    25 //CLASS DECLARATION
       
    26 CXcapCacheClient::CXcapCacheClient( RXcapCache& aCacheMain ) :
       
    27                                     CActive( EPriorityStandard ),
       
    28                                     iClientMain( aCacheMain )
       
    29     {
       
    30     CActiveScheduler::Add( this );
       
    31     }
       
    32 
       
    33 // ----------------------------------------------------
       
    34 // CXcapCacheClient::Store
       
    35 // 
       
    36 // ----------------------------------------------------
       
    37 //
       
    38 void CXcapCacheClient::Reset()
       
    39     {
       
    40     #ifdef _DEBUG
       
    41         RXcapCache::WriteToLog( _L8( "CXcapCacheClient::Reset()" ) );
       
    42     #endif
       
    43     }
       
    44 
       
    45 // ----------------------------------------------------
       
    46 // CXcapCacheClient::SendMessageL
       
    47 // 
       
    48 // ----------------------------------------------------
       
    49 //
       
    50 void CXcapCacheClient::ReceiveAsync( TRequestStatus& aStatus )   
       
    51     {
       
    52     iClientStatus = &aStatus;
       
    53     aStatus = KRequestPending;
       
    54     SetActive();
       
    55     }
       
    56 
       
    57 // ----------------------------------------------------
       
    58 // CXcapCacheClient::RunL
       
    59 // 
       
    60 // ----------------------------------------------------
       
    61 //
       
    62 void CXcapCacheClient::RunL()
       
    63     {
       
    64     
       
    65     }
       
    66 
       
    67 // ----------------------------------------------------
       
    68 // CXcapCacheClient::DoCancel
       
    69 // 
       
    70 // ----------------------------------------------------
       
    71 //
       
    72 void CXcapCacheClient::DoCancel()
       
    73     {
       
    74     
       
    75     }
       
    76 
       
    77 // End of File
       
    78 
       
    79