X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fdebug%2Fprofiler.h;fp=source%2Fdebug%2Fprofiler.h;h=5ec8f3f1fcafa5dae8ebe4508a5b02abaeb7e1f3;hp=7f88dd2c099620189168ed8ed11645d385bed942;hb=27efc167cb10ee03c1d2a6711dd149d1093179c8;hpb=e352b6c33142c531e12dfe87cc25e5f1510731de diff --git a/source/debug/profiler.h b/source/debug/profiler.h index 7f88dd2..5ec8f3f 100644 --- a/source/debug/profiler.h +++ b/source/debug/profiler.h @@ -65,21 +65,14 @@ public: */ ProfilingScope *enter(ProfilingScope *ps); - /** - Records a call to a scope. You'll probably want to use a ProfilingScope - instead of calling this manually. - - @param sn Scope name - @param pn Parent scope name - @param t Time spent in the scope - @param ct Time spent in child scopes - */ - void record(const std::string &sn, const std::string &pn, const Time::TimeDelta &t, const Time::TimeDelta &ct); + /** Records the data from a ProfilingScope. It is not useful to call this + manually. */ + void record(const ProfilingScope &); /** Returns informations about a scope. */ - const ScopeInfo &scope(const std::string &) const; + const ScopeInfo &get_scope(const std::string &) const; }; } // namespace Debug