diff options
Diffstat (limited to 'vrt/lib/header_utils.h')
-rw-r--r-- | vrt/lib/header_utils.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vrt/lib/header_utils.h b/vrt/lib/header_utils.h index 823d37b6b..df087eac8 100644 --- a/vrt/lib/header_utils.h +++ b/vrt/lib/header_utils.h @@ -28,8 +28,11 @@ namespace vrt { namespace detail { + void wr_name(std::ostream &os, const std::string &x); void wr_int_secs(std::ostream &os, uint32_t secs); - + void wr_uint32_hex(std::ostream &os, uint32_t x); + void wr_uint32_dec(std::ostream &os, uint32_t x); + }; }; |