diff -r 8b0c979bbe8c -r ac5daea24fb0 apengine/apeng/src/APNetworks.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/apengine/apeng/src/APNetworks.cpp Wed Oct 27 17:43:56 2010 +0300 @@ -0,0 +1,141 @@ +/* +* Copyright (c) 2002 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: Declaration of the CApNetworks class. +* +*/ + + +// INCLUDE FILES +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "ApNetworks.h" +#include "ApEngineLogger.h" +#include "ApEngineCommons.h" + + + + +// LOCAL CONSTANTS AND MACROS + +// LOCAL FUNCTION PROTOTYPES + +// ================= MEMBER FUNCTIONS ======================= +// Two-phased constructor. +// --------------------------------------------------------- +// CApNetworks::NewLC +// --------------------------------------------------------- +// +EXPORT_C CApNetworks* CApNetworks::NewLC( CCommsDatabase& aDb ) + { + return NULL; + } + + +// Destructor +// --------------------------------------------------------- +// CApNetworks::~CApNetworks +// --------------------------------------------------------- +// +EXPORT_C CApNetworks::~CApNetworks() + { + } + + +// C++ default constructor can NOT contain any code that +// might leave. +// +// --------------------------------------------------------- +// CApNetworks::CApNetworks +// --------------------------------------------------------- +// +EXPORT_C CApNetworks::CApNetworks() +:iCount( 0 ) + { + } + + +// Symbian OS default constructor can leave. +// --------------------------------------------------------- +// CApNetworks::ConstructL +// --------------------------------------------------------- +// +EXPORT_C void CApNetworks::ConstructL( CCommsDatabase& aDb ) + + { + } + + + +// --------------------------------------------------------- +// CApNetworks::Count +// --------------------------------------------------------- +// +EXPORT_C TUint32 CApNetworks::Count() const + { + return 0; + } + + +// --------------------------------------------------------- +// CApNetworks::Name +// --------------------------------------------------------- +// +EXPORT_C const TDesC& CApNetworks::NameL( TUint32 aUid ) const + { + User::Leave( KErrNotSupported ); + } + + + + + + +// --------------------------------------------------------- +// CApNetworks::AllListItemDataL +// --------------------------------------------------------- +// +EXPORT_C TInt CApNetworks::AllListItemDataL( CApNetworkItemList& aList ) + { + return 0; + } + + + + +// ================= OTHER EXPORTED FUNCTIONS ============== + +// ================== OTHER MEMBER FUNCTIONS =============== + + + +// --------------------------------------------------------- +// CApNetworks::DoUpdate +// --------------------------------------------------------- +// +TInt CApNetworks::DoUpdateL() + { + return KErrNotFound; + } + + + +// End of File