Sunday, February 13, 2011

QT: Fast way to measure time?

I'm looking for the equivalent in QT to GetTickCount()

Something that will allow me to measure the time it takes for a segment of code to run as in:

uint start = GetTickCount();
// do something..
uint timeItTook = GetTickCount() - start;

any suggestions?

  • How about QTime? Depending on your platform it should have 1 millisecond accuracy. Code would look something like this:

    QTime myTimer;
    myTimer.start();
    // do something..
    int nMilliseconds = myTimer.elapsed();
    

0 comments:

Post a Comment