Skip to content

Commit

Permalink
Modify comments and fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yyzhong-g committed Dec 16, 2024
1 parent 1851566 commit 8809618
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions src/app/EventReporter.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,6 @@
* limitations under the License.
*/

/**
* @file
*
* @brief
* Define EventReporter interface. Event reproter is used by EventManagement to notify that events are ready to be reported.
* Usually this is implemented by the Reporting Engine to find the proper ReadHandlers and deliver the events.
*
*/
#pragma once

#include <app/ConcreteEventPath.h>
Expand All @@ -32,13 +24,17 @@
namespace chip {
namespace app {

/**
* Define EventReporter interface. Event reporter is used by EventManagement to notify that events are ready to be reported.
* Usually this is implemented by the Reporting Engine to find the proper ReadHandlers and deliver the events.
*
*/
class EventReporter
{
public:
virtual ~EventReporter() = default;

/**
* @brief
* Notify of a new event generated.
*
* @param[in] aPath The path to the event.
Expand Down

0 comments on commit 8809618

Please sign in to comment.