@@ -204,55 +204,55 @@ class DerivedTcServer : public TaskControllerServer
204204 return !failActivations;
205205 }
206206
207- bool change_designator (std::shared_ptr<ControlFunction>, std::uint16_t , const std::vector<std::uint8_t > &)
207+ bool change_designator (std::shared_ptr<ControlFunction>, std::uint16_t , const std::vector<std::uint8_t > &) override
208208 {
209209 return true ;
210210 }
211211
212- bool deactivate_object_pool (std::shared_ptr<ControlFunction>)
212+ bool deactivate_object_pool (std::shared_ptr<ControlFunction>) override
213213 {
214214 return true ;
215215 }
216216
217- bool delete_device_descriptor_object_pool (std::shared_ptr<ControlFunction>, ObjectPoolDeletionErrors &)
217+ bool delete_device_descriptor_object_pool (std::shared_ptr<ControlFunction>, ObjectPoolDeletionErrors &) override
218218 {
219219 return true ;
220220 }
221221
222- bool get_is_stored_device_descriptor_object_pool_by_structure_label (std::shared_ptr<ControlFunction>, const std::vector<std::uint8_t > &, const std::vector<std::uint8_t > &)
222+ bool get_is_stored_device_descriptor_object_pool_by_structure_label (std::shared_ptr<ControlFunction>, const std::vector<std::uint8_t > &, const std::vector<std::uint8_t > &) override
223223 {
224224 return !testStructureLabel.empty ();
225225 }
226226
227- bool get_is_stored_device_descriptor_object_pool_by_localization_label (std::shared_ptr<ControlFunction>, const std::array<std::uint8_t , 7 > &)
227+ bool get_is_stored_device_descriptor_object_pool_by_localization_label (std::shared_ptr<ControlFunction>, const std::array<std::uint8_t , 7 > &) override
228228 {
229229 return 0 != testLocalizationLabel.at (0 );
230230 }
231231
232- bool get_is_enough_memory_available (std::uint32_t )
232+ bool get_is_enough_memory_available (std::uint32_t ) override
233233 {
234234 return enoughMemory;
235235 }
236236
237- void identify_task_controller (std::uint8_t tcNumber)
237+ void identify_task_controller (std::uint8_t tcNumber) override
238238 {
239239 identifyTC = tcNumber;
240240 }
241241
242- void on_client_timeout (std::shared_ptr<ControlFunction>)
242+ void on_client_timeout (std::shared_ptr<ControlFunction>) override
243243 {
244244 }
245245
246- void on_process_data_acknowledge (std::shared_ptr<ControlFunction>, std::uint16_t , std::uint16_t , std::uint8_t , ProcessDataCommands)
246+ void on_process_data_acknowledge (std::shared_ptr<ControlFunction>, std::uint16_t , std::uint16_t , std::uint8_t , ProcessDataCommands) override
247247 {
248248 }
249249
250- bool on_value_command (std::shared_ptr<ControlFunction>, std::uint16_t , std::uint16_t , std::int32_t , std::uint8_t &)
250+ bool on_value_command (std::shared_ptr<ControlFunction>, std::uint16_t , std::uint16_t , std::int32_t , std::uint8_t &) override
251251 {
252252 return true ;
253253 }
254254
255- bool store_device_descriptor_object_pool (std::shared_ptr<ControlFunction>, const std::vector<std::uint8_t > &, bool )
255+ bool store_device_descriptor_object_pool (std::shared_ptr<ControlFunction>, const std::vector<std::uint8_t > &, bool ) override
256256 {
257257 return true ;
258258 }
0 commit comments