open62541 1.4.15
Open source implementation of OPC UA
Loading...
Searching...
No Matches
ReferenceService.h
Go to the documentation of this file.
1/** This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
4 *
5 * Copyright 2020 (c) Matthias Konnerth
6 */
7
8#ifndef NODESETLOADER_REFERENCESERVICE_H
9#define NODESETLOADER_REFERENCESERVICE_H
10#include <stdbool.h>
11
12struct NL_Reference;
14typedef bool (*RefService_isRefHierachical)(void* context, const struct NL_Reference* ref);
15typedef bool (*RefService_isRefNonHierachical)(void* context, const struct NL_Reference *ref);
16typedef bool (*RefService_isHasTypeDefRef)(void *context, const struct NL_Reference *ref);
17typedef void (*RefService_addNewReferenceType)(void* context, const struct NL_ReferenceTypeNode* node);
27#endif
bool(* RefService_isRefNonHierachical)(void *context, const struct NL_Reference *ref)
void(* RefService_addNewReferenceType)(void *context, const struct NL_ReferenceTypeNode *node)
bool(* RefService_isHasTypeDefRef)(void *context, const struct NL_Reference *ref)
bool(* RefService_isRefHierachical)(void *context, const struct NL_Reference *ref)
RefService_isHasTypeDefRef isHasTypeDefRef
RefService_addNewReferenceType addNewReferenceType
RefService_isRefHierachical isHierachicalRef
RefService_isRefNonHierachical isNonHierachicalRef