remotestoragefw/remotefileengine/src/rsfwrfeoperation.cpp
branchRCL_3
changeset 16 1aa8c82cb4cb
parent 0 3ad9d5175a89
equal deleted inserted replaced
15:88ee4cf65e19 16: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 
       
    19 #include <e32def.h>
       
    20 
       
    21 #include "rsfwrfeoperation.h"
       
    22 
       
    23 
       
    24 // ----------------------------------------------------------------------------
       
    25 // CRsfwRfeOperation::IsSync
       
    26 // ----------------------------------------------------------------------------
       
    27 //      
       
    28 TBool CRsfwRfeOperation::IsSync() const 
       
    29     {
       
    30     return iIsSync;
       
    31     }
       
    32     
       
    33 // ----------------------------------------------------------------------------
       
    34 // CRsfwRfeOperation::Function
       
    35 // ----------------------------------------------------------------------------
       
    36 //  
       
    37 TInt CRsfwRfeOperation::Function()
       
    38     {
       
    39     return iFunction;
       
    40     }
       
    41 
       
    42 // ----------------------------------------------------------------------------
       
    43 // CRsfwRfeOperation::Set
       
    44 // ----------------------------------------------------------------------------
       
    45 //      
       
    46 void CRsfwRfeOperation::Set(TInt aOpCode)
       
    47     {
       
    48     iFunction = aOpCode;
       
    49     }
       
    50