Signapse
All Classes Files Functions Variables Macros
Public Member Functions | Protected Attributes | List of all members
ProgressBar Class Reference

#include <ProgressBar.h>

Collaboration diagram for ProgressBar:
Collaboration graph

Public Member Functions

 ProgressBar ()
 
int GetProgress (std::string s, std::string task)
 
void ResetProgress ()
 
void SetThreshold (int thres)
 

Protected Attributes

int threshold
 
int count = 0
 

Detailed Description

Simple class for keeping track of progress in learning a sign

Definition at line 10 of file ProgressBar.h.

Constructor & Destructor Documentation

◆ ProgressBar()

ProgressBar::ProgressBar ( )

Definition at line 5 of file ProgressBar.cpp.

5 {
6 SetThreshold(100);
7}
void SetThreshold(int thres)
Definition: ProgressBar.cpp:21

Member Function Documentation

◆ GetProgress()

int ProgressBar::GetProgress ( std::string  s,
std::string  task 
)

Definition at line 9 of file ProgressBar.cpp.

9 {
10 if(task == result){
11 count++;
12 }
13 int progress = 100*count/threshold;
14 return progress;
15}

◆ ResetProgress()

void ProgressBar::ResetProgress ( )

Definition at line 17 of file ProgressBar.cpp.

17 {
18 count = 0;
19}

◆ SetThreshold()

void ProgressBar::SetThreshold ( int  thres)

Definition at line 21 of file ProgressBar.cpp.

21 {
22 threshold = thres;
23}

Member Data Documentation

◆ count

int ProgressBar::count = 0
protected

Definition at line 18 of file ProgressBar.h.

◆ threshold

int ProgressBar::threshold
protected

Definition at line 17 of file ProgressBar.h.


The documentation for this class was generated from the following files: