From: samanway Date: Fri, 17 Jan 2020 14:15:09 +0000 (+0530) Subject: [CONPRO-1552] Fixing lack of header guards in RDClient.h X-Git-Tag: accepted/tizen/unified/20200204.125838~6 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Fiotivity.git;a=commitdiff_plain;h=b4c29b744e12a50bb5ea50ad57ed5fdca7d0a19c [CONPRO-1552] Fixing lack of header guards in RDClient.h - Added header guard in RDClient.h https://github.sec.samsung.net/RS7-IOTIVITY/IoTivity/pull/649/commits/25aabe92979f70d22c42d735003f6b3d4605bd4d (cherry-picked from 25aabe92979f70d22c42d735003f6b3d4605bd4d) Change-Id: I764e966237c1f87b332da8c6977943c3d2a45281 Signed-off-by: Sudipto --- diff --git a/resource/csdk/resource-directory/include/RDClient.h b/resource/csdk/resource-directory/include/RDClient.h index 2f48e01..39e9edc 100644 --- a/resource/csdk/resource-directory/include/RDClient.h +++ b/resource/csdk/resource-directory/include/RDClient.h @@ -18,6 +18,9 @@ // //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= +#ifndef RDCLIENT_H_ +#define RDCLIENT_H_ + #include "OCRepresentation.h" #include "OCApi.h" #include "octypes.h" @@ -116,3 +119,5 @@ public: QualityOfService qos); }; + +#endif