Signapse
ProgressBar.cpp
Go to the documentation of this file.
1#include "ProgressBar.h"
2#include <stdio.h>
3#include "iostream"
4
6 SetThreshold(100);
7}
8
9int ProgressBar::GetProgress(std::string result, std::string task){
10 if(task == result){
11 count++;
12 }
13 int progress = 100*count/threshold;
14 return progress;
15}
16
18 count = 0;
19}
20
22 threshold = thres;
23}
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