* Added FlagFilter to TokenOptions.

* Added data to posted data
 * modified dummyData to have nested Comments.



git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.5-gxs-b1@5365 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
drbob 2012-08-01 01:44:23 +00:00
parent 3f5c96ab8a
commit c3ea5cbab6
4 changed files with 174 additions and 12 deletions

View file

@ -77,6 +77,9 @@ class RsPostedPost: public RsPostedMsg
mMeta.mMsgFlags = RSPOSTED_MSGTYPE_POST;
return;
}
std::string mLink;
std::string mNotes;
};
@ -99,6 +102,8 @@ class RsPostedComment: public RsPostedMsg
mMeta.mMsgFlags = RSPOSTED_MSGTYPE_COMMENT;
return;
}
std::string mComment;
};