summaryrefslogtreecommitdiff
path: root/src/components/smart_objects/include/smart_objects/schema_item.h
diff options
context:
space:
mode:
authorjacobkeeler <jacob.keeler@livioradio.com>2018-08-29 15:12:55 -0400
committerjacobkeeler <jacob.keeler@livioradio.com>2018-08-29 15:12:55 -0400
commit4746c58bf30b41f0a121a7b5dbc177aa2a28be02 (patch)
treee03d518826b79eba69e652e77a1da3d33a741f25 /src/components/smart_objects/include/smart_objects/schema_item.h
parent09e4e684708ad5ab2544c72745516e9fe481ba0b (diff)
downloadsdl_core-4746c58bf30b41f0a121a7b5dbc177aa2a28be02.tar.gz
Fix namespace case structure in projectfix/namespace_case
Diffstat (limited to 'src/components/smart_objects/include/smart_objects/schema_item.h')
-rw-r--r--src/components/smart_objects/include/smart_objects/schema_item.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/components/smart_objects/include/smart_objects/schema_item.h b/src/components/smart_objects/include/smart_objects/schema_item.h
index 5626b0cf23..24c642c0ba 100644
--- a/src/components/smart_objects/include/smart_objects/schema_item.h
+++ b/src/components/smart_objects/include/smart_objects/schema_item.h
@@ -43,8 +43,8 @@
#include "utils/macro.h"
#include "utils/semantic_version.h"
-namespace NsSmartDeviceLink {
-namespace NsSmartObjects {
+namespace ns_smart_device_link {
+namespace ns_smart_objects {
class SmartObject;
/**
@@ -59,9 +59,9 @@ class ISchemaItem {
* @param report__ object for reporting errors during validation
* message if an error occurs
* @param MessageVersion to check mobile RPC version against RPC Spec Histor
- * @return NsSmartObjects::Errors::eType
+ * @return ns_smart_objects::errors::eType
**/
- virtual Errors::eType validate(
+ virtual errors::eType validate(
const SmartObject& Object,
rpc::ValidationReport* report__,
const utils::SemanticVersion& MessageVersion = utils::SemanticVersion());
@@ -92,7 +92,7 @@ class ISchemaItem {
* from smart object otherwise contains false.
**/
virtual void applySchema(
- NsSmartDeviceLink::NsSmartObjects::SmartObject& Object,
+ ns_smart_device_link::ns_smart_objects::SmartObject& Object,
const bool RemoveFakeParameters,
const utils::SemanticVersion& MessageVersion = utils::SemanticVersion());
@@ -102,7 +102,7 @@ class ISchemaItem {
* @param Object Object to unapply schema.
**/
virtual void unapplySchema(
- NsSmartDeviceLink::NsSmartObjects::SmartObject& Object);
+ ns_smart_device_link::ns_smart_objects::SmartObject& Object);
/**
* @brief Build smart object by smart schema having copied matched
@@ -124,6 +124,6 @@ class ISchemaItem {
virtual ~ISchemaItem() {}
};
typedef std::shared_ptr<ISchemaItem> ISchemaItemPtr;
-} // namespace NsSmartObjects
-} // namespace NsSmartDeviceLink
+} // namespace ns_smart_objects
+} // namespace ns_smart_device_link
#endif // SRC_COMPONENTS_SMART_OBJECTS_INCLUDE_SMART_OBJECTS_SCHEMA_ITEM_H_