notepad/notepad1/inc/MNpdLoadFileObserver.h
branchRCL_3
changeset 48 bf573002ff72
equal deleted inserted replaced
36:9c5b1510919f 48:bf573002ff72
       
     1 /*
       
     2 * Copyright (c) 2006-2007 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:   Notepad load file observer abstraction
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MNOTEPADLOADFILEOBSERVER_H
       
    20 #define MNOTEPADLOADFILEOBSERVER_H
       
    21 
       
    22 
       
    23 // INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 // CLASS DECLARATION
       
    27 /**
       
    28 *  Defines an interface for notepad load file observer.
       
    29 *
       
    30 *  @since 5.2
       
    31 */
       
    32 class MNotepadLoadFileObserver
       
    33     {
       
    34     public:    
       
    35         /**
       
    36         * Notify the observer that load file completed.
       
    37         * @param aErrCode the result of load file completed.
       
    38         * @since 5.2
       
    39         */
       
    40         virtual void NotifyCompletedL( TInt aErrCode ) = 0;
       
    41 
       
    42     };
       
    43 
       
    44 
       
    45 #endif // MNOTEPADLOADFILEOBSERVER_H
       
    46 
       
    47 // End of File