mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-11-24 01:33:13 -05:00
added copy links from file hierarchy
This commit is contained in:
parent
f98edd400e
commit
e1d5014288
4 changed files with 74 additions and 10 deletions
|
|
@ -144,7 +144,7 @@ class FileTree
|
|||
public:
|
||||
virtual ~FileTree() {}
|
||||
|
||||
static FileTree *create(void *ref) ;
|
||||
static FileTree *create(const DirDetails& dd, bool remote) ;
|
||||
static FileTree *create(const std::string& radix64_string) ;
|
||||
|
||||
virtual std::string toRadix64() const =0 ;
|
||||
|
|
@ -160,6 +160,8 @@ public:
|
|||
virtual uint32_t root() const { return 0;}
|
||||
virtual bool getDirectoryContent(uint32_t index,std::vector<uint32_t>& subdirs,std::vector<FileData>& subfiles) const = 0;
|
||||
|
||||
virtual void print() const=0;
|
||||
|
||||
uint32_t mTotalFiles ;
|
||||
uint64_t mTotalSize ;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue