logsui/AppSrc/TLogsDummyExtensionFactory.cpp
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 
       
     3 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies).
       
     4 
       
     5 * All rights reserved.
       
     6 
       
     7 * This component and the accompanying materials are made available
       
     8 
       
     9 * under the terms of "Eclipse Public License v1.0"
       
    10 
       
    11 * which accompanies this distribution, and is available
       
    12 
       
    13 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    14 
       
    15 *
       
    16 
       
    17 * Initial Contributors:
       
    18 
       
    19 * Nokia Corporation - initial contribution.
       
    20 
       
    21 *
       
    22 
       
    23 * Contributors:
       
    24 
       
    25 *
       
    26 
       
    27 * Description: 
       
    28 
       
    29 *
       
    30 
       
    31 */
       
    32 
       
    33 
       
    34 
       
    35 
       
    36 
       
    37 // INCLUDE FILES
       
    38 
       
    39 #include "TLogsDummyExtensionFactory.h"
       
    40 
       
    41 
       
    42 
       
    43 
       
    44 
       
    45 // ================= MEMBER FUNCTIONS =======================
       
    46 
       
    47 
       
    48 
       
    49 inline TLogsDummyExtensionFactory::TLogsDummyExtensionFactory()
       
    50 
       
    51     {
       
    52 
       
    53     }
       
    54 
       
    55 
       
    56 
       
    57 TLogsDummyExtensionFactory* TLogsDummyExtensionFactory::NewL()
       
    58 
       
    59     {
       
    60 
       
    61     return new (ELeave) TLogsDummyExtensionFactory;
       
    62 
       
    63     }
       
    64 
       
    65     
       
    66 
       
    67 void TLogsDummyExtensionFactory::Release()
       
    68 
       
    69     {    
       
    70 
       
    71     delete this;
       
    72 
       
    73     }
       
    74 
       
    75 
       
    76 
       
    77 MLogsViewExtension* TLogsDummyExtensionFactory::CreateLogsViewExtensionL
       
    78 
       
    79         (CPbkContactEngine& /*aEngine*/, MLogsExtObserver* /*aObserver*/)
       
    80 
       
    81     {
       
    82 
       
    83     return &iDummyViewExtension;
       
    84 
       
    85     }
       
    86 
       
    87 
       
    88 
       
    89 MLogsUiControlExtension* TLogsDummyExtensionFactory::CreateLogsUiControlExtensionL()
       
    90 
       
    91     {
       
    92 
       
    93     return &iDummyUiControlExtension;
       
    94 
       
    95     }
       
    96 
       
    97 
       
    98 
       
    99 //  End of File
       
   100