TnEHProvider
tn_settings.h
Go to the documentation of this file.
1 
10 #ifndef __TN_SETTINGS_H__
11 #define __TN_SETTINGS_H__
12 
13 #include <string>
14 #include <vector>
15 
16 namespace tn
17 {
18 namespace ehp
19 {
29 {
30  std::string region; // current region
31  std::string config_path; // tn ehprovider path
32  std::vector<std::pair<std::string, std::string>> data_path_vec; // key is region, value is data path
33 };
34 } // namespace ehp
35 } // namespace tn
36 
37 #endif //__TN_SETTINGS_H__
tn::ehp::TnEHProviderSettings::data_path_vec
std::vector< std::pair< std::string, std::string > > data_path_vec
Definition: tn_settings.h:32
tn::ehp::TnEHProviderSettings
The defination of settings, include region, config path, data path vector.
Definition: tn_settings.h:29
tn::ehp::TnEHProviderSettings::config_path
std::string config_path
Definition: tn_settings.h:31
tn
Definition: tn_adas_message.h:15
tn::ehp::TnEHProviderSettings::region
std::string region
Definition: tn_settings.h:30