diff -r 000000000000 -r 8e480a14352b messagingfw/biomsgfw/wappsrc/CWappBookmark.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/messagingfw/biomsgfw/wappsrc/CWappBookmark.cpp Mon Jan 18 20:36:02 2010 +0200 @@ -0,0 +1,75 @@ +// Copyright (c) 2003-2009 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: +// + +#include "CWappBookmark.h" +#include + +CWappBookmark* CWappBookmark::NewL() + { + CWappBookmark* self = CWappBookmark::NewLC(); + CleanupStack::Pop(); + return self; + } + +CWappBookmark* CWappBookmark::NewLC() + { + CWappBookmark* self = new (ELeave) CWappBookmark; + CleanupStack::PushL(self); + self->ConstructL(); + return self; + } + +void CWappBookmark::ConstructL() + { + SetNameL(KNullDesC); + SetUrlL(KNullDesC); + } + +CWappBookmark::~CWappBookmark() + { + delete iBmkName; + delete iBmkUrl; + } + +const TDesC& CWappBookmark::Name() const + { + return *iBmkName; //return a constant pointer descriptor + } + +// +const TDesC& CWappBookmark::Url() const + { + return iBmkUrl->Addr(); + } + +// SetNameL() - Allocate memory and set Name field, delete +// any currently allocated memory, +// +void CWappBookmark::SetNameL(const TDesC& aDes) + { + HBufC* name = aDes.AllocL(); + delete iBmkName; + iBmkName = name; + } + +// SetUrlL() - Sets URL field, deleting any currently allocated memory, setting +// pointer to newly allocated HBufC +// +void CWappBookmark::SetUrlL(const TDesC& aDes) + { + CIpAddress* tempAddr = CIpAddress::NewL(aDes); + delete iBmkUrl; + iBmkUrl = tempAddr; + }