mirror of
https://github.com/ysoftdevs/Testa.git
synced 2026-01-11 14:20:23 +01:00
14 lines
192 B
C++
14 lines
192 B
C++
#ifndef PROGRESSBAR_H
|
|
#define PROGRESSBAR_H
|
|
|
|
class ProgressBar
|
|
{
|
|
public:
|
|
static void show(float progres);
|
|
static void hide();
|
|
private:
|
|
ProgressBar() {}
|
|
};
|
|
|
|
#endif // PROGRESSBAR_H
|