├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .travis.yml ├── CMakeLists.txt ├── appveyor.yml ├── doc ├── cpu_timers.html ├── index.html └── original_timer.html ├── example ├── auto_cpu_timer_example.cpp └── timex.cpp ├── include └── boost │ ├── progress.hpp │ ├── timer.hpp │ └── timer │ ├── config.hpp │ ├── progress_display.hpp │ └── timer.hpp ├── index.html ├── meta └── libraries.json ├── src ├── auto_timers_construction.cpp └── cpu_timer.cpp └── test ├── CMakeLists.txt ├── Jamfile.v2 ├── chrono_conflict_test.cpp ├── cmake_install_test ├── CMakeLists.txt └── main.cpp ├── cmake_subdir_test ├── CMakeLists.txt └── main.cpp ├── cpu_timer_info.cpp ├── cpu_timer_test.cpp ├── msvc10 ├── chrono_dll │ └── chrono_dll.vcxproj ├── common.props ├── cpu_timer_test │ └── cpu_timer_test.vcxproj ├── system_dll │ └── system_dll.vcxproj ├── timer.sln └── timer_dll │ └── timer_dll.vcxproj ├── original_timer_test.cpp └── progress_display_test.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/appveyor.yml -------------------------------------------------------------------------------- /doc/cpu_timers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/doc/cpu_timers.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/original_timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/doc/original_timer.html -------------------------------------------------------------------------------- /example/auto_cpu_timer_example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/example/auto_cpu_timer_example.cpp -------------------------------------------------------------------------------- /example/timex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/example/timex.cpp -------------------------------------------------------------------------------- /include/boost/progress.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/include/boost/progress.hpp -------------------------------------------------------------------------------- /include/boost/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/include/boost/timer.hpp -------------------------------------------------------------------------------- /include/boost/timer/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/include/boost/timer/config.hpp -------------------------------------------------------------------------------- /include/boost/timer/progress_display.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/include/boost/timer/progress_display.hpp -------------------------------------------------------------------------------- /include/boost/timer/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/include/boost/timer/timer.hpp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/index.html -------------------------------------------------------------------------------- /meta/libraries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/meta/libraries.json -------------------------------------------------------------------------------- /src/auto_timers_construction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/src/auto_timers_construction.cpp -------------------------------------------------------------------------------- /src/cpu_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/src/cpu_timer.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/Jamfile.v2 -------------------------------------------------------------------------------- /test/chrono_conflict_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/chrono_conflict_test.cpp -------------------------------------------------------------------------------- /test/cmake_install_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/cmake_install_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmake_install_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/cmake_install_test/main.cpp -------------------------------------------------------------------------------- /test/cmake_subdir_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/cmake_subdir_test/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmake_subdir_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/cmake_subdir_test/main.cpp -------------------------------------------------------------------------------- /test/cpu_timer_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/cpu_timer_info.cpp -------------------------------------------------------------------------------- /test/cpu_timer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/cpu_timer_test.cpp -------------------------------------------------------------------------------- /test/msvc10/chrono_dll/chrono_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/msvc10/chrono_dll/chrono_dll.vcxproj -------------------------------------------------------------------------------- /test/msvc10/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/msvc10/common.props -------------------------------------------------------------------------------- /test/msvc10/cpu_timer_test/cpu_timer_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/msvc10/cpu_timer_test/cpu_timer_test.vcxproj -------------------------------------------------------------------------------- /test/msvc10/system_dll/system_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/msvc10/system_dll/system_dll.vcxproj -------------------------------------------------------------------------------- /test/msvc10/timer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/msvc10/timer.sln -------------------------------------------------------------------------------- /test/msvc10/timer_dll/timer_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/msvc10/timer_dll/timer_dll.vcxproj -------------------------------------------------------------------------------- /test/original_timer_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/original_timer_test.cpp -------------------------------------------------------------------------------- /test/progress_display_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/boostorg/timer/HEAD/test/progress_display_test.cpp --------------------------------------------------------------------------------