IQRF Gateway Daemon
initModules.h
Go to the documentation of this file.
1 
17 #pragma once
18 
21 void init_JsonSerializer();
22 void init_MqMessaging();
23 void init_MqttMessaging();
24 void init_UdpMessaging();
25 void init_BaseService();
26 
28 #define STATIC_INIT \
29 init_SimpleSerializer(); \
30 init_JsonSerializer(); \
31 init_MqMessaging(); \
32 init_MqttMessaging(); \
33 init_UdpMessaging(); \
34 init_BaseService();
void init_JsonSerializer()
void init_SimpleSerializer()
Declaration of init functions of static link components.
void init_BaseService()
void init_MqMessaging()
void init_UdpMessaging()
void init_MqttMessaging()