upnpharvester/common/cmlibrary/src/cmsqlimageitem.cpp
branchIOP_Improvements
changeset 40 08b5eae9f9ff
parent 39 6369bfd1b60d
child 41 b4d83ea1d6e2
--- a/upnpharvester/common/cmlibrary/src/cmsqlimageitem.cpp	Mon Nov 01 13:44:24 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,124 +0,0 @@
-/*
-* Copyright (c) 2006-2007 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description:      Capsulating sql items
-*
-*/
-
-
-
-
-
-
-#include <e32std.h>
-#include "cmsqlimageitem.h"
-#include "msdebug.h"
-
-// ======== LOCAL FUNCTIONS ========
-// ---------------------------------------------------------------------------
-// NewL
-// ---------------------------------------------------------------------------
-//
-EXPORT_C CCmSqlImageItem* CCmSqlImageItem::NewL()
-    {   
-    CCmSqlImageItem* self = CCmSqlImageItem::NewLC();
-    CleanupStack::Pop( self );
-    return self;
-    }
- 
-// ---------------------------------------------------------------------------
-// NewLC
-// ---------------------------------------------------------------------------
-//    
-EXPORT_C CCmSqlImageItem* CCmSqlImageItem::NewLC()
-    {    
-    CCmSqlImageItem* self = new ( ELeave ) CCmSqlImageItem();
-    CleanupStack::PushL( self );
-    self->ConstructL(); 
-    return self;  
-    }    
-
-// ---------------------------------------------------------------------------
-// Destructor
-// ---------------------------------------------------------------------------
-//
-EXPORT_C CCmSqlImageItem::~CCmSqlImageItem()
-    {
-    delete iDescription;
-    }
-
-// ---------------------------------------------------------------------------
-// CCmSqlImageItem::SetResolutionId
-// ---------------------------------------------------------------------------
-//        
-EXPORT_C void CCmSqlImageItem::SetResolutionId( const TInt64 aResolutionId )
-    {
-    iResolutionId = aResolutionId;
-    }
-
-// ---------------------------------------------------------------------------
-// CCmSqlImageItem::SetDescription
-// ---------------------------------------------------------------------------
-//        
-EXPORT_C void CCmSqlImageItem::SetDescriptionL( const TDesC8& aDescription )
-    {
-    delete iDescription;
-    iDescription = NULL;
-
-    if( &aDescription )
-        {
-        iDescription = aDescription.AllocL();        
-        }
-    else
-        {
-        iDescription = KNullDesC8().AllocL();
-        }    
-    }
-        
-// ---------------------------------------------------------------------------
-// CCmSqlImageItem::ResolutionId
-// ---------------------------------------------------------------------------
-// 
-EXPORT_C TInt64 CCmSqlImageItem::ResolutionId() const
-    {
-    return iResolutionId;
-    }
-
-// ---------------------------------------------------------------------------
-// CCmSqlImageItem::Description
-// ---------------------------------------------------------------------------
-// 
-EXPORT_C TDesC8& CCmSqlImageItem::Description() const
-    {
-    return *iDescription;
-    }
-
-// ---------------------------------------------------------------------------
-// Default constructor
-// ---------------------------------------------------------------------------
-//    
-CCmSqlImageItem::CCmSqlImageItem()
-    {               
-    }
-
-// ---------------------------------------------------------------------------
-// ConstructL
-// ---------------------------------------------------------------------------
-//    
-void CCmSqlImageItem::ConstructL()
-    {
-    iDescription = KNullDesC8().AllocL();
-    }    
-
-// End of file
-