Sfoglia il codice sorgente

Fixed several doxygen tag problems; make-travis-happy commit #2

ichrispa 9 anni fa
parent
commit
b17e6a6ef5
2 ha cambiato i file con 11 aggiunte e 4 eliminazioni
  1. 2 3
      include/ua_server.h
  2. 9 1
      src/server/ua_services.h

+ 2 - 3
include/ua_server.h

@@ -146,7 +146,6 @@ UA_SERVER_DELETENODEALIAS_DECL(VariableType)
 UA_SERVER_DELETENODEALIAS_DECL(DataType)
 
 #ifdef ENABLE_METHODCALLS
-
 UA_SERVER_DELETENODEALIAS_DECL(Method)
 #endif
 
@@ -155,7 +154,7 @@ UA_SERVER_DELETENODEALIAS_DECL(Method)
  * instead.
  *
  * @param server The server object
- * @param nodeId ID of the node copy to be deleted
+ * @param node   A copy of any node-type struct created with getNodeCopy; must *not* be managed by the nodestore.
  * 
  * @return Return UA_STATUSCODE_GOOD if the node was deleted or an appropriate errorcode if the node was not found
  *         or cannot be deleted.
@@ -190,7 +189,7 @@ UA_Server_getNodeCopy(UA_Server *server, UA_NodeId nodeId, void **copyInto);
  * @param userWriteMask Bitmask defining the user write permissions
  * @param writeMask     Bitmask defining the write permissions
  * @param value         A variant containing the value to be assigned to this node.
- * @param copyInto Pointer to a NULL pointer that will hold the copy of the node on a successfull return.
+ * @param createdNodeId Pointer to a NULL pointer that will hold the copy of the nodeId on a successfull return.
  * 
  * @return Return UA_STATUSCODE_GOOD if the node was created or an appropriate error code if not.
  */

+ 9 - 1
src/server/ua_services.h

@@ -299,12 +299,20 @@ void Service_Publish(UA_Server *server, UA_Session *session,
 // Service_TransferSubscription
 // Service_DeleteSubscription
 /** @} */
-/** @} */
 #endif
 
 #ifdef ENABLE_METHODCALLS
+/**
+ * @name Call Service Set
+ *
+ * Calls are used to execute serverside methods.
+ *
+ * @{
+ */
 void Service_Call(UA_Server *server, UA_Session *session,
                   const UA_CallRequest *request,
                   UA_CallResponse *response);
+/** @} */
 #endif
 #endif /* UA_SERVICES_H_ */
+/** @} */