ua_config_standard.h 567 B

1234567891011121314151617181920212223242526
  1. /*
  2. * This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  3. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  4. */
  5. #ifndef UA_CONFIG_STANDARD_H_
  6. #define UA_CONFIG_STANDARD_H_
  7. #include "ua_server.h"
  8. #include "ua_client.h"
  9. #include "logger_stdout.h"
  10. #include "networklayer_tcp.h"
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. extern UA_EXPORT const UA_ServerConfig UA_ServerConfig_standard;
  15. extern UA_EXPORT const UA_ClientConfig UA_ClientConfig_standard;
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif /* UA_CONFIG_STANDARD_H_ */