summaryrefslogtreecommitdiff
path: root/implementation/e2e_protection/include/e2e/profile/profile01/protector.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/e2e_protection/include/e2e/profile/profile01/protector.hpp')
-rw-r--r--implementation/e2e_protection/include/e2e/profile/profile01/protector.hpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/implementation/e2e_protection/include/e2e/profile/profile01/protector.hpp b/implementation/e2e_protection/include/e2e/profile/profile01/protector.hpp
index fe8b603..13bd524 100644
--- a/implementation/e2e_protection/include/e2e/profile/profile01/protector.hpp
+++ b/implementation/e2e_protection/include/e2e/profile/profile01/protector.hpp
@@ -7,6 +7,7 @@
#define VSOMEIP_V3_E2E_PROFILE01_PROTECTOR_HPP
#include <mutex>
+
#include "../profile01/profile_01.hpp"
#include "../profile_interface/protector.hpp"
@@ -15,14 +16,14 @@ namespace e2e {
namespace profile01 {
class protector final : public e2e::profile_interface::protector {
- public:
+public:
protector(void) = delete;
- explicit protector(const profile_config &_config) : config_(_config), counter_(0){};
+ explicit protector(const profile_config &_config) : config_(_config), counter_(0) {};
- void protect(e2e_buffer &_buffer) override final;
+ void protect(e2e_buffer &_buffer, instance_t _instance) override final;
- private:
+private:
void write_counter(e2e_buffer &_buffer);
@@ -32,8 +33,7 @@ class protector final : public e2e::profile_interface::protector {
void increment_counter(void);
-
- private:
+private:
profile_config config_;
uint8_t counter_;
std::mutex protect_mutex_;