yacreader/YACReaderLibraryServer/libraries_updater.h
Luis Ángel San Martín c593e3570d Add the ability to update libraries to new versions in the headless server
It checks the libraries on the start up. It will block the app until everyting it is ready. C
2018-04-28 10:24:10 +02:00

14 lines
177 B
C++

#ifndef LIBRARIES_UPDATER_H
#define LIBRARIES_UPDATER_H
class LibrariesUpdater
{
public:
LibrariesUpdater();
void updateIfNeeded();
};
#endif // LIBRARIES_UPDATER_H