14 lines
194 B
C++
14 lines
194 B
C++
#pragma once
|
|
|
|
#include <format>
|
|
#include <string_view>
|
|
|
|
namespace ugly {
|
|
|
|
class ILogFacility {
|
|
public:
|
|
virtual void vlog(std::string_view fmt, std::format_args args) = 0;
|
|
};
|
|
|
|
}
|