remotestoragefw/gsplugin/inc/rsfwgspropertywatch.h
branchRCL_3
changeset 20 1aa8c82cb4cb
parent 0 3ad9d5175a89
equal deleted inserted replaced
19:88ee4cf65e19 20:1aa8c82cb4cb
       
     1 /*
       
     2 * Copyright (c) 2002-2005 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:  P&S observer
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CRSFWGSPROPERTYWATCH_H
       
    20 #define CRSFWGSPROPERTYWATCH_H
       
    21 
       
    22 #include <e32base.h>
       
    23 #include <e32property.h>
       
    24 #include <f32file.h>
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class CRsfwGsPluginDriveListContainer;
       
    28 
       
    29 class CRsfwGsPropertyWatch : public CActive
       
    30 {
       
    31 	enum { EPriority=0 };
       
    32 	
       
    33 public:
       
    34 	static CRsfwGsPropertyWatch* NewL(CRsfwGsPluginDriveListContainer* aContainer);
       
    35 	~CRsfwGsPropertyWatch();
       
    36 private:
       
    37 	CRsfwGsPropertyWatch();
       
    38 	void ConstructL(CRsfwGsPluginDriveListContainer* aContainer);
       
    39 	void RunL();
       
    40 	void DoCancel();
       
    41 private:
       
    42 	RProperty iProperty;
       
    43 	CRsfwGsPluginDriveListContainer* iContainer;
       
    44 	TDriveList iDriveList;
       
    45 };
       
    46 
       
    47 #endif // CRSFWGSPROPERTYWATCH_H
       
    48 
       
    49 // End of File