vtengines/videoteleng/Logger/Src/CVtLoggerStub.cpp
changeset 18 d9b6a8729acd
parent 4 6dc066157ed4
child 23 c378a0498b84
child 27 dcbddbbaf8fd
equal deleted inserted replaced
4:6dc066157ed4 18:d9b6a8729acd
     1 /*
       
     2 * Copyright (c) 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:  Video telephony logger stub
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 // INCLUDE FILES
       
    21 #include    "CVtLogger.h"
       
    22 #include    <f32file.h>
       
    23 
       
    24 
       
    25 // ============================ MEMBER FUNCTIONS ===============================
       
    26 
       
    27 // -----------------------------------------------------------------------------
       
    28 // CVtLogger::CVtLogger
       
    29 // C++ default constructor can NOT contain any code, that
       
    30 // might leave.
       
    31 // -----------------------------------------------------------------------------
       
    32 //
       
    33 CVtLogger::CVtLogger()
       
    34     {
       
    35     }
       
    36 
       
    37 // -----------------------------------------------------------------------------
       
    38 // CVtLogger::ConstructL
       
    39 // Symbian 2nd phase constructor can leave.
       
    40 // -----------------------------------------------------------------------------
       
    41 //
       
    42 void CVtLogger::ConstructL( )
       
    43     {
       
    44     }
       
    45 
       
    46 // -----------------------------------------------------------------------------
       
    47 // CVtLogger::NewL
       
    48 // Two-phased constructor.
       
    49 // -----------------------------------------------------------------------------
       
    50 //
       
    51 CVtLogger* CVtLogger::NewL( )
       
    52     {
       
    53     return NULL;
       
    54     }
       
    55 
       
    56 // Destructor
       
    57 CVtLogger::~CVtLogger()
       
    58     {
       
    59     }
       
    60 
       
    61 // -----------------------------------------------------------------------------
       
    62 // CVtLogger::Print
       
    63 // Prints to log.
       
    64 // 
       
    65 // -----------------------------------------------------------------------------
       
    66 //
       
    67 void CVtLogger::Print( TDesC& )
       
    68     {
       
    69     }
       
    70 
       
    71 // -----------------------------------------------------------------------------
       
    72 // CVtLogger::Print
       
    73 // Prints to log.
       
    74 // 
       
    75 // -----------------------------------------------------------------------------
       
    76 //
       
    77 EXPORT_C void CVtLogger::Print( 
       
    78     TInt , 
       
    79     TDesC&  )
       
    80     {
       
    81     }
       
    82 
       
    83 // -----------------------------------------------------------------------------
       
    84 // CVtLogger::Print
       
    85 // Prints to log.
       
    86 // 
       
    87 // -----------------------------------------------------------------------------
       
    88 //
       
    89 EXPORT_C void CVtLogger::Print( 
       
    90     TInt , 
       
    91     TDesC& , 
       
    92     TInt )
       
    93     {
       
    94     }
       
    95 
       
    96 // -----------------------------------------------------------------------------
       
    97 // CVtLogger::Print
       
    98 // Prints to log.
       
    99 // 
       
   100 // -----------------------------------------------------------------------------
       
   101 //
       
   102 EXPORT_C void CVtLogger::Print( 
       
   103     TInt , 
       
   104     TDesC& , 
       
   105     TInt ,
       
   106     TInt )
       
   107     {    
       
   108     }
       
   109 
       
   110 CVtLogger* CVtLogger::Logger()
       
   111     {
       
   112     return NULL;
       
   113     }
       
   114 
       
   115 // -----------------------------------------------------------------------------
       
   116 // CVtLogger::CheckLevels
       
   117 // Check debug level.
       
   118 // 
       
   119 // -----------------------------------------------------------------------------
       
   120 //
       
   121 TBool CVtLogger::CheckLevels( TInt aLevels ) const
       
   122     {
       
   123     return EFalse;
       
   124     }
       
   125 
       
   126 //  End of File