1 // Copyright (C) 2014-2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
2 // This Source Code Form is subject to the terms of the Mozilla Public
3 // License, v. 2.0. If a copy of the MPL was not distributed with this
4 // file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 
6 #include <ostream>
7 #include "../../../e2e_protection/include/e2exf/config.hpp"
8 
9 namespace vsomeip_v3 {
10 
operator <<(std::ostream & _os,const e2exf::data_identifier_t & _data_identifier)11 std::ostream &operator<<(std::ostream &_os, const e2exf::data_identifier_t &_data_identifier) {
12     _os << _data_identifier.first << _data_identifier.second;
13     return _os;
14 }
15 
16 } // namespace vsomeip_v3
17