ua_nodestore_default.h 697 B

123456789101112131415161718192021222324252627
  1. /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
  2. * See http://creativecommons.org/publicdomain/zero/1.0/ for more information.
  3. *
  4. * Copyright 2014-2017 (c) Fraunhofer IOSB (Author: Julius Pfrommer)
  5. * Copyright 2017 (c) Julian Grothoff
  6. * Copyright 2017 (c) Stefan Profanter, fortiss GmbH
  7. */
  8. #ifndef UA_NODESTORE_DEFAULT_H_
  9. #define UA_NODESTORE_DEFAULT_H_
  10. #include "ua_plugin_nodestore.h"
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /* Initializes the nodestore, sets the context and function pointers */
  15. UA_StatusCode UA_EXPORT
  16. UA_Nodestore_default_new(UA_Nodestore *ns);
  17. #ifdef __cplusplus
  18. } // extern "C"
  19. #endif
  20. #endif /* UA_NODESTORE_DEFAULT_H_ */