Radix Relay
Hybrid mesh communications with Signal Protocol encryption
Loading...
Searching...
No Matches
default_printer.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <fmt/core.h>
4
5namespace radix_relay::core {
6
13{
14public:
22 template<typename... Args> auto print(fmt::format_string<Args...> format_string, Args &&...args) const -> void
23 {
24 fmt::print(format_string, std::forward<Args>(args)...);
25 }
26};
27
28}// namespace radix_relay::core
Default implementation of formatted console output.
auto print(fmt::format_string< Args... > format_string, Args &&...args) const -> void
Prints formatted output to stdout.