Explorar el Código

first test with c++ compiles (networklayer needs to be compiled with gcc)

Julius Pfrommer hace 9 años
padre
commit
48d382a2f1
Se han modificado 3 ficheros con 10 adiciones y 4 borrados
  1. 2 2
      include/ua_server.h
  2. 8 2
      include/ua_types.h
  3. 0 0
      include/ua_util.h

+ 2 - 2
include/ua_server.h

@@ -20,9 +20,9 @@
 extern "C" {
 #endif
 
-#include "ua_util.h"
 #include "ua_types.h"
 #include "ua_types_generated.h"
+#include "ua_util.h"
 #include "ua_nodeids.h"
 #include "ua_connection.h"
 #include "ua_log.h"
@@ -242,7 +242,7 @@ typedef struct UA_ExternalNodeStore {
 	UA_ExternalNodeStore_browseNodes browseNodes;
 	UA_ExternalNodeStore_addReferences addReferences;
 	UA_ExternalNodeStore_deleteReferences deleteReferences;
-	UA_ExternalNodeStore_delete delete;
+	UA_ExternalNodeStore_delete deleteNodeStore;
 } UA_ExternalNodeStore;
 
 UA_StatusCode UA_EXPORT

+ 8 - 2
include/ua_types.h

@@ -209,7 +209,7 @@ typedef struct {
     UA_StatusCode (*read)(const void *handle, const UA_VariantData **);
     void (*release)(const void *handle, const UA_VariantData *);
     UA_StatusCode (*write)(const void **handle, const UA_VariantData *);
-    void (*delete)(const void *handle);
+    void (*free)(const void *handle);
 } UA_VariantDataSource;
 
 struct UA_DataType;
@@ -324,6 +324,12 @@ UA_TYPE_HANDLING_FUNCTIONS(UA_DiagnosticInfo)
 /* Custom functions for the builtin datatypes */
 /**********************************************/
 
+#ifdef __cplusplus
+#define CPP_ONLY(STR) STR
+#else
+#define CPP_ONLY(STR)
+#endif
+
 /* String */
 #define UA_STRING_NULL (UA_String) {-1, (UA_Byte*)0 }
 #define UA_STRING_ASSIGN(VARIABLE, STRING) do { \
@@ -364,7 +370,7 @@ UA_Boolean UA_EXPORT UA_NodeId_equal(const UA_NodeId *n1, const UA_NodeId *n2);
 UA_Boolean UA_EXPORT UA_NodeId_isNull(const UA_NodeId *p);
 #define UA_NODEID_ASSIGN(VARIABLE, NUMERICID, NAMESPACE) do { \
     VARIABLE.namespaceIndex = NAMESPACE;                      \
-    VARIABLE.identifierType = UA_NODEIDTYPE_NUMERIC;          \
+    VARIABLE.identifierType = CPP_ONLY(UA_NodeId::)UA_NODEIDTYPE_NUMERIC; \
     VARIABLE.identifier.numeric = NUMERICID; } while(0);
 #define UA_NODEID_STATIC(NUMERICID, NAMESPACE)                          \
     (UA_NodeId){.namespaceIndex = NAMESPACE, .identifierType = UA_NODEIDTYPE_NUMERIC, \

src/ua_util.h → include/ua_util.h