mirror of
https://github.com/YACReader/yacreader
synced 2025-05-27 19:00:29 -04:00
It checks the libraries on the start up. It will block the app until everyting it is ready. C
14 lines
177 B
C++
14 lines
177 B
C++
#ifndef LIBRARIES_UPDATER_H
|
|
#define LIBRARIES_UPDATER_H
|
|
|
|
|
|
class LibrariesUpdater
|
|
{
|
|
public:
|
|
LibrariesUpdater();
|
|
|
|
void updateIfNeeded();
|
|
};
|
|
|
|
#endif // LIBRARIES_UPDATER_H
|