gdk-event-latency-tracker.h revision caeb7fce10e4997da503b3cea85722e83d64f6c1
/*
* Inkscape::Debug::GdkEventLatencyTracker - tracks backlog of GDK events
*
* Authors:
* MenTaLguY <mental@rydia.net>
*
* Copyright (C) 2008 MenTaLguY
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <gdk/gdkevents.h>
#include <boost/optional.hpp>
double maxLatency() const { return max_latency; }
static GdkEventLatencyTracker &default_tracker();
double start_seconds;
double max_latency;
};
}
}
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :