mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-04 15:15:15 -04:00
fixed compilation of file lists code base
This commit is contained in:
parent
3e20b9ddf7
commit
63063102bb
7 changed files with 80 additions and 19 deletions
|
@ -11,15 +11,19 @@ class DirectoryUpdater
|
|||
// Does some updating job. Crawls the existing directories and checks wether it has been updated
|
||||
// recently enough. If not, calls the directry source.
|
||||
//
|
||||
void tick() ;
|
||||
virtual void tick() =0;
|
||||
|
||||
//
|
||||
};
|
||||
|
||||
class LocalDirectoryUpdater: public DirectoryUpdater
|
||||
{
|
||||
public:
|
||||
virtual void tick() ;
|
||||
};
|
||||
|
||||
class RemoteDirectoryUpdater: public DirectoryUpdater
|
||||
{
|
||||
public:
|
||||
virtual void tick() ;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue