@@ -51,23 +51,23 @@ class AppTaskBase
51
51
* This function is called at the begging of the InitServer function.
52
52
*
53
53
*/
54
- virtual void PreInitMatterServerInstance (void ){};
54
+ virtual void PreInitMatterServerInstance (void ) {};
55
55
56
56
/* *
57
57
* \brief This function could be overridden in order to execute code at the end of the InitServer function.
58
58
*
59
59
* Example of usage: all-cluster-apps example disable last fixed endpoint after InitServer function execution.
60
60
*
61
61
*/
62
- virtual void PostInitMatterServerInstance (void ){};
62
+ virtual void PostInitMatterServerInstance (void ) {};
63
63
64
64
/* *
65
65
* \brief This function could be overridden in order to execute code before matter stack init function.
66
66
*
67
67
* Example of usage: if some initialization has to be done before the matter stack initialization.
68
68
*
69
69
*/
70
- virtual void PreInitMatterStack (void ){};
70
+ virtual void PreInitMatterStack (void ) {};
71
71
72
72
/* *
73
73
* \brief This function could be overridden in order to execute code after matter stack init function.
@@ -76,7 +76,7 @@ class AppTaskBase
76
76
* done after matter stack init. Developper can override this function to add cluster initialization/customization.
77
77
*
78
78
*/
79
- virtual void PostInitMatterStack (void ){};
79
+ virtual void PostInitMatterStack (void ) {};
80
80
81
81
/* *
82
82
* \brief This function could be overridden in order to register features.
@@ -94,7 +94,7 @@ class AppTaskBase
94
94
* Example of usage: Laundry washer application used additionnal CLI commands.
95
95
*
96
96
*/
97
- virtual void AppMatter_RegisterCustomCliCommands (void ){};
97
+ virtual void AppMatter_RegisterCustomCliCommands (void ) {};
98
98
99
99
/* *
100
100
* \brief Disallow entering low power mode.
@@ -132,15 +132,15 @@ class AppTaskBase
132
132
* \brief Send event to the event queue.
133
133
*
134
134
*/
135
- virtual void PostEvent (const AppEvent & event){};
135
+ virtual void PostEvent (const AppEvent & event) {};
136
136
137
137
/* *
138
138
* \brief This function could be overridden in order to dispatch event.
139
139
*
140
140
* Example of usage: FreeRtos dispatch event using the event handler.
141
141
*
142
142
*/
143
- virtual void DispatchEvent (const AppEvent & event){};
143
+ virtual void DispatchEvent (const AppEvent & event) {};
144
144
145
145
/* *
146
146
* \brief Return a pointer to the NXP Wifi Driver instance.
0 commit comments