camerauis/cameraapp/generic/common/inc/MCamAddToAlbumObserver.h
branchRCL_3
changeset 24 bac7acad7cb3
parent 0 1ddebce53859
equal deleted inserted replaced
23:61bc0f252b2b 24:bac7acad7cb3
       
     1 /*
       
     2 * Copyright (c) 2007-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:  notifier of mc photos operation.
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MCAMADDTOALBUMOBSERVER_H
       
    21 #define MCAMADDTOALBUMOBSERVER_H
       
    22 
       
    23 
       
    24 /**
       
    25 * Abstract API for notifying the obersvers for completion event
       
    26 * Once the Add to Album operation is complete via Collection 
       
    27 * Manager
       
    28 */
       
    29 class MCamAddToAlbumObserver
       
    30   {
       
    31   public:
       
    32 
       
    33     /**
       
    34     * Notification once the asynchronous operations using
       
    35     * CollectionManager interface have completed.
       
    36     *
       
    37     * @param aAlbumExists ETrue if album exists
       
    38     * @param aAlbumTitle  Title of the album
       
    39     */
       
    40     virtual void CheckAlbumIdOperationCompleteL(
       
    41             TBool aAlbumExists, const TDesC& aAlbumTitle ) = 0;
       
    42 
       
    43     /**
       
    44     * Notification once the asynchronous operations using
       
    45     * CollectionManager interface have completed.
       
    46     */
       
    47     virtual void AddToAlbumIdOperationComplete() = 0;
       
    48                                         
       
    49     };
       
    50 
       
    51 #endif // MCAMADDTOALBUMOBSERVER_H
       
    52 
       
    53             
       
    54 // End of File