camerauis/cameraapp/generic/inc/cameracontroller/camimagedecoder.h
branchRCL_3
changeset 13 38fb6f7eacd5
parent 10 8c55c525d5d7
child 17 8f559c47d7fd
equal deleted inserted replaced
12:51dda465e618 13:38fb6f7eacd5
     1 /*
     1 /*
     2 * Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). 
     2 * Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies). 
     3 * All rights reserved.
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     4 * This component and the accompanying materials are made available
     5 * under the terms of "Eclipse Public License v1.0"
     5 * under the terms of "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
    46     * Notify observer that the image decoding has finished.
    46     * Notify observer that the image decoding has finished.
    47     * @param aStatus Status code describing the success of the operation.
    47     * @param aStatus Status code describing the success of the operation.
    48     *        KErrNone if all went as planned.
    48     *        KErrNone if all went as planned.
    49     * @param aBitmap Decoded bitmap. NULL if errors in decoding.
    49     * @param aBitmap Decoded bitmap. NULL if errors in decoding.
    50     */
    50     */
    51     virtual void ImageDecoded( TInt aStatus, const CFbsBitmap* aBitmap, const CFbsBitmap* aMask ) = 0;
    51     virtual void ImageDecodedL( TInt aStatus, const CFbsBitmap* aBitmap, const CFbsBitmap* aMask ) = 0;
    52 
    52 
    53   };
    53   };
    54   
    54   
    55 
    55 
    56 /**
    56 /**