#include "sync-helper.hpp" namespace advss { std::mutex *GetSwitcherMutex(); std::lock_guard LockContext() { return std::lock_guard(*GetSwitcherMutex()); } } // namespace advss