mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-15 17:40:35 -04:00
saving intermediate work for id cleaning
git-svn-id: http://svn.code.sf.net/p/retroshare/code/branches/v0.6-IdCleaning@7087 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
08d64be2e5
commit
33ab4ee3b5
61 changed files with 1016 additions and 1005 deletions
|
@ -174,7 +174,7 @@ class PersonEntry: public DirEntry
|
|||
{
|
||||
public:
|
||||
/* cleanup */
|
||||
PersonEntry(const std::string& pid) : id(pid) { return; }
|
||||
PersonEntry(const SSLIdType& pid) : id(pid) { return; }
|
||||
virtual ~PersonEntry() { return; }
|
||||
|
||||
DirEntry &operator=(DirEntry &src)
|
||||
|
@ -186,7 +186,7 @@ DirEntry &operator=(DirEntry &src)
|
|||
virtual uint32_t type() const { return DIR_TYPE_PERSON ; }
|
||||
|
||||
/* Data */
|
||||
std::string id;
|
||||
SSLIdType id;
|
||||
|
||||
/* Inherited members from FileEntry:
|
||||
int size - count for dirs
|
||||
|
@ -209,7 +209,7 @@ class Expression;
|
|||
class FileIndex
|
||||
{
|
||||
public:
|
||||
FileIndex(const std::string& pid);
|
||||
FileIndex(const SSLIdType& pid);
|
||||
~FileIndex();
|
||||
|
||||
/* control root entries */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue