remotestoragefw/remotefileengine/inc/rsfwrfesyncoperation.h
branchRCL_3
changeset 19 88ee4cf65e19
parent 16 87c71b25c937
child 20 1aa8c82cb4cb
equal deleted inserted replaced
16:87c71b25c937 19:88ee4cf65e19
     1 /*
       
     2 * Copyright (c) 2005-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:  Encapsulates synchronous operation
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef C_RSFWRFESYNCOPERATION_H
       
    19 #define C_RSFWRFESYNCOPERATION_H
       
    20 
       
    21 #include "rsfwrfeoperation.h"
       
    22 
       
    23 
       
    24 
       
    25 /**
       
    26  *  Encapsulates a synchronous operation
       
    27  *
       
    28  *  Synchronous operation can be implemented as a simple function pointer.
       
    29  *
       
    30  */
       
    31  class CRsfwRfeSyncOperation : public CRsfwRfeOperation 
       
    32     {
       
    33 public:
       
    34     void DoRequestL(CRsfwRfeRequest* aRequest);
       
    35     void Set(CRsfwRfeRequest* aRequest, TInt aCaller);
       
    36 private:
       
    37     TRFeRequestFunc iDoRequestL;
       
    38     };
       
    39 
       
    40 #endif
       
    41