Thread++
Client-Server Multithreading with C++
Classes | Typedefs | Functions
Timer.h File Reference

Header for the class CTimer. More...

#include <ctime>
#include <chrono>
#include <string>
#include <cinttypes>
#include <cstddef>

Classes

class  CTimer
 Timer for elapsed time and CPU time. More...
 

Typedefs

typedef std::chrono::system_clock sysclock
 Shorthand for system clock.
 
typedef std::chrono::time_point< std::chrono::system_clock > systime_point
 Shorthand for sysclock time point.
 

Functions

template<typename t >
const std::string CommaSeparatedString (const t n)
 

Function Documentation

◆ CommaSeparatedString()

template<typename t >
const std::string CommaSeparatedString ( const t  n)

Convert a number to an std::string and insert commas every three digits from the least-significant end.

Template Parameters
tType of number.
Parameters
nThe number to be converted.
Returns
The number as a comma-separated string.