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
This commit is contained in:
Luis Ángel San Martín
2018-04-28 10:24:10 +02:00
parent a4941553ec
commit c593e3570d
3 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,13 @@
#ifndef LIBRARIES_UPDATER_H
#define LIBRARIES_UPDATER_H
class LibrariesUpdater
{
public:
LibrariesUpdater();
void updateIfNeeded();
};
#endif // LIBRARIES_UPDATER_H