devicesrv_plat/tv_out_config_api/inc/tvoutconfig.inl
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     1 /*
       
     2 * Copyright (c) 2003-2005 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:  This file provides inline functions required for 
       
    15 *                TVOutConfig Dummy Implementation.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 //- Member Functions --------------------------------------------------------
       
    21 
       
    22 //---------------------------------------------------------------------------
       
    23 /**
       
    24     Constructor of TTvSettings class
       
    25 */
       
    26 TTvSettings::TTvSettings():
       
    27         iTvSystem( EUndefSystem ),
       
    28         iRatio( EUndefRatio ),
       
    29         iScanMode( EUndefScan ),
       
    30         iOutput( EUndefOutput ),
       
    31         iFlickerFilter( EUndefFlicker ),
       
    32         iAutoDetection( EUndefAutoDetect ),
       
    33         iHorizontalOverScan( 0 ),
       
    34         iVerticalOverScan( 0 )
       
    35     {
       
    36     }
       
    37 
       
    38 //---------------------------------------------------------------------------
       
    39 /**
       
    40     Constructor of TStandByFigure class
       
    41 */
       
    42 TStandByFigure::TStandByFigure():
       
    43         iTable( NULL ),
       
    44         iFigureType( EStandByFigure ),
       
    45         iColumns( 0 ),
       
    46         iRows( 0 ),
       
    47         iScaleNumeratorWidth( 1 ),//no scaling (1/1)
       
    48         iScaleDenominatorWidth( 1 ),
       
    49         iScaleNumeratorHeight( 1 ),//no scaling (1/1)
       
    50         iScaleDenominatorHeight( 1 ),
       
    51         iLeftTopColumn( 0 ),
       
    52         iLeftTopRow( 0 ),
       
    53         iBackGroundColor( 0 )
       
    54     {
       
    55     }
       
    56 
       
    57 // End of File
       
    58