Initial Testa commit

This commit is contained in:
David Kaya
2017-02-03 00:49:10 +01:00
parent 26e441c1d7
commit 7ec51f7da7
13 changed files with 378 additions and 0 deletions

13
progressbar.h Normal file
View File

@@ -0,0 +1,13 @@
#ifndef PROGRESSBAR_H
#define PROGRESSBAR_H
class ProgressBar
{
public:
static void show(float progres);
static void hide();
private:
ProgressBar() {}
};
#endif // PROGRESSBAR_H