Add function to deregister a profiler from profiler list

master
sapier 2014-01-06 15:21:22 +01:00
parent d76957ee22
commit 6833e04bc5
1 changed files with 7 additions and 0 deletions

View File

@ -164,6 +164,13 @@ public:
m_graphvalues.clear();
}
void remove(const std::string& name)
{
JMutexAutoLock lock(m_mutex);
m_avgcounts.erase(name);
m_data.erase(name);
}
private:
JMutex m_mutex;
std::map<std::string, float> m_data;