mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-08-21 01:15:05 +00:00
11 lines
162 B
C++
11 lines
162 B
C++
#pragma once
|
|
|
|
#include "LogCommon.h"
|
|
#include <functional>
|
|
|
|
namespace tt {
|
|
|
|
typedef std::function<void(LogLevel, const char* tag, const char*)> LoggerAdapter;
|
|
|
|
}
|