mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +02:00
14 lines
224 B
C
14 lines
224 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "common/logger/logger.h"
|
||
|
|
|
||
|
|
#define _TRACER_ CallTracer callTracer(__FUNCTION__)
|
||
|
|
|
||
|
|
class CallTracer
|
||
|
|
{
|
||
|
|
std::string functionName;
|
||
|
|
public:
|
||
|
|
CallTracer(const char* functionName);
|
||
|
|
~CallTracer();
|
||
|
|
};
|