1
0
This commit is contained in:
Scott E. Graves
2017-05-11 21:59:02 -05:00
parent a2d0a1cef5
commit d14e812155
6 changed files with 37 additions and 11 deletions

View File

@@ -76,6 +76,7 @@ public:
Property(std::uint32_t, Redundancy, public, private)
Property(std::uint32_t, UploadProgress, public, private)
Property(std::uint32_t, Expiration, public, private)
Property(bool, Removed, public, public)
};
class SIADRIVE_EXPORTABLE _CSiaFileTree :

View File

@@ -73,6 +73,8 @@ public:
_UploadStatus GetUploadStatus(const SString& siaPath);
CSiaError<_UploadErrorCode> Remove(const SString& siaPath);
std::shared_ptr<std::vector<CSiaFilePtr>> GetUploadFileList() const;
void ProcessFileTree(CSiaFileTreePtr fileTree);
bool CheckFileRemoved(const SString& siaPath);
};
typedef CUploadManager::_UploadStatus UploadStatus;