emailuis/emailui/inc/FSHtmlReloadAO.h
changeset 2 5253a20d2a1e
child 3 a4d6f1ea0416
equal deleted inserted replaced
1:12c456ceeff2 2:5253a20d2a1e
       
     1 /*
       
     2 * Copyright (c) 2007 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 the License "Symbian Foundation License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: This file defines class CFSHtmlReloadAO.
       
    15 *
       
    16 */
       
    17 
       
    18 #ifndef FSHtmlReloadAO_H
       
    19 #define FSHtmlReloadAO_H
       
    20 
       
    21 #include <e32base.h>
       
    22 
       
    23 class CFsEmailUiHtmlViewerView;
       
    24 class CFSHtmlReloadAO : public CActive
       
    25     {
       
    26 public:
       
    27     static CFSHtmlReloadAO* NewL( CFsEmailUiHtmlViewerView& aView );
       
    28     ~CFSHtmlReloadAO();
       
    29     void ReloadPageAysnc();
       
    30 private:
       
    31     CFSHtmlReloadAO( CFsEmailUiHtmlViewerView& aView );
       
    32 
       
    33     void ConstructL();
       
    34     void RunL();
       
    35     void DoCancel();
       
    36 
       
    37 private:
       
    38     CFsEmailUiHtmlViewerView&       iView;
       
    39     };
       
    40 
       
    41 #endif /*FSHtmlReloadAO_H*/