diff -r 34024902876b -r 50d5061ee01e camappengine/Engine/Inc/CaeImageItemExtPro.h --- a/camappengine/Engine/Inc/CaeImageItemExtPro.h Fri Mar 19 09:33:47 2010 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,65 +0,0 @@ -/* -* Copyright (c) 2003-2007 Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: Still Image Item for Camera Application Engine for extension processing -* -*/ - - - -#ifndef CAEIMAGEITEMEXTPRO_H -#define CAEIMAGEITEMEXTPRO_H - -// INCLUDES -#include - -// FORWARD DECLARATIONS -class HBufC8; -class CFbsBitmap; - -// CLASS DECLARATION - -// An image item class. Can be used in image queues. -NONSHARABLE_CLASS( CCaeImageItemExtPro ) : public CBase - { - - public: - /** - * Default constructor. - */ - CCaeImageItemExtPro(); - - /** - * Destructor. - */ - virtual ~CCaeImageItemExtPro(); - - public: - // Bitmap pointer for snap or captured image. - CFbsBitmap* iBitmap; - - // Image pointer for main captured image. - HBufC8* iImageData; - - // Flag for last burst image - TBool iLastImage; - - // Flag for indicating if the iBitmap is snap or captured image - TBool iSnapImage; - }; - - - -#endif // CAEIMAGEITEMEXTPRO_H - -// End of File