summaryrefslogtreecommitdiff
path: root/src/components/policy/policy_external/include
diff options
context:
space:
mode:
authorJacob Keeler <jacob.keeler@livioradio.com>2018-08-17 05:52:50 -0700
committerGitHub <noreply@github.com>2018-08-17 05:52:50 -0700
commit9bdf1c823482e9bc8db0756b33826551ffd7a640 (patch)
tree3f47255f955507abc0a231b2a1a35ba570cd15ae /src/components/policy/policy_external/include
parentc0894b5ac6e0b7bd82102f46a02b06b093859d11 (diff)
parent80b868ed6d1b0c7b488729c8c1ddafe04614fbea (diff)
downloadsdl_core-9bdf1c823482e9bc8db0756b33826551ffd7a640.tar.gz
Merge pull request #2207 from smartdevicelink/feature/rc_new_modules
Feature/New remote control modules and parameters
Diffstat (limited to 'src/components/policy/policy_external/include')
-rw-r--r--src/components/policy/policy_external/include/policy/policy_table/enums.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/components/policy/policy_external/include/policy/policy_table/enums.h b/src/components/policy/policy_external/include/policy/policy_table/enums.h
index d13c545a94..5fc43603d8 100644
--- a/src/components/policy/policy_external/include/policy/policy_table/enums.h
+++ b/src/components/policy/policy_external/include/policy/policy_table/enums.h
@@ -167,7 +167,14 @@ bool IsValidEnum(Input val);
const char* EnumToJsonString(Input val);
bool EnumFromJsonString(const std::string& literal, Input* result);
-enum ModuleType { MT_CLIMATE, MT_RADIO, MT_SEAT };
+enum ModuleType {
+ MT_CLIMATE,
+ MT_RADIO,
+ MT_SEAT,
+ MT_AUDIO,
+ MT_LIGHT,
+ MT_HMI_SETTINGS
+};
bool IsValidEnum(ModuleType val);
const char* EnumToJsonString(ModuleType val);
bool EnumFromJsonString(const std::string& literal, ModuleType* result);