| 94 | //////////////////////////////////////////////////////////////////////////////// |
| 95 | |
| 96 | void add_services(erpc::SimpleServer *server) |
| 97 | { |
| 98 | /* Define services to add using dynamic memory allocation |
| 99 | * Exapmle:ArithmeticService_service * svc = new ArithmeticService_service(); |
| 100 | */ |
| 101 | svc = new Binary_service(new Binary_server()); |
| 102 | |
| 103 | /* Add services |
| 104 | * Example: server->addService(svc); |
| 105 | */ |
| 106 | server->addService(svc); |
| 107 | } |
| 108 | |
| 109 | //////////////////////////////////////////////////////////////////////////////// |
| 110 | // Remove service from server code |
nothing calls this directly
no test coverage detected