summaryrefslogtreecommitdiff
path: root/implementation/e2e_protection/include/e2e/profile/profile_interface/protector.hpp
blob: a031a9ed35b997691de2ecc85af534f9be602263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Copyright (C) 2014-2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#ifndef VSOMEIP_E2E_PROFILE_INTERFACE_PROTECTOR_HPP
#define VSOMEIP_E2E_PROFILE_INTERFACE_PROTECTOR_HPP

#include "../../../buffer/buffer.hpp"
#include "../profile_interface/profile_interface.hpp"

namespace vsomeip {
namespace e2e {
namespace profile_interface {

class protector : public profile_interface {
  public:
    virtual void protect(e2e_buffer &_buffer) = 0;
};

} // namespace profile_interface
} // namespace e2e
} // namespace vsomeip

#endif // VSOMEIP_E2E_PROFILE_INTERFACE_PROTECTOR_HPP