diff -r 000000000000 -r dfb7c4ff071f commsfwtools/preparedefaultcommsdatabase/src/netmetalib.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/commsfwtools/preparedefaultcommsdatabase/src/netmetalib.cpp Thu Dec 17 09:22:25 2009 +0200 @@ -0,0 +1,68 @@ +// Copyright (c) 2004-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: +// Cut down version of NetMeta.lib to allow Commsdat to build on the TOOLS2 platform +// +// + +/** + @file NetMetaLib.cpp + @internalTechnology +*/ +#ifdef __TOOLS2__ +// For the TOOLS2 platform + +#include "netmetalib.h" + +using namespace Meta; + + +EXPORT_C TMetaVTableIterator::TMetaVTableIterator(MMetaData const* aMetaData) : + iEntry(aMetaData->GetVDataTable() + 1) + { + } + + +EXPORT_C TMetaVTableIterator::~TMetaVTableIterator() + { + } + + +TBool TMetaVTableIterator::IsNextEntryPresent() + { + if (iEntry->iOffset == 0) + { + return EFalse; + } + if (iEntry->iMetaNewL == NULL) + { + typedef SVDataTableEntry* (*TMetaBaseTableNewL)(); + iEntry = reinterpret_cast(iEntry->iOffset)(); + iEntry++; + return IsNextEntryPresent(); + } + return ETrue; + } + + +EXPORT_C SVDataTableEntry const* TMetaVTableIterator::operator++(TInt /*aDummy*/) + { + if (!IsNextEntryPresent()) + return NULL; + + SVDataTableEntry const* entry = iEntry; + iEntry++; + return entry; + } + +#endif