bluetoothengine/btaudioman/src/BTAccInfoMainService.cpp
changeset 0 f63038272f30
equal deleted inserted replaced
-1:000000000000 0:f63038272f30
       
     1 /*
       
     2 * Copyright (c) 2005-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:  Loaded by Accessory Server to allow this component to initialize
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "BTAccInfoMainService.h"
       
    21 #include "debug.h"
       
    22 
       
    23 // ============================= LOCAL FUNCTIONS ===============================
       
    24 
       
    25 // ============================ MEMBER FUNCTIONS ===============================
       
    26 
       
    27 // -----------------------------------------------------------------------------
       
    28 // CBTAccInfoMainService::CBTAccInfoMainService
       
    29 // C++ default constructor can NOT contain any code, that
       
    30 // might leave.
       
    31 // -----------------------------------------------------------------------------
       
    32 //
       
    33 CBTAccInfoMainService::CBTAccInfoMainService()
       
    34     {
       
    35     TRACE_FUNC;
       
    36     }
       
    37 
       
    38 // -----------------------------------------------------------------------------
       
    39 // CBTAccInfoMainService::NewL
       
    40 // Two-phased constructor.
       
    41 // -----------------------------------------------------------------------------
       
    42 //
       
    43 CBTAccInfoMainService* CBTAccInfoMainService::NewL()
       
    44     {
       
    45     return new (ELeave) CBTAccInfoMainService();
       
    46     }
       
    47     
       
    48 // Destructor
       
    49 CBTAccInfoMainService::~CBTAccInfoMainService()
       
    50     {
       
    51     TRACE_FUNC;
       
    52     }
       
    53 
       
    54 // -----------------------------------------------------------------------------
       
    55 // CBTAccInfoMainService::StartL
       
    56 // -----------------------------------------------------------------------------
       
    57 //
       
    58 TInt CBTAccInfoMainService::StartL()
       
    59     {
       
    60     TRACE_FUNC;
       
    61     // Synchronous ASY : Signal
       
    62     Signal();
       
    63     return KErrNone;
       
    64     }
       
    65 
       
    66 //  End of File
       
    67 
       
    68 
       
    69