final interface, before starting on connectivity

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@561 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
chrisparker126 2008-05-24 15:10:59 +00:00
parent 7d571f6e2c
commit fe22d0b651

View file

@ -46,21 +46,21 @@ extern RsQblog *rsQblog;
virtual ~RsQblog() { return; } virtual ~RsQblog() { return; }
/** /**
* allow user to set his status * allows user to set his status
* @param status The status of the user * @param status The status of the user
*/ */
virtual bool setStatus(std::string &status) = 0; virtual bool setStatus(const std::string &status) = 0;
/** /**
* get status of users friends * returns reference to map of usrs and their status
* * @param usrStatus returns map to usr and their status
**/ */
virtual bool getStatus(std::string &status) = 0; virtual bool getStatus(std::map<std::string, std::string> &usrStatus) = 0;
/** /**
* choose whether to filter or not * choose whether to filter or not
* @param filterSwitch * @param filterSwitch
**/ */
virtual bool setFilterSwitch(bool &filterSwitch) = 0; virtual bool setFilterSwitch(bool &filterSwitch) = 0;
/** /**
@ -71,19 +71,19 @@ virtual ~RsQblog() { return; }
/** /**
* retrieve usrs filterSwitch status * retrieve usrs filterSwitch status
**/ */
virtual bool getFilterSwitch(void) = 0; virtual bool getFilterSwitch(void) = 0;
/** /**
* add user id to filter list * add user id to filter list
* @param usr id to add to filter list * @param usr id to add to filter list
**/ */
virtual bool addToFilter(std::string &usrId) = 0; virtual bool addToFilter(std::string &usrId) = 0;
/** /**
* remove friend from filter list * remove friend from filter list
* @param id The user's frined's id * @param id The user's frined's id
**/ */
virtual bool removeFiltFriend(std::string &usrId) = 0; virtual bool removeFiltFriend(std::string &usrId) = 0;
/** /**
@ -91,20 +91,20 @@ virtual ~RsQblog() { return; }
* @param usrId the usr whose fav song you want * @param usrId the usr whose fav song you want
* @param favSong puts ref for fav song here * @param favSong puts ref for fav song here
*/ */
virtual bool getProfile(std::string &usrId, std::string &favSong) = 0; virtual bool getProfile(std::map<std::string, std::string> &profile) = 0;
/** /**
* for now just fav song, TODO: must find way to link to rs profile * for now just fav song, TODO: must find way to link to rs profile
*/ */
virtual bool setProfile(std::string &favSong) = 0; virtual bool setProfile(const std::string &favSong) = 0;
/** /**
* send blog info, will send to a data structure for transmission * send blog info, will send to a data structure for transmission
* @param msg The msg the usr wants to send * @param msg The msg the usr wants to send
*/ */
virtual bool sendBlog(std::string &msg) = 0; virtual bool sendBlog(const std::string &msg) = 0;
/** /**
* retrieve blog of a usr * retrieve blog of a usr