[CONPRO-1552] Fixing lack of header guards in RDClient.h 88/223288/1
authorsamanway <samanway@linux-samanway.sa.corp.samsungelectronics.net>
Fri, 17 Jan 2020 14:15:09 +0000 (19:45 +0530)
committerSudipto <sudipto.bal@samsung.com>
Tue, 28 Jan 2020 07:48:33 +0000 (13:18 +0530)
- 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 <sudipto.bal@samsung.com>
resource/csdk/resource-directory/include/RDClient.h

index 2f48e01..39e9edc 100644 (file)
@@ -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