From 50ef54a78a90638144db9fe55c1fb97b6196ff9b Mon Sep 17 00:00:00 2001 From: William Dieter Date: Mon, 16 Feb 2015 23:53:35 -0500 Subject: [PATCH] Updated Doxygen @param for OCResourceResponse::setResourceRepresentation The parameter was updated in a previous commit without updating the Doxygen comments. Change-Id: Ia6fc35d7a7ad8c6fd8a0d076aa21915813fe2820 Signed-off-by: William Dieter Reviewed-on: https://gerrit.iotivity.org/gerrit/352 Tested-by: jenkins-iotivity Reviewed-by: Sashi Penta --- resource/include/OCResourceResponse.h | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/resource/include/OCResourceResponse.h b/resource/include/OCResourceResponse.h index 6305a7c..286a51a 100644 --- a/resource/include/OCResourceResponse.h +++ b/resource/include/OCResourceResponse.h @@ -126,8 +126,7 @@ namespace OC /** * API to set the entire resource attribute representation - * @param attributeMap reference containing the name value pairs representing - * the resource's attributes + * @param rep reference to the resource's representation * @param interface specifies the interface */ void setResourceRepresentation(OCRepresentation& rep, std::string interface) { @@ -137,8 +136,7 @@ namespace OC /** * API to set the entire resource attribute representation - * @param attributeMap rvalue reference containing the name value pairs representing - * the resource's attributes + * @param rep rvalue reference to the resource's representation * @param interface specifies the interface */ void setResourceRepresentation(OCRepresentation&& rep, std::string interface) { @@ -147,8 +145,7 @@ namespace OC /** * API to set the entire resource attribute representation - * @param attributeMap reference containing the name value pairs representing the resource's - * attributes + * @param rep reference to the to the resource's representation */ void setResourceRepresentation(OCRepresentation& rep) { // Call the default @@ -158,8 +155,7 @@ namespace OC /** * API to set the entire resource attribute representation - * @param attributeMap rvalue reference containing the name value pairs representing the - * resource's attributes + * @param rep rvalue reference to the resource's representation */ void setResourceRepresentation(OCRepresentation&& rep) { // Call the above function -- 2.7.4