From b4c29b744e12a50bb5ea50ad57ed5fdca7d0a19c Mon Sep 17 00:00:00 2001 From: samanway Date: Fri, 17 Jan 2020 19:45:09 +0530 Subject: [PATCH] [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 --- resource/csdk/resource-directory/include/RDClient.h | 5 +++++ 1 file changed, 5 insertions(+) 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 -- 2.7.4