• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (C) 2020 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 #ifndef E2E_PROFILE_04_TEST_COMMON_HPP_
7 #define E2E_PROFILE_04_TEST_COMMON_HPP_
8 
9 #include <vsomeip/vsomeip.hpp>
10 
11 const vsomeip::service_t PROFILE_04_SERVICE = 0xd025;
12 const vsomeip::instance_t PROFILE_04_INSTANCE = 0x0001;
13 const vsomeip::major_version_t PROFILE_04_MAJOR = 0x01;
14 const vsomeip::minor_version_t PROFILE_04_MINOR = 0x00000000;
15 
16 const vsomeip::method_t PROFILE_04_METHOD = 0x0001;
17 const vsomeip::method_t PROFILE_04_SHUTDOWN = 0x0002;
18 
19 const vsomeip::eventgroup_t PROFILE_04_EVENTGROUP = 0x0001;
20 const vsomeip::event_t PROFILE_04_EVENT = 0x8001;
21 
22 #define PROFILE_O4_NUM_MESSAGES 3
23 
24 #endif // E2E_PROFILE_04_TEST_COMMON_HPP_
25