You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
409 B
C++
20 lines
409 B
C++
#pragma once
|
|
#include "Logger.h"
|
|
#include "dbg.h"
|
|
class CLegacyDebugLogTiming : public CLogger
|
|
{
|
|
public:
|
|
CLegacyDebugLogTiming(const std::string& strName);
|
|
~CLegacyDebugLogTiming() final;
|
|
|
|
private:
|
|
void InitLogger();
|
|
|
|
// Inherited via CLogger
|
|
void DoStart() override;
|
|
void DoFlush() override;
|
|
void DoLogging(const std::string& strMsg) override;
|
|
|
|
CDebugPrintf m_logger{ 1 };
|
|
};
|