ua_nodestore_default.h 523 B

12345678910111213141516171819202122
  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. #ifndef UA_NODESTORE_DEFAULT_H_
  4. #define UA_NODESTORE_DEFAULT_H_
  5. #include "ua_plugin_nodestore.h"
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif
  9. /* Initializes the nodestore, sets the context and function pointers */
  10. UA_StatusCode UA_EXPORT
  11. UA_Nodestore_default_new(UA_Nodestore *ns);
  12. #ifdef __cplusplus
  13. } // extern "C"
  14. #endif
  15. #endif /* UA_NODESTORE_DEFAULT_H_ */