/
jiteman
/
jsd-foreign-libreoffice-cppunit
Обзор
Документация
Войти
/
jiteman
/
jsd-foreign-libreoffice-cppunit
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
examples/ClockerPlugIn/Timer.cpp
28 строк
501 B
jiteman
initial commit has been done
14 апр 2024, 15:49
14 апр 2024, 15:49
4c53812
Код
Авторство
О чём код?
// ////////////////////////////////////////////////////////////////////////// // Implementation file Timer.cpp for class Timer // (c)Copyright 2000, Baptiste Lepilleur. // Created: 2002/04/19 // ////////////////////////////////////////////////////////////////////////// #include "Timer.h" void Timer::start() { m_beginTime = clock(); } void Timer::finish() { m_elapsedTime = double(clock() - m_beginTime) / CLOCKS_PER_SEC; } double Timer::elapsedTime() const { return m_elapsedTime; }