fixed compilation of file lists code base

This commit is contained in:
mr-alice 2016-07-20 16:10:51 -04:00
parent 3e20b9ddf7
commit 63063102bb
7 changed files with 80 additions and 19 deletions

View file

@ -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() ;
};