diff -r 8b0c979bbe8c -r ac5daea24fb0 ipcm_pub/access_point_engine_api/inc/APNetworks.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ipcm_pub/access_point_engine_api/inc/APNetworks.h Wed Oct 27 17:43:56 2010 +0300 @@ -0,0 +1,139 @@ +/* +* 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. +* +*/ + + +#ifndef CAPNETWORKS_H +#define CAPNETWORKS_H + +// Deprecation warning +#warning This header file has been deprecated and will be fully removed between weeks 12 and 18 of 2010. See Polonium CR #153 for details. + + +// INCLUDES +#include +#include +#include + +// FORWARD DECLARATIONS +class CApNetworkItem; +class CApNetworkItemList; + +// CLASS DECLARATION + +/** +* This class is used to help client's network selection. +* +*/ +NONSHARABLE_CLASS( CApNetworks ) :public CBase + { + public: // Constructors and destructor + + /** + * Two-phased constructor. Leaves on failure, places instance + * on cleanup stack. + * @param aDb a reference to a CCommsDataBase. + * @return The constructed CApNetworks. + * + * @deprecated + */ + IMPORT_C static CApNetworks* NewLC( CCommsDatabase& aDb ); + + + /** + * Destructor. + * + * @deprecated + */ + IMPORT_C virtual ~CApNetworks(); + + + private: // Constructors + + /** + * C++ default constructor. + * + * @deprecated + */ + IMPORT_C CApNetworks(); + + /** + * Second-phase constructor. + * @param aDb The database + * + * @deprecated + */ + IMPORT_C void ConstructL( CCommsDatabase& aDb ); + + + + public: // New functions + + /** + * Counts the items in the list + * @return The number of items in the list. + * + * @deprecated + */ + IMPORT_C TUint32 Count() const; + + + /** + * Gets the name of the network group with the given UID + * Ownership of the returned text is not passed. + * @param aUid The uid of the network item + * @return The name of the network group + * + * @deprecated + */ + IMPORT_C const TDesC& NameL( TUint32 aUid ) const; + + + + /** + * Provides all data in a CApNetworkItemList array. + * @param aList A reference to a CApNetworkItemList object + * to hold the values. + * @return The number of items in the list. + * All elements in the aList array and their memory + * will be freed inside the routine. + * The routine expands or shrinks the array as necessary + * to minimize memory consumption. + * + * @deprecated + */ + IMPORT_C TInt AllListItemDataL( CApNetworkItemList& aList ); + + + private: + /** + * This function updates the member data according to the + * current filter settings. + * @return Error code. + */ + TInt DoUpdateL(); + + + + private: // Data + CCommsDatabase* iDb; // Does not own it! + CApNetworkItemList* iApList; + TInt iCount; + }; + +#endif // CAPNETWORKS_H + +// End of File