mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-13 11:32:48 -04:00
ftFileStatus contruct failure
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@726 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
3af7d41d7f
commit
e8d21abdd5
10 changed files with 53 additions and 9 deletions
|
@ -116,11 +116,9 @@ public:
|
|||
PQIFILE_FAIL_BAD_PATH
|
||||
};
|
||||
|
||||
ftFileStatus():hash(0),stat(PQIFILE_INIT) {}
|
||||
ftFileStatus(std::string hash_in):hash(hash_in),stat(PQIFILE_INIT)
|
||||
{
|
||||
return;
|
||||
}
|
||||
ftFileStatus():hash(""),stat(PQIFILE_INIT) {}
|
||||
ftFileStatus(std::string hash_in):hash(hash_in),stat(PQIFILE_INIT) {}
|
||||
|
||||
std::string hash;
|
||||
Status stat;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue