MCPcopy Create free account
hub / github.com/computationalpathologygroup/ASAP / operator++

Method operator++

core/ProgressMonitor.cpp:26–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

24}
25
26unsigned int ProgressMonitor::operator++() {
27 setProgress(_progress + 1);
28 return _progress;
29}
30unsigned int ProgressMonitor::operator += (unsigned int increment) {
31 setProgress(_progress + increment);
32 return _progress;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected