Signapse
All Classes Files Functions Variables Macros
ProgressBar.h
Go to the documentation of this file.
1#ifndef SIGNAPSE_PROGRESSBAR_H
2#define SIGNAPSE_PROGRESSBAR_H
3
4#include <stdio.h>
5
6#include "Scene.h"
11public:
13 int GetProgress(std::string s, std::string task);
14 void ResetProgress();
15 void SetThreshold(int thres);
16protected:
18 int count = 0;
19};
20
21#endif
void ResetProgress()
Definition: ProgressBar.cpp:17
int GetProgress(std::string s, std::string task)
Definition: ProgressBar.cpp:9
void SetThreshold(int thres)
Definition: ProgressBar.cpp:21