gssettingsuis/Gs/tsrc/public/basic/GSFramework/TestGSBaseView.cpp
branchRCL_3
changeset 25 7e0eff37aedb
parent 0 8c5d936e5675
equal deleted inserted replaced
24:8ee96d21d9bf 25:7e0eff37aedb
       
     1 /*
       
     2 * Copyright (c) 2002 - 2007 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:
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include "TestGSBaseView.h"
       
    21 
       
    22 
       
    23 	
       
    24 // CONSTRUCTION
       
    25 CTestGSBaseView* CTestGSBaseView::NewL()
       
    26     {
       
    27     CTestGSBaseView* self = CTestGSBaseView::NewLC();
       
    28     CleanupStack::Pop();
       
    29 
       
    30     return self;
       
    31     }
       
    32 
       
    33 CTestGSBaseView* CTestGSBaseView::NewLC()
       
    34     {
       
    35     CTestGSBaseView* self = new( ELeave ) CTestGSBaseView();
       
    36     CleanupStack::PushL( self );
       
    37 
       
    38     self->ConstructL();
       
    39 
       
    40     return self;
       
    41     }
       
    42 
       
    43 // Destructor 
       
    44 CTestGSBaseView::~CTestGSBaseView()
       
    45     {
       
    46     }
       
    47 
       
    48 // Default constructor
       
    49 CTestGSBaseView::CTestGSBaseView()
       
    50     {
       
    51     }
       
    52 
       
    53 // Second phase construct
       
    54 void CTestGSBaseView::ConstructL()
       
    55     {
       
    56     }
       
    57 
       
    58 //  METHODS
       
    59 
       
    60 void CTestGSBaseView::NewContainerL()
       
    61     {
       
    62     }
       
    63 
       
    64 void CTestGSBaseView::HandleListBoxSelectionL()
       
    65     {
       
    66     }
       
    67     
       
    68 void CTestGSBaseView::GetCaptionL( TDes& aCaption ) const
       
    69 	{
       
    70 	
       
    71 	}
       
    72 
       
    73 TUid CTestGSBaseView::Id() const
       
    74 	{
       
    75 	
       
    76 	}
       
    77 	
       
    78 void CTestGSBaseView::SetNaviPaneL()
       
    79 	{
       
    80 	CGSBaseView::SetNaviPaneL();
       
    81 	}
       
    82 	
       
    83 void CTestGSBaseView::CreateNaviPaneContextL( TInt aResourceId )
       
    84 	{
       
    85 	CGSBaseView::CreateNaviPaneContextL( aResourceId );
       
    86 	}
       
    87 //  END OF FILE