mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-20 04:14:27 -04:00
* Addition of new File Transfer structure. (server / search / extralist / controller)
* Fixed up variable names in p3Qblog.cc * Cleaned up unused BaseInfo/PersonInfo/DirInfo in rstypes/rsiface * added new rsfiles interface (rough outline at the moment) git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@628 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
eeb13e7b18
commit
473f3f75f3
16 changed files with 1337 additions and 419 deletions
|
@ -91,15 +91,6 @@ virtual void unlockData() = 0;
|
|||
const std::list<FileTransferInfo> &getTransferList()
|
||||
{ return mTransferList; }
|
||||
|
||||
const std::list<PersonInfo> &getRemoteDirectoryList()
|
||||
{ return mRemoteDirList; }
|
||||
|
||||
const std::list<PersonInfo> &getLocalDirectoryList()
|
||||
{ return mLocalDirList; }
|
||||
|
||||
const PersonInfo *getPerson(std::string id);
|
||||
const DirInfo *getDirectory(std::string id, std::string path);
|
||||
|
||||
const std::list<FileInfo> &getRecommendList()
|
||||
{ return mRecommendList; }
|
||||
|
||||
|
@ -135,15 +126,9 @@ bool hasChanged(DataFlags set); /* resets it */
|
|||
|
||||
private:
|
||||
|
||||
/* Internal Fn for getting the Directory Entry */
|
||||
PersonInfo *getPersonMod(std::string id);
|
||||
DirInfo *getDirectoryMod(std::string id, std::string path);
|
||||
|
||||
void fillLists(); /* create some dummy data to display */
|
||||
|
||||
/* Internals */
|
||||
std::list<PersonInfo> mRemoteDirList;
|
||||
std::list<PersonInfo> mLocalDirList;
|
||||
std::list<FileTransferInfo> mTransferList;
|
||||
std::list<FileInfo> mRecommendList;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue