phoneuis/vmbx/src/VmDetailsDlgDummy.cpp
changeset 0 5f000ab63145
equal deleted inserted replaced
-1:000000000000 0:5f000ab63145
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Dummy details dialog for global implementation
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "VmDetailsDlgDummy.h"
       
    21 
       
    22 
       
    23 // ============================ MEMBER FUNCTIONS ===============================
       
    24 
       
    25 // -----------------------------------------------------------------------------
       
    26 // CVmDetailsDialog::CVmDetailsDialog
       
    27 // C++ default constructor can NOT contain any code, that
       
    28 // might leave.
       
    29 // -----------------------------------------------------------------------------
       
    30 //
       
    31 CVmDetailsDialog::CVmDetailsDialog()
       
    32     {
       
    33     }
       
    34 
       
    35 // -----------------------------------------------------------------------------
       
    36 // CVmDetailsDialog::NewL
       
    37 // Two-phased constructor.
       
    38 // -----------------------------------------------------------------------------
       
    39 //
       
    40 CVmDetailsDialog* CVmDetailsDialog::NewL()
       
    41     {
       
    42     CVmDetailsDialog* self = new( ELeave ) CVmDetailsDialog;
       
    43     return self;
       
    44     }
       
    45 
       
    46 // -----------------------------------------------------------------------------
       
    47 // CVmDetailsDialog::~CVmDetailsDialog
       
    48 // Destructor
       
    49 // -----------------------------------------------------------------------------
       
    50 //
       
    51 CVmDetailsDialog::~CVmDetailsDialog()
       
    52     {
       
    53     }
       
    54 
       
    55 // -----------------------------------------------------------------------------
       
    56 // CVmDetailsDialog::ExecuteLD
       
    57 // Dummy function
       
    58 // -----------------------------------------------------------------------------
       
    59 //
       
    60 TInt CVmDetailsDialog::ExecuteLD( TInt /* aResourceId */ )
       
    61     {
       
    62     delete this;
       
    63     return 0;
       
    64     }
       
    65 
       
    66 //  End of File