EngInc/ImageMonitorAO.h
changeset 3 93fff7023be8
equal deleted inserted replaced
2:e1e28b0273b0 3:93fff7023be8
       
     1 /*
       
     2 * Copyright (c) 2009 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: Juha Kauppinen, Mika Hokkanen
       
    13 * 
       
    14 * Description: Photo Browser
       
    15 *
       
    16 */ 
       
    17 
       
    18 #ifndef __IMAGEMONITORAO_H__
       
    19 #define __IMAGEMONITORAO_H__
       
    20 
       
    21 class CIEEngineImp;
       
    22 
       
    23 class CImageMonitorAO : public CActive
       
    24     {
       
    25     public:
       
    26         // Constructor and destructor
       
    27         static CImageMonitorAO* NewL(CIEEngineImp* aEngImp);
       
    28         static CImageMonitorAO* NewLC(CIEEngineImp* aEngImp);
       
    29         void ConstructL();
       
    30         CImageMonitorAO(CIEEngineImp* aEngImp);
       
    31         ~CImageMonitorAO();
       
    32         void ActiveRequest();
       
    33        
       
    34     private:
       
    35         // From CActive
       
    36         void RunL();
       
    37         void DoCancel();
       
    38         void RunError();
       
    39         
       
    40     private: // Data
       
    41         CIEEngineImp*          iEngImp;
       
    42 
       
    43         
       
    44     };
       
    45 
       
    46 #endif //__IMAGEMONITORAO_H__