[easy-setup]Fixed doxygen warnings and renamed a file
authorlankamadan <lanka.madan@samsung.com>
Mon, 5 Oct 2015 11:58:44 +0000 (20:58 +0900)
committerMadan Lanka <lanka.madan@samsung.com>
Tue, 6 Oct 2015 08:36:10 +0000 (08:36 +0000)
- Fixed doxygen warnings and included a file in Doxyfile
- Renamed common.h to escommon.h

Reviewed-on: https://gerrit.iotivity.org/gerrit/3481
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
Conflicts:
resource/docs/Doxyfile

Change-Id: Ia499ee77059fa9034ee71ecbd61d972060103800
Signed-off-by: lankamadan<lanka.madan@samsung.com>
Reviewed-on: https://gerrit.iotivity.org/gerrit/3597
Tested-by: jenkins-iotivity <jenkins-iotivity@opendaylight.org>
resource/docs/Doxyfile
service/easy-setup/sdk/common/escommon.h [moved from service/easy-setup/sdk/common/common.h with 97% similarity, mode: 0644]
service/easy-setup/sdk/enrollee/api/easysetup.h
service/easy-setup/sdk/enrollee/arduino/wifi/networkHandler.h
service/easy-setup/sdk/enrollee/inc/resourceHandler.h
service/easy-setup/sdk/mediator/inc/prov_adapter.h
service/easy-setup/sdk/mediator/inc/provisioning.h
service/easy-setup/sdk/mediator/src/provisioning.cpp
service/easy-setup/sdk/mediator/src/wifi_provisioning.cpp

index 08ad486..d698710 100644 (file)
@@ -673,6 +673,8 @@ INPUT                  = . \
                          ../../service/resource-hosting/include/hosting.h \
                          ../../service/resource-encapsulation/include \
                          ../../service/resource-directory/include \
+                         ../../service/easy-setup/sdk/common \
+                         ../../service/easy-setup/sdk/enrollee/api \
 
 # This tag can be used to specify the character encoding of the source files
 # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is
old mode 100755 (executable)
new mode 100644 (file)
similarity index 97%
rename from service/easy-setup/sdk/common/common.h
rename to service/easy-setup/sdk/common/escommon.h
index 6a22ac2..b1b712f
@@ -91,7 +91,7 @@ typedef enum {
 } ProvStatus;
 
 /**
- * Response from queries to remote servers. Queries are made by calling the @ref OCDoResource API.
+ * Response from queries to remote servers.
  */
 typedef struct {
     // Provisioning Status
index 9887a2c..70b38ad 100644 (file)
@@ -29,7 +29,8 @@
 
 // Do not remove the include below
 #include "Arduino.h"
-#include "networkHandler.h"
+#include "escommon.h"
+
 
 #ifdef __cplusplus
 extern "C" {
index 8758674..df67b8f 100755 (executable)
@@ -37,7 +37,7 @@
 
 #include <string.h>
 #include "logger.h"
-#include "common.h"
+#include "escommon.h"
 
 #define MAXSSIDLEN 33
 #define MAXNETCREDLEN 20
index 765f916..6d24877 100644 (file)
@@ -24,7 +24,7 @@
 #include <string.h>
 #include "logger.h"
 #include "ocstack.h"
-#include "common.h"
+#include "escommon.h"
 #include "networkHandler.h"
 #include "octypes.h"
 
index 3ceb901..fdd611f 100644 (file)
@@ -25,7 +25,7 @@
 #include "logger.h"
 #include "ocstack.h"
 #include "octypes.h"
-#include "common.h"
+#include "escommon.h"
 
 #include "provisioning.h"
 
index 5f63242..72d2d56 100644 (file)
@@ -26,7 +26,7 @@
 
 #include "logger.h"
 #include "ocstack.h"
-#include "common.h"
+#include "escommon.h"
 
 //-----------------------------------------------------------------------------
 // Defines
index f3ef773..22e3efe 100644 (file)
@@ -30,7 +30,7 @@
 
 //EasySetup include files
 #include "ocpayload.h"
-#include "common.h"
+#include "escommon.h"
 
 
 // External includes
index b7afd28..57e44b8 100755 (executable)
@@ -18,7 +18,7 @@
 //
 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 
-// NOTE : Keeping Wifi provisioning in this file to have adaptability while doing OOPs refactoring 
+// NOTE : Keeping Wifi provisioning in this file to have adaptability while doing OOPs refactoring
 
 #include "provisioning.h"
 
@@ -32,7 +32,7 @@
 
 //EasySetup include files
 #include "ocpayload.h"
-#include "common.h"
+#include "escommon.h"
 
 // External includes
 #include "logger.h"