Skip to content
Snippets Groups Projects
global.hpp 243 B
Newer Older
  • Learn to ignore specific revisions
  • #pragma once
    
    #include <chrono>
    
    extern bool debug;
    
    /**
     * Return the time between to time points
     */
    double calculateTime(std::chrono::time_point<std::chrono::system_clock> start, 
        std::chrono::time_point<std::chrono::system_clock> end);