docs(src): add examples alias and general cleanup (#2763)
This commit is contained in:
parent
49b6efcdfd
commit
1dd4b68e1c
142 changed files with 4218 additions and 1177 deletions
10
src/stream.h
10
src/stream.h
|
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
* @file src/stream.h
|
||||
* @brief todo
|
||||
* @brief Declarations for the streaming protocols.
|
||||
*/
|
||||
#pragma once
|
||||
#include <utility>
|
||||
|
|
@ -35,10 +35,10 @@ namespace stream {
|
|||
|
||||
namespace session {
|
||||
enum class state_e : int {
|
||||
STOPPED,
|
||||
STOPPING,
|
||||
STARTING,
|
||||
RUNNING,
|
||||
STOPPED, ///< The session is stopped
|
||||
STOPPING, ///< The session is stopping
|
||||
STARTING, ///< The session is starting
|
||||
RUNNING, ///< The session is running
|
||||
};
|
||||
|
||||
std::shared_ptr<session_t>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue