email/mail/ViewerSrc/MMsgMailAttachmentDialogObserver.h
changeset 0 72b543305e3a
equal deleted inserted replaced
-1:000000000000 0:72b543305e3a
       
     1 /*
       
     2 * Copyright (c) 2002-2004 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:  Mail Viewer attachment Dialog exit observer.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MMSGMAILATTACHMENTDIALOGOBSERVER_H
       
    20 #define MMSGMAILATTACHMENTDIALOGOBSERVER_H
       
    21 
       
    22 // FORWARD DECLARATIONS
       
    23 
       
    24 // CLASS DECLARATION
       
    25 
       
    26 /**
       
    27 *  MMsgMailAttachmentDialogObserver interface.
       
    28 *
       
    29 *  @since Series 60 5.0
       
    30 */
       
    31 class MMsgMailAttachmentDialogObserver
       
    32     {
       
    33     public:  // destructor
       
    34         /**
       
    35         * Destructor.
       
    36         */
       
    37         virtual ~MMsgMailAttachmentDialogObserver(){};
       
    38 
       
    39     public: // New functions
       
    40 
       
    41         /**
       
    42         * @since Series 60 5.0
       
    43         * Called when exiting a attachment dialog.
       
    44         */
       
    45         virtual void AttachmentDialogExit() = 0;
       
    46 
       
    47     };
       
    48 
       
    49 #endif      // MMSGMAILATTACHMENTDIALOGOBSERVER_H
       
    50 
       
    51 // End of File
       
    52