vtengines/videoteleng/Inc/Extensions/mvtengrecord2file.h
changeset 0 ed9695c8bcbe
equal deleted inserted replaced
-1:000000000000 0:ed9695c8bcbe
       
     1 /*
       
     2 * Copyright (c) 2006 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:  Videoteleng Record to file extension API
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef MVTENGRECORD2FILE_H
       
    20 #define MVTENGRECORD2FILE_H
       
    21 
       
    22 //	INCLUDES
       
    23 #include <e32base.h>
       
    24 
       
    25 // FORWARD DECLARATIONS
       
    26 
       
    27 // CLASS DECLARATION
       
    28 
       
    29 // CONSTANTS
       
    30 const TUid KVtEngExtensionRecord2File = {0x10283156}; 
       
    31 
       
    32 /**
       
    33 *  Record to file extension API class.
       
    34 *
       
    35 *  @lib videoteleng.lib
       
    36 *  @since S60 v5.0
       
    37 */
       
    38 
       
    39 class MVtEngRecord2File
       
    40     {
       
    41     public:
       
    42  
       
    43         /**
       
    44         * For testin puposes only REMOVE
       
    45         * @param  aSupported boolean for tone play support
       
    46         * @return Symbian error code  
       
    47         */
       
    48         virtual TInt IsTonePlaySupported( TBool& aSupported) const = 0;
       
    49     };    
       
    50 #endif //MVTENGRECORD2FILE_H    
       
    51