remotestoragefw/remotefileengine/inc/rsfwattributerefreshingstatemachine.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:  States that need to refresh file or directory attributes
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef C_RSFW_ATTRIBUTEREFRESHINGSTATEMACHINE_H
       
    19 #define C_RSFW_ATTRIBUTEREFRESHINGSTATEMACHINE_H
       
    20 
       
    21 #include "rsfwrfestatemachine.h"
       
    22 
       
    23 // FORWARD DECLARATIONS
       
    24 class CRsfwDirEntAttr;
       
    25 
       
    26 /**
       
    27  *  Parent class for operations that need to refresh file or 
       
    28  *	directory attributes.
       
    29  *
       
    30  */
       
    31  class CRsfwAttributeRefreshingStateMachine : public CRsfwRfeStateMachine   
       
    32     {
       
    33  public:
       
    34     ~CRsfwAttributeRefreshingStateMachine(); 
       
    35  public:
       
    36     // file or directory attributes
       
    37     CRsfwDirEntAttr* iDirEntAttr;
       
    38     // The old attributes for a cached file or directory.  
       
    39     // Comparing the tells whether the actual data must 
       
    40     // be fetched from the server.
       
    41     CRsfwDirEntAttr* iDirEntAttrOld;    
       
    42     };
       
    43 
       
    44 
       
    45 #endif // C_RSFW_ATTRIBUTEREFRESHINGSTATEMACHINE_H