mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-13 11:32:48 -04:00
solve compile faults.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@725 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
c845e40aa8
commit
3af7d41d7f
5 changed files with 31 additions and 15 deletions
|
@ -41,6 +41,7 @@
|
|||
|
||||
#include "ft/ftfilecreator.h"
|
||||
#include "ft/ftdatamultiplex.h"
|
||||
#include "ft/ftcontroller.h"
|
||||
|
||||
#include "util/rsthreads.h"
|
||||
|
||||
|
@ -98,6 +99,7 @@ public:
|
|||
|
||||
class ftFileStatus
|
||||
{
|
||||
public:
|
||||
enum Status {
|
||||
PQIFILE_INIT,
|
||||
PQIFILE_NOT_ONLINE,
|
||||
|
@ -113,7 +115,8 @@ class ftFileStatus
|
|||
PQIFILE_FAIL_NOT_READ,
|
||||
PQIFILE_FAIL_BAD_PATH
|
||||
};
|
||||
public:
|
||||
|
||||
ftFileStatus():hash(0),stat(PQIFILE_INIT) {}
|
||||
ftFileStatus(std::string hash_in):hash(hash_in),stat(PQIFILE_INIT)
|
||||
{
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue