summaryrefslogtreecommitdiff
path: root/src/components/formatters/include/formatters/CFormatterJsonBase.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/formatters/include/formatters/CFormatterJsonBase.h')
-rw-r--r--src/components/formatters/include/formatters/CFormatterJsonBase.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/src/components/formatters/include/formatters/CFormatterJsonBase.h b/src/components/formatters/include/formatters/CFormatterJsonBase.h
index 66ffa0c1c5..b800ac1559 100644
--- a/src/components/formatters/include/formatters/CFormatterJsonBase.h
+++ b/src/components/formatters/include/formatters/CFormatterJsonBase.h
@@ -35,8 +35,8 @@
#ifndef SRC_COMPONENTS_FORMATTERS_INCLUDE_FORMATTERS_CFORMATTERJSONBASE_H_
#define SRC_COMPONENTS_FORMATTERS_INCLUDE_FORMATTERS_CFORMATTERJSONBASE_H_
-#include "smart_objects/smart_object.h"
#include "json/json.h"
+#include "smart_objects/smart_object.h"
namespace ns_smart_device_link {
namespace ns_json_handler {
@@ -44,33 +44,33 @@ namespace formatters {
namespace meta_formatter_error_code {
/**
- * @brief Error codes of MetaFormatter represented as bitmask
- **/
+ * @brief Error codes of MetaFormatter represented as bitmask
+ **/
typedef long tMetaFormatterErrorCode;
/**
- * @brief OK, no error
- */
+ * @brief OK, no error
+ */
static const tMetaFormatterErrorCode kErrorOk = 0x0;
/**
- * @brief origin smart object is not function
- */
+ * @brief origin smart object is not function
+ */
static const tMetaFormatterErrorCode kErrorObjectIsNotFunction = 0x01;
/**
- * @brief smart shema describes object which is not function
- */
+ * @brief smart shema describes object which is not function
+ */
static const tMetaFormatterErrorCode kErrorSchemaIsNotFunction = 0x02;
/**
- * @brief result smart object has invalid type (SmartType_Invalid)
- * before passing to MetaFormatter, i.e. result object can not
- * be changed, i.e. result object can not be built
- *
- */
+ * @brief result smart object has invalid type (SmartType_Invalid)
+ * before passing to MetaFormatter, i.e. result object can not
+ * be changed, i.e. result object can not be built
+ *
+ */
static const tMetaFormatterErrorCode kErrorFailedCreateObjectBySchema = 0x04;
-}
+} // namespace meta_formatter_error_code
/**
* @brief The base class for all JSON based formatters.
@@ -102,18 +102,18 @@ class CFormatterJsonBase {
ns_smart_device_link::ns_smart_objects::SmartObject& obj);
/**
- * @brief The method constructs a JSON object from the input SmartObject
- *
- * @param obj Input SmartObject. Can contain a complex structure of objects.
- * @param value The resulting JSON object. It has the same structure as the
- *input SmartObject.
- */
+ * @brief The method constructs a JSON object from the input SmartObject
+ *
+ * @param obj Input SmartObject. Can contain a complex structure of objects.
+ * @param value The resulting JSON object. It has the same structure as the
+ *input SmartObject.
+ */
static void objToJsonValue(
const ns_smart_device_link::ns_smart_objects::SmartObject& obj,
Json::Value& value);
};
-}
-}
-} // namespace ns_smart_device_link::ns_json_handler::formatters
+} // namespace formatters
+} // namespace ns_json_handler
+} // namespace ns_smart_device_link
#endif // SRC_COMPONENTS_FORMATTERS_INCLUDE_FORMATTERS_CFORMATTERJSONBASE_H_