uiservicetab/vimpstutils/inc/mvimpstimageprocessobserver.h
branchRCL_3
changeset 22 3104fc151679
parent 21 2b7283837edb
child 23 9a48e301e94b
equal deleted inserted replaced
21:2b7283837edb 22:3104fc151679
     1 /*
       
     2 * Copyright (c) 2008 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:
       
    13 *
       
    14 * Description:  Interface for observing content processors
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MCACONTENTPROCESSOBSERVER_H
       
    20 #define MCACONTENTPROCESSOBSERVER_H
       
    21 
       
    22 //	FORWARD CLASS DECLERATIONS
       
    23 
       
    24 
       
    25 // CLASS DECLARATION
       
    26 
       
    27 /**
       
    28  *  Interface for observing content processors
       
    29  *
       
    30  *  @lib vimpstutils.dll
       
    31  */
       
    32 class MCAImageProcessObserver
       
    33 	{
       
    34 	public: // Interface
       
    35 
       
    36         /**
       
    37          * Handle processing completion. Called by content processor when 
       
    38          * processing is ready.
       
    39          * @param aStatus, Status of processing. KErrNone -> OK.
       
    40          */
       
    41         virtual void HandleProcessingCompleteL( TInt aStatus ) = 0;
       
    42 
       
    43 	protected: // For protection.
       
    44 
       
    45 		/**
       
    46 		 * Destructor
       
    47 		 */
       
    48 		virtual ~MCAImageProcessObserver(){}
       
    49 	};
       
    50 
       
    51 #endif      // MCACONTENTPROCESSOBSERVER_H
       
    52 
       
    53 // End of File