Skip to content

Commit

Permalink
doc
Browse files Browse the repository at this point in the history
  • Loading branch information
skypjack committed May 15, 2019
1 parent cac1b87 commit c832888
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/entt/entity/registry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -936,6 +936,11 @@ class basic_registry {
* Listeners are invoked **after** the component has been assigned to the
* entity. The order of invocation of the listeners isn't guaranteed.
*
* @note
* Empty types aren't explicitly instantiated. Therefore, temporary objects
* are returned through signals. They can be caught only by copy or with
* const references.
*
* @sa sink
*
* @tparam Component Type of component of which to get the sink.
Expand All @@ -962,6 +967,11 @@ class basic_registry {
* Listeners are invoked **before** the component has been replaced. The
* order of invocation of the listeners isn't guaranteed.
*
* @note
* Empty types aren't explicitly instantiated. Therefore, temporary objects
* are returned through signals. They can be caught only by copy or with
* const references.
*
* @sa sink
*
* @tparam Component Type of component of which to get the sink.
Expand Down Expand Up @@ -989,6 +999,11 @@ class basic_registry {
* Listeners are invoked **before** the component has been removed from the
* entity. The order of invocation of the listeners isn't guaranteed.
*
* @note
* Empty types aren't explicitly instantiated. Therefore, temporary objects
* are returned through signals. They can be caught only by copy or with
* const references.
*
* @sa sink
*
* @tparam Component Type of component of which to get the sink.
Expand Down

0 comments on commit c832888

Please sign in to comment.