classicui_plat/personalisation_slide_show_dialog_api/inc/pslnslidesetdialoginterface.inl
changeset 37 89c890c70182
parent 34 6b5204869ed5
child 45 667edd0b8678
equal deleted inserted replaced
34:6b5204869ed5 37:89c890c70182
     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:  Inline methods for the Psln slide set settings dialog interface.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // ============================ MEMBER FUNCTIONS ===============================
       
    20 // -----------------------------------------------------------------------------
       
    21 // Destructor.
       
    22 // -----------------------------------------------------------------------------
       
    23 //
       
    24 inline CPslnSlidesetDialogInterface::~CPslnSlidesetDialogInterface()
       
    25     {
       
    26     REComSession::DestroyedImplementation( iDtor_ID_Key );
       
    27     }
       
    28 
       
    29 // -----------------------------------------------------------------------------
       
    30 // Two-phased constructor.
       
    31 // -----------------------------------------------------------------------------
       
    32 //
       
    33 inline CPslnSlidesetDialogInterface* CPslnSlidesetDialogInterface::NewL( 
       
    34     TUid aImplementationUid ) 
       
    35     {
       
    36     TAny* ptr;
       
    37     TInt32 keyOffset = _FOFF( CPslnSlidesetDialogInterface, iDtor_ID_Key );
       
    38     ptr = REComSession::CreateImplementationL(
       
    39         aImplementationUid,
       
    40         keyOffset );
       
    41 
       
    42     return reinterpret_cast<CPslnSlidesetDialogInterface*>(ptr);
       
    43     }
       
    44 
       
    45 // -----------------------------------------------------------------------------
       
    46 // Reserved for future use.
       
    47 // -----------------------------------------------------------------------------
       
    48 //
       
    49 inline TAny* CPslnSlidesetDialogInterface::CustomOperationL(
       
    50     TAny* /*aParam1*/, 
       
    51     TAny* /*aParam2*/ )
       
    52     {
       
    53     return NULL;
       
    54     }
       
    55 
       
    56 //  End of File  
       
    57