diff -r 8e5041d13c84 -r 32469d7d46ff homescreensrv_plat/contentstorage_api/caservice.h --- a/homescreensrv_plat/contentstorage_api/caservice.h Fri Apr 16 15:16:09 2010 +0300 +++ b/homescreensrv_plat/contentstorage_api/caservice.h Mon May 03 12:48:45 2010 +0300 @@ -44,17 +44,17 @@ static QSharedPointer instance(); - CaEntry * getEntry(int entryId) const; - QList getEntries(const QList &entryIdList) const; - QList getEntries(const CaQuery &query) const; + QSharedPointer getEntry(int entryId) const; + QList< QSharedPointer > getEntries(const QList &entryIdList) const; + QList< QSharedPointer > getEntries(const CaQuery &query) const; QList getEntryIds(const CaQuery &query) const; - CaEntry *createEntry(const CaEntry &entry) const; + QSharedPointer createEntry(const CaEntry &entry) const; bool removeEntry(int entryId) const; bool removeEntry(const CaEntry &entry) const; bool removeEntries(const QList &entryIdList) const; - bool removeEntries(const QList &entryList) const; + bool removeEntries(const QList< QSharedPointer > &entryList) const; bool updateEntry(const CaEntry &entry) const; bool touch(const CaEntry &entry) const; @@ -66,7 +66,7 @@ bool insertEntriesIntoGroup(int groupId, const QList &entryIdList, int beforeEntryId) const; bool insertEntriesIntoGroup(const CaEntry &group, - const QList &entryList, int beforeEntryId) const; + const QList< QSharedPointer > &entryList, int beforeEntryId) const; bool removeEntryFromGroup(int groupId, int entryId) const; bool removeEntryFromGroup(const CaEntry &group, @@ -74,7 +74,7 @@ bool removeEntriesFromGroup(int groupId, const QList &entryIdList) const; bool removeEntriesFromGroup(const CaEntry &group, - const QList &entryList) const; + const QList< QSharedPointer > &entryList) const; bool appendEntryToGroup(int groupId, int entryId) const; bool appendEntryToGroup(const CaEntry &group, @@ -82,7 +82,7 @@ bool appendEntriesToGroup(int groupId, const QList &entryIdList) const; bool appendEntriesToGroup(const CaEntry &group, - const QList &entryList) const; + const QList< QSharedPointer > &entryList) const; bool prependEntryToGroup(int groupId, int entryId) const; bool prependEntryToGroup(const CaEntry &group, @@ -90,7 +90,7 @@ bool prependEntriesToGroup(int groupId, const QList &entryIdList) const; bool prependEntriesToGroup(const CaEntry &group, - const QList &entryList) const; + const QList< QSharedPointer > &entryList) const; bool executeCommand(int entryId, const QString &command = caCmdOpen) const;