photosgallery/viewframework/views/cloudview/src/glxcloudview.cpp
changeset 0 4e91876724a2
equal deleted inserted replaced
-1:000000000000 0:4e91876724a2
       
     1 /*
       
     2 * Copyright (c) 2008-2009 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:    Implementation of Cloud view
       
    15  *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 
       
    21 #include "glxcloudview.h" //class declaration
       
    22 
       
    23 // INCLUDE FILES
       
    24 #include "glxcloudviewimp.h" // class header
       
    25 #include <glxtracer.h>					// For Logs
       
    26 
       
    27 
       
    28 // ======== MEMBER FUNCTIONS ========
       
    29 // ---------------------------------------------------------------------------
       
    30 // Destructor
       
    31 // ---------------------------------------------------------------------------
       
    32 //
       
    33 CGlxCloudView::~CGlxCloudView()
       
    34 	{
       
    35 	TRACER("GLX_CLOUD::CGlxCloudView::~CGlxCloudView");
       
    36 	// No implementation
       
    37 	}
       
    38 
       
    39 // ---------------------------------------------------------------------------
       
    40 // Two-phased constructor.
       
    41 // ---------------------------------------------------------------------------
       
    42 // 
       
    43 EXPORT_C CGlxCloudView *CGlxCloudView::NewL
       
    44 (MGlxMediaListFactory*aMediaListFactory, const TDesC &aFileName, TInt
       
    45 		aViewResId, TInt aEmptyListResId, TInt aSoftKeyResId, TInt aSoftkeyMskDisabledId)
       
    46 	{
       
    47 	TRACER("GLX_CLOUD::CGlxCloudView::NewL");
       
    48 	return CGlxCloudViewImp::NewL(aMediaListFactory, aFileName, aViewResId,
       
    49 	 aEmptyListResId, aSoftKeyResId, aSoftkeyMskDisabledId);
       
    50 	}
       
    51 
       
    52 // ---------------------------------------------------------------------------
       
    53 // Two-phased constructor.
       
    54 // ---------------------------------------------------------------------------
       
    55 //
       
    56 EXPORT_C CGlxCloudView *CGlxCloudView::NewLC
       
    57 (MGlxMediaListFactory*aMediaListFactory, const TDesC &aFileName, TInt
       
    58 		aViewResId, TInt aEmptyListResId, TInt aSoftKeyResId, TInt aSoftkeyMskDisabledId)
       
    59 	{
       
    60 	TRACER("GLX_CLOUD::CGlxCloudView::NewLC");
       
    61 	return CGlxCloudViewImp::NewLC(aMediaListFactory, aFileName, aViewResId, 
       
    62 	 aEmptyListResId, aSoftKeyResId, aSoftkeyMskDisabledId);
       
    63 	}
       
    64 
       
    65 //  End of File