| 26 | |
| 27 | template<typename T_> |
| 28 | void read_data(const std::string& _in, T_& _out) { |
| 29 | std::stringstream its_converter; |
| 30 | |
| 31 | if (_in.size() > 2 && _in[0] == '0' && (_in[1] == 'x' || _in[1] == 'X')) |
| 32 | its_converter << std::hex << _in; |
| 33 | else |
| 34 | its_converter << _in; |
| 35 | |
| 36 | its_converter >> _out; |
| 37 | } |
| 38 | |
| 39 | policy_manager_impl::policy_manager_impl() : |
| 40 | #ifndef VSOMEIP_DISABLE_SECURITY |
no test coverage detected