userver: userver/dump/helpers.hpp Source File
⚠️ This is the documentation for an old userver version. Click here to switch to the latest version.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages Concepts
helpers.hpp
Go to the documentation of this file.
1#pragma once
2
3/// @file userver/dump/helpers.hpp
4/// @brief Dump utils
5
6#include <chrono>
7#include <string>
8
9USERVER_NAMESPACE_BEGIN
10
11namespace dump {
12
13using TimePoint = std::chrono::time_point<std::chrono::system_clock,
14 std::chrono::microseconds>;
15
16[[noreturn]] void ThrowDumpUnimplemented(const std::string& name);
17
18} // namespace dump
19
20USERVER_NAMESPACE_END