12345678910111213141516171819202122 |
- /* This work is licensed under a Creative Commons CCZero 1.0 Universal License.
- * See http://creativecommons.org/publicdomain/zero/1.0/ for more information. */
- #ifndef UA_NODESTORE_DEFAULT_H_
- #define UA_NODESTORE_DEFAULT_H_
- #include "ua_plugin_nodestore.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* Initializes the nodestore, sets the context and function pointers */
- UA_StatusCode UA_EXPORT
- UA_Nodestore_default_new(UA_Nodestore *ns);
- #ifdef __cplusplus
- } // extern "C"
- #endif
- #endif /* UA_NODESTORE_DEFAULT_H_ */
|