@@ -60,43 +60,43 @@ class LIVEKIT_API Participant {
6060
6161 // NOLINTBEGIN(readability-identifier-naming)
6262
63- // Deprecated - see setName() (also deprecated; see notes above) .
63+ // / @deprecated Use setName() instead .
6464 [[deprecated(" Participant::set_name is deprecated; use LocalParticipant::setName instead" )]]
6565 void set_name (std::string name) noexcept {
6666 name_ = std::move (name);
6767 }
6868
69- // Deprecated - see setMetadata() (also deprecated; see notes above) .
69+ // / @deprecated Use setMetadata() instead .
7070 [[deprecated(" Participant::set_metadata is deprecated; use LocalParticipant::setMetadata instead" )]]
7171 void set_metadata (std::string metadata) noexcept {
7272 metadata_ = std::move (metadata);
7373 }
7474
75- // Deprecated - see setAttributes() (also deprecated; see notes above) .
75+ // / @deprecated Use setAttributes() instead .
7676 [[deprecated(" Participant::set_attributes is deprecated; use LocalParticipant::setAttributes instead" )]]
7777 void set_attributes (std::unordered_map<std::string, std::string> attrs) noexcept {
7878 attributes_ = std::move (attrs);
7979 }
8080
81- // Deprecated - see setAttribute() (also deprecated; see notes above) .
81+ // / @deprecated Use setAttribute() instead .
8282 [[deprecated(" Participant::set_attribute is deprecated; use LocalParticipant::setAttributes instead" )]]
8383 void set_attribute (const std::string& key, const std::string& value) {
8484 attributes_[key] = value;
8585 }
8686
87- // Deprecated - see removeAttribute() (also deprecated; see notes above) .
87+ // / @deprecated Use removeAttribute() instead .
8888 [[deprecated(" Participant::remove_attribute is deprecated; use LocalParticipant::setAttributes instead" )]]
8989 void remove_attribute (const std::string& key) {
9090 attributes_.erase (key);
9191 }
9292
93- // Deprecated - see setKind() (also deprecated; see notes above) .
93+ // / @deprecated Kind is server-determined and not user-settable; this mutator will be removed .
9494 [[deprecated(" Participant::set_kind is deprecated; Kind is server-determined and not user-settable" )]]
9595 void set_kind (ParticipantKind kind) noexcept {
9696 kind_ = kind;
9797 }
9898
99- // Deprecated - see setDisconnectReason() (also deprecated; see notes above) .
99+ // / @deprecated DisconnectReason is server-determined and not user-settable; this mutator will be removed .
100100 [[deprecated(
101101 " Participant::set_disconnect_reason is deprecated; DisconnectReason is server-determined and not "
102102 " user-settable" )]]
0 commit comments