#pragma once #include namespace logger { struct LogContext { ~LogContext(); }; void log(std::string msg); LogContext init(); }