mirror of
https://github.com/YACReader/yacreader
synced 2025-05-25 09:50:33 -04:00
13 lines
176 B
C++
13 lines
176 B
C++
#ifndef LIBRARIES_UPDATER_H
|
|
#define LIBRARIES_UPDATER_H
|
|
|
|
class LibrariesUpdater
|
|
{
|
|
public:
|
|
LibrariesUpdater();
|
|
|
|
void updateIfNeeded();
|
|
};
|
|
|
|
#endif // LIBRARIES_UPDATER_H
|