Roc Toolkit internal modules
Roc Toolkit: real-time audio streaming
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
packet_flags_to_str.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 Roc Streaming authors
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 */
8
9//! @file roc_packet/packet_flags_to_str.h
10//! @brief Packet flags to string.
11
12#ifndef ROC_PACKET_PACKET_FLAGS_TO_STR_H_
13#define ROC_PACKET_PACKET_FLAGS_TO_STR_H_
14
15#include "roc_packet/packet.h"
16
17namespace roc {
18namespace packet {
19
20//! Format packet flags to string.
22public:
23 //! Construct.
24 explicit packet_flags_to_str(unsigned flags);
25
26 //! Get formatted string.
27 const char* c_str() const {
28 return buf_;
29 }
30
31private:
32 char buf_[256];
33};
34
35} // namespace packet
36} // namespace roc
37
38#endif // ROC_PACKET_PACKET_FLAGS_TO_STR_H_
Base class for non-copyable objects.
Definition noncopyable.h:23
Format packet flags to string.
const char * c_str() const
Get formatted string.
packet_flags_to_str(unsigned flags)
Construct.
Root namespace.
Packet.