searcher/tsrc/logplayer/src/logplayerclienthandler.cpp
changeset 0 671dee74050a
equal deleted inserted replaced
-1:000000000000 0:671dee74050a
       
     1 /*
       
     2 * Copyright (c) 2010 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: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 //  Include Files
       
    20 #include "LogPlayerClientHandler.h"
       
    21 
       
    22 // Contants
       
    23 // None
       
    24 
       
    25 // ========================= MEMBER FUNCTIONS ==================================
       
    26 
       
    27 // -----------------------------------------------------------------------------
       
    28 // CLogPlayerClientHandler::NewL()
       
    29 // Two-phased constructor.
       
    30 // -----------------------------------------------------------------------------
       
    31 //
       
    32 CLogPlayerClientHandler* CLogPlayerClientHandler::NewL()
       
    33     {
       
    34     CLogPlayerClientHandler* logPlayerManager = CLogPlayerClientHandler::NewLC();
       
    35     CleanupStack::Pop(logPlayerManager);
       
    36     return logPlayerManager;
       
    37     }
       
    38 
       
    39 // -----------------------------------------------------------------------------
       
    40 // CLogPlayerClientHandler::NewLC()
       
    41 // Two-phased constructor.
       
    42 // -----------------------------------------------------------------------------
       
    43 //
       
    44 CLogPlayerClientHandler* CLogPlayerClientHandler::NewLC()
       
    45     {
       
    46     CLogPlayerClientHandler* logPlayerManager = new (ELeave) CLogPlayerClientHandler();
       
    47     CleanupStack::PushL(logPlayerManager);
       
    48     logPlayerManager->ConstructL();
       
    49     return logPlayerManager;
       
    50     }
       
    51 
       
    52 // -----------------------------------------------------------------------------
       
    53 // CLogPlayerClientHandler::~CLogPlayerClientHandler()
       
    54 // Destructor.
       
    55 // -----------------------------------------------------------------------------
       
    56 //
       
    57 CLogPlayerClientHandler::~CLogPlayerClientHandler()
       
    58     {
       
    59     }
       
    60 
       
    61 void CLogPlayerClientHandler::ResetL()
       
    62     {
       
    63     }
       
    64 // -----------------------------------------------------------------------------
       
    65 // CLogPlayerClientHandler::CLogPlayerClientHandler()
       
    66 // C++ default constructor can NOT contain any code, that might leave.
       
    67 // -----------------------------------------------------------------------------
       
    68 //
       
    69 CLogPlayerClientHandler::CLogPlayerClientHandler()
       
    70     {
       
    71     }
       
    72 
       
    73 // -----------------------------------------------------------------------------
       
    74 // CLogPlayerClientHandler::ConstructL()
       
    75 // Symbian 2nd phase constructor can leave.
       
    76 // -----------------------------------------------------------------------------
       
    77 //
       
    78 void CLogPlayerClientHandler::ConstructL()
       
    79     {
       
    80     }