videoutils_plat/dvrengine_api/inc/ipvideo/MRtpFileObserver.h
branchRCL_3
changeset 47 826cea16efd9
parent 45 798ee5f1972c
child 48 13a33d82ad98
equal deleted inserted replaced
45:798ee5f1972c 47:826cea16efd9
     1 /*
       
     2 * Copyright (c) 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 the License "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:    RTP file observer for Common Recording Engine.*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MRTPFILEOBSERVER_H
       
    21 #define MRTPFILEOBSERVER_H
       
    22 
       
    23 // INCLUDES
       
    24 // None
       
    25 
       
    26 // CONSTANTS
       
    27 // None
       
    28 
       
    29 // MACROS
       
    30 // None
       
    31 
       
    32 // DATA TYPES
       
    33 // None
       
    34 
       
    35 // FORWARD DECLARATIONS
       
    36 // None
       
    37 
       
    38 // CLASS DECLARATION
       
    39 
       
    40 /**
       
    41 *  A RTP read observer.
       
    42 *
       
    43 *  @lib RtpClipHandler.lib
       
    44 *  @since Series 60 3.0
       
    45 */
       
    46 class MRtpFileObserver
       
    47     {
       
    48 
       
    49 public: // New functions
       
    50         
       
    51     /**
       
    52     * Called when RTP group save is ready.
       
    53     * @since Series 60 3.0
       
    54     * @param aAction a save action for last saved group.
       
    55     * @return None.
       
    56     */
       
    57     virtual void RtpGroupSaved( const TInt aAction ) = 0;
       
    58 
       
    59     /**
       
    60     * Getter for current file reader point.
       
    61     * @since Series 60 3.0
       
    62     * @param aIndex a index of shift seek array.
       
    63     * @return a read point in file reader.
       
    64     */
       
    65     virtual TInt CurrentFileReadPoint( const TInt aIndex ) = 0;
       
    66   
       
    67     };
       
    68 
       
    69 #endif // MRTPFILEOBSERVER_H
       
    70 
       
    71 // End of File