An open API service indexing awesome lists of open source software.

https://github.com/dacap/stopwatch


https://github.com/dacap/stopwatch

Last synced: 16 days ago
JSON representation

Awesome Lists containing this project

README

          

# Stopwatch
*Copyright (C) 2019 David Capello*

[![MIT Licensed](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.txt)

Outputs the time elapsed since the `Stopwatch()` constructor or the
last `watch()`/`reset()` call.

Usage:

```c++
{
Stopwatch a;
...
a.watch("first algorithm");
...
a.watch("second algorithm");
...
a.watch("third algorithm");
}
```