diff -r d8e625c87f33 -r e7a04a6385be creator/engine/inc/creator_contactsetcache.h --- a/creator/engine/inc/creator_contactsetcache.h Thu Jun 17 15:34:52 2010 +0300 +++ b/creator/engine/inc/creator_contactsetcache.h Thu Jun 24 14:55:55 2010 +0300 @@ -22,21 +22,19 @@ #define CREATORCONTACTSETCACHE_H_ #include -#include // Forward declarations class CContactLinkCacheImp; -QTM_USE_NAMESPACE class CCreatorContactSet : public CBase { public: static CCreatorContactSet* NewL(TInt aLinkId, TInt aNumOfExistingContacts); virtual ~CCreatorContactSet(); - void AppendL(QContactLocalId); + void AppendL(TUint32); TInt NumberOfExistingContacts() const; - RArray ContactLinks(); - const RArray ContactLinks() const; + RArray ContactLinks(); + const RArray ContactLinks() const; TInt LinkId() const; @@ -45,15 +43,15 @@ //void ConstructL(); TInt iLinkId; TInt iNumOfExistingContacts; - RArray iContactLinks; + RArray iContactLinks; }; class MContactLinkCache { public: virtual void AppendL(CCreatorContactSet* aContactSet) = 0; - virtual RArray ContactLinks(TInt aLinkId) = 0; - virtual const RArray ContactLinks(TInt aLinkId) const = 0; + virtual RArray ContactLinks(TInt aLinkId) = 0; + virtual const RArray ContactLinks(TInt aLinkId) const = 0; virtual RPointerArray& ContactSets() = 0; virtual const RPointerArray& ContactSets() const = 0; virtual const CCreatorContactSet& ContactSet(TInt aLinkId) const = 0;