libxr  1.0
Want to be the best embedded framework
Loading...
Searching...
No Matches
LibXR::Print::SourceFrontend Concept Reference

可由共享后端读取源码信息的格式前端。 More...

#include <print_contract.hpp>

Concept definition

template<typename Frontend>
concept LibXR::Print::SourceFrontend = requires
{
typename Frontend::ErrorType;
{ Frontend::SourceData() } -> std::convertible_to<const char*>;
{ Frontend::SourceSize() } -> std::convertible_to<size_t>;
}
可由共享后端读取源码信息的格式前端。

Detailed Description

可由共享后端读取源码信息的格式前端。

Format frontend exposing source metadata to the shared backend.

Definition at line 30 of file print_contract.hpp.