summaryrefslogtreecommitdiff
path: root/resource/csdk
diff options
context:
space:
mode:
authorsamanway <samanway@linux-samanway.sa.corp.samsungelectronics.net>2020-01-17 19:45:09 +0530
committerSudipto <sudipto.bal@samsung.com>2020-01-28 13:18:33 +0530
commitb4c29b744e12a50bb5ea50ad57ed5fdca7d0a19c (patch)
tree0591c3e913b2db66a2d323e955305043f41b5919 /resource/csdk
parent6543d611cf2c3ae26b6aa1b9696d4cb8e4dd2926 (diff)
downloadiotivity-b4c29b744e12a50bb5ea50ad57ed5fdca7d0a19c.tar.gz
iotivity-b4c29b744e12a50bb5ea50ad57ed5fdca7d0a19c.tar.bz2
iotivity-b4c29b744e12a50bb5ea50ad57ed5fdca7d0a19c.zip
[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 <sudipto.bal@samsung.com>
Diffstat (limited to 'resource/csdk')
-rw-r--r--resource/csdk/resource-directory/include/RDClient.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/resource/csdk/resource-directory/include/RDClient.h b/resource/csdk/resource-directory/include/RDClient.h
index 2f48e0131..39e9edcbd 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