WebCFace 2.5.2
Web-based Communication Framework & Dashboard-like UI
Loading...
Searching...
No Matches
fmt.cc File Reference
Include dependency graph for fmt.cc:

Macros

#define WEBCFACE_MESSAGE_FMT_DEF(Type)
 
#define WEBCFACE_MESSAGE_FMT_DEF_ENTRY(Type)
 
#define WEBCFACE_MESSAGE_FMT_DEF_REQ(Type)
 

Macro Definition Documentation

◆ WEBCFACE_MESSAGE_FMT_DEF

#define WEBCFACE_MESSAGE_FMT_DEF (   Type)
Value:
auto fmt::formatter<Type>::format([[maybe_unused]] const Type &m, \
format_context &ctx) \
const -> format_context::iterator

◆ WEBCFACE_MESSAGE_FMT_DEF_ENTRY

#define WEBCFACE_MESSAGE_FMT_DEF_ENTRY (   Type)
Value:
return fmt::format_to(ctx.out(), \
"{}-" #Type "Entry('{}' from member_id={})", \
msg_kind, m.field.decode(), m.member_id); \
}
#define WEBCFACE_MESSAGE_FMT_DEF(Type)
Definition fmt.cc:14
server->client 新しいvalueなどの報告
Definition base.h:73

◆ WEBCFACE_MESSAGE_FMT_DEF_REQ

#define WEBCFACE_MESSAGE_FMT_DEF_REQ (   Type)
Value:
return fmt::format_to( \
ctx.out(), "{}-" #Type "Req('{}' from member '{}' as req_id={})", \
msg_kind, m.field.decode(), m.member.decode(), m.req_id); \
}
client->server 以降Recvを送るようリクエスト
Definition base.h:85