remotestoragefw/remotefileengine/inc/rsfwrfeasyncoperation.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:  Encapsulates an asynchronous operation
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef C_RSFWRFEASYNCOPERATION_H
       
    19 #define C_RSFWRFEASYNCOPERATION_H
       
    20 
       
    21 #include "rsfwrfeoperation.h"
       
    22 
       
    23 class CRsfwRfeStateMachine;
       
    24 class CRsfwRfeRequest;
       
    25 class TRsfwMountConfig;
       
    26 
       
    27 /**
       
    28  *  Encapsulates an asynchronous operation.
       
    29  *
       
    30  *  Async. operations are implemented as state machines.
       
    31  *
       
    32  */
       
    33 class CRsfwRfeAsyncOperation : public CRsfwRfeOperation
       
    34     {
       
    35 public:
       
    36     ~CRsfwRfeAsyncOperation();
       
    37 public:
       
    38     CRsfwRfeStateMachine* Implementation();
       
    39     void SetImplementation(CRsfwRfeStateMachine*);
       
    40     void SetL(CRsfwRfeRequest* aRequest, TInt aOpCode);
       
    41 private:
       
    42     void VerifyMountConfigL(TRsfwMountConfig& aMountConfig);
       
    43 private:
       
    44     CRsfwRfeStateMachine* iImplementation; 
       
    45     };
       
    46 
       
    47 #endif