diff -r 000000000000 -r f72a12da539e idlehomescreen/sapiwrapper/cpswrapper/inc/publishermap.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/idlehomescreen/sapiwrapper/cpswrapper/inc/publishermap.h Thu Dec 17 08:40:49 2009 +0200 @@ -0,0 +1,85 @@ +/* + * Copyright (c) 2008 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: Presents publisher info map + * + */ + +#ifndef PUBLISHERMAP_H +#define PUBLISHERMAP_H + +#include + + +namespace cpswrapper + { + // Forward declarations + class CPublisherInfo; + + /** + * Presents publisher info map + * + * + * @code + * + * @endcode + * + * @lib cpswrapper.lib + * @since S60 v5.0 + */ + NONSHARABLE_CLASS( CPublisherMap ) : public CBase + { + public: + /** + * Two-phased constructor. + */ + IMPORT_C static CPublisherMap* NewL(); + IMPORT_C static CPublisherMap* NewLC(); + + /** + * Destructor. + */ + IMPORT_C ~CPublisherMap(); + + protected: + // constructors + CPublisherMap(); + + void ConstructL(); + + public: + // new functions + + /** + * Adds publisher info + * + * @param aPublisherInfo publisher info + */ + IMPORT_C void AddPublisherInfoL(CPublisherInfo* aPublisherInfo); + + /** + * Gets publisher infos + * + * @return Array of publisher infos + */ + IMPORT_C RPointerArray& PublisherInfo() const; + + private: + // data + // Publisher info array, owned + mutable RPointerArray iPublisherInfo; + }; + } + +#endif // PUBLISHERMAP_H +// End of file