A portable class for high-resolution timing. Más...
#include <timer.h>
A portable class for high-resolution timing.
This class simplifies timing measurements across a number of platforms.
Timer t; t.start(); // do some work t.stop(); cout << "That took " << (double) t << " seconds." << endl;