remotestoragefw/remotefileengine/inc/rsfwrfeoperation.h
branchRCL_3
changeset 20 1aa8c82cb4cb
parent 0 3ad9d5175a89
equal deleted inserted replaced
19:88ee4cf65e19 20:1aa8c82cb4cb
       
     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:  Base class for operation encapsulation
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef C_RSFWRFEOPERATION_H
       
    19 #define C_RSFWRFEOPERATION_H
       
    20 
       
    21 #include <e32base.h>
       
    22 
       
    23 #include "rsfwrferequest.h"
       
    24 
       
    25 /************************
       
    26  * Operation Encapsulation 
       
    27  ************************/
       
    28 typedef void (*TRFeRequestFunc)(CRsfwRfeRequest*);
       
    29 
       
    30 
       
    31 /**
       
    32  *  Base class for operation encapsulation
       
    33  *
       
    34  *
       
    35  */
       
    36 class CRsfwRfeOperation : public CBase
       
    37     {
       
    38 public:
       
    39     TBool IsSync() const;
       
    40     TInt Function();
       
    41     void Set(TInt aOpCode);
       
    42 public:
       
    43     TInt iFunction;
       
    44     TBool iIsSync;
       
    45     };
       
    46 
       
    47 
       
    48 
       
    49 #endif