summaryrefslogtreecommitdiff
path: root/src/components/smart_objects/src/schema_item.cc
diff options
context:
space:
mode:
authorJacob Keeler <jacob.keeler@livioradio.com>2018-08-28 16:48:19 -0400
committerGitHub <noreply@github.com>2018-08-28 16:48:19 -0400
commit2f7d18baf1485942efb27297724b82dde4255c76 (patch)
treecf3ffb0385aac8151f999d47b68b86c2adb8e380 /src/components/smart_objects/src/schema_item.cc
parent9381e8a084e70f44ad84ecf0745cd239fdf245a8 (diff)
parent721fcfec20f26ff86dcbd652d12e7cc26e355b7f (diff)
downloadsdl_core-feature/boost_system_command_implementation.tar.gz
Merge branch 'develop' into feature/boost_system_command_implementationfeature/boost_system_command_implementation
Diffstat (limited to 'src/components/smart_objects/src/schema_item.cc')
-rw-r--r--src/components/smart_objects/src/schema_item.cc13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/components/smart_objects/src/schema_item.cc b/src/components/smart_objects/src/schema_item.cc
index 22735d40d5..a47fe4d1fb 100644
--- a/src/components/smart_objects/src/schema_item.cc
+++ b/src/components/smart_objects/src/schema_item.cc
@@ -35,12 +35,10 @@
namespace NsSmartDeviceLink {
namespace NsSmartObjects {
-Errors::eType ISchemaItem::validate(const SmartObject& Object) {
- return Errors::ERROR;
-}
-
-Errors::eType ISchemaItem::validate(const SmartObject& object,
- rpc::ValidationReport* report__) {
+Errors::eType ISchemaItem::validate(
+ const SmartObject& object,
+ rpc::ValidationReport* report__,
+ const utils::SemanticVersion& MessageVersion) {
return Errors::ERROR;
}
@@ -53,7 +51,8 @@ bool ISchemaItem::hasDefaultValue(SmartObject& Object) {
}
void ISchemaItem::applySchema(SmartObject& Object,
- const bool RemoveFakeParameters) {}
+ const bool RemoveFakeParameters,
+ const utils::SemanticVersion& MessageVersion) {}
void ISchemaItem::unapplySchema(SmartObject& Object) {}