diff -r e0ec97ec3cc4 -r 98924d2efce9 creator/engine/inc/creator_contactsetcache.h --- a/creator/engine/inc/creator_contactsetcache.h Wed Jun 23 18:13:31 2010 +0300 +++ b/creator/engine/inc/creator_contactsetcache.h Tue Jul 06 14:17:03 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;