1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +03:00
vro cc1d74e225 0021189: Clean up KAS:dev:ros and Products
Removal of VoxelClient
VoxelDemo sample is redesigned so that it doesn't require compilation of OpenGl classes. It refers to TKOpenGl.dll as to an external library.
Some minor bugs are fixed in OCAF and Viewer 3d standard MFC samples
2012-10-05 14:17:17 +04:00

67 lines
1.3 KiB
C++

// Timer.cpp: implementation of the Timer class.
//
//////////////////////////////////////////////////////////////////////
#include "Timer.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Timer::Timer():myWriter(0) {}
Timer::Timer(const char* filename)
{
myWriter = fopen(filename, "a");
}
Timer::~Timer()
{
if (myWriter)
fclose(myWriter);
}
void Timer::Start() {
myTimer.Reset();
myTimer.Start();
}
void Timer::Stop() {
myTimer.Stop();
}
void Timer::Continue() {
myTimer.Start();
}
void Timer::Reset() {
myTimer.Reset();
}
float Timer::Seconds() {
Standard_Real sec, cpu;
Standard_Integer minutes, hours;
myTimer.Show(sec, minutes, hours, cpu);
return (float) sec;
}
int Timer::Minutes() {
Standard_Real sec, cpu;
Standard_Integer minutes, hours;
myTimer.Show(sec, minutes, hours, cpu);
return minutes;
}
void Timer::Print(char* label) {
Standard_Real seconds, cpu;
Standard_Integer minutes, hours;
myTimer.Show(seconds, minutes, hours, cpu);
if (myWriter)
{
fprintf(myWriter, "%s took %d minutes %g seconds\n", label, minutes, seconds);
}
else
{
cout<<label<<" took "<<minutes<<" minutes, "<<seconds<<" seconds"<<endl;
}
}