localconnectivityservice/locod/commoninc/locodservicepluginparams.inl
branchRCL_3
changeset 39 4096754ee773
parent 38 3dcb815346df
child 40 52a167391590
equal deleted inserted replaced
38:3dcb815346df 39:4096754ee773
     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:  This is the LCD Service Plugin construction parameters
       
    15 *                declaration
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 // -----------------------------------------------------------------------------
       
    21 // Constructor method, just saves the arguments into member variables
       
    22 // -----------------------------------------------------------------------------
       
    23 //
       
    24 inline TLocodServicePluginParams::TLocodServicePluginParams(TUid aUid, MLocodServicePluginObserver& aObserver)
       
    25     : iImplementationUid(aUid),
       
    26       iObserver(aObserver)
       
    27     {
       
    28     }
       
    29 
       
    30 // -----------------------------------------------------------------------------
       
    31 // Returns the implementation UID
       
    32 // -----------------------------------------------------------------------------
       
    33 //
       
    34 inline TUid TLocodServicePluginParams::ImplementationUid() const
       
    35     {
       
    36     return iImplementationUid;
       
    37     }
       
    38 
       
    39 // -----------------------------------------------------------------------------
       
    40 // return the observer class
       
    41 // -----------------------------------------------------------------------------
       
    42 //
       
    43 inline MLocodServicePluginObserver& TLocodServicePluginParams::Observer() const
       
    44     {
       
    45     return iObserver;
       
    46     }