1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #ifndef __IMAGE_PROCESSOR_PROGRESS_INFO_H__
23 #define __IMAGE_PROCESSOR_PROGRESS_INFO_H__
27 namespace ImageProcessor
30 class CImageProcessorImpl;
38 This class provides functions to read progress information.
46 IMPORT_C TInt CurrentIterationL() const;
47 IMPORT_C TInt NumberOfIterationsL() const;
48 IMPORT_C TAny* Extension(TUid aExtension) const;
51 friend class CImageProcessorImpl;
52 TProgressInfo(Plugin::MProgressInfo& aProgressInfoImpl, CImageProcessorImpl& aImageProcessorImpl);
54 CImageProcessorImpl& iImageProcessorImpl;
55 Plugin::MProgressInfo& iProgressInfoImpl;
57 TInt iReserved; // future proof
62 #endif //__IMAGE_PROCESSOR_PROGRESS_INFO_H__