okular/performanceMeasurement.h
Wilfried Huss 934522d43a Include cleanups
Patch by Angus Leeming

svn path=/trunk/KDE/kdegraphics/kdvi/; revision=462681
2005-09-21 18:10:56 +00:00

22 lines
599 B
C++

// -*- C++ -*-
//#define PERFORMANCE_MEASUREMENT
#ifdef PERFORMANCE_MEASUREMENT
#include <QDateTime>
// This is the central timer used for performance measurement. It is
// set to zero and started when the kdvi_multipage is
// constructed. This object is statically defined in
// kdvi_multipage.cpp.
extern QTime performanceTimer;
// A flag that is set to true once the first page of the document was
// successfully drawn. This object is statically defined in
// kdvi_multipage.cpp.
// 0 = initial value
// 1 = first page was drawn
// 2 = last page was drawn
extern int performanceFlag;
#endif