MCPcopy Create free account
hub / github.com/3rdparty/libprocess / IsVisitor

Method IsVisitor

include/process/event.hpp:73–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71 struct IsVisitor : EventVisitor
72 {
73 explicit IsVisitor(bool* _result) : result(_result) {}
74 void visit(const T&) override { *result = true; }
75 bool* result;
76 } visitor(&result);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected