mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-21 21:04:32 -04:00
updated rsnxsitem test and added appropriate fixes.
fixed undeclared virtual methods in rsdataservice, added test files overloaded assignment op for Rstlvbindata git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-new_cache_system@5187 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
add4715da0
commit
768cf49da6
13 changed files with 220 additions and 302 deletions
|
@ -19,7 +19,7 @@ public:
|
|||
* @param cache whether to store retrieval in memory for faster later retrieval
|
||||
* @return error code
|
||||
*/
|
||||
int retrieveMsgs(const std::string& grpId, std::map<std::string, RsGxsMsg*> msg, bool cache);
|
||||
int retrieveMsgs(const std::string& grpId, std::map<std::string, RsNxsMsg*> msg, bool cache);
|
||||
|
||||
/*!
|
||||
* Retrieves latest version of groups for a service
|
||||
|
@ -28,7 +28,7 @@ public:
|
|||
* @param cache whether to store retrieval in mem for faster later retrieval
|
||||
* @return error code
|
||||
*/
|
||||
int retrieveGrps(std::set<std::string, RsGxsGroup*>& grp, bool cache);
|
||||
int retrieveGrps(std::map<std::string, RsNxsGrp*>& grp, bool cache);
|
||||
|
||||
/*!
|
||||
* Retrieves all the versions of a group
|
||||
|
@ -44,7 +44,7 @@ public:
|
|||
* @param msgId the id of the message to get versions for
|
||||
* @return errCode
|
||||
*/
|
||||
int retrieveMsgVersions(const std::string &grpId, const std::string msgId, std::set<RsNxsMsg *> grp, bool cache);
|
||||
int retrieveMsgVersions(const std::string &grpId, const std::string& msgId, std::set<RsNxsMsg *>& grp, bool cache);
|
||||
|
||||
/*!
|
||||
* @param msgId the id of the message to retrieve
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue