Created
          August 15, 2015 21:42 
        
      - 
      
 - 
        
Save NLKNguyen/26738316dd2899ab1e5b to your computer and use it in GitHub Desktop.  
    Qt Snippets
  
        
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | // Measure Elapsed Time in Nanoseconds | |
| // #include <QElapsedTimer> | |
| QElapsedTimer timer; | |
| qint64 nanoSec; | |
| timer.start(); | |
| /* ... some activity ... */ | |
| nanoSec = timer.nsecsElapsed(); | |
| qDebug() << "elapsed time = " << nanoSec; | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment