Motorcortex Core  version: 2.7.6
up_version0.h
1 /*
2  * Developer : Mark Verrijt (mark.verrijt@vectioneer.com),
3  * Alexey Zakharov (alexey.zakharov@vectioneer.com)
4  * All rights reserved. Copyright (c) 2021 VECTIONEER.
5  */
6 
7 #ifndef MOTORCORTEX_CORE_PS_USERPARAMSV0_H
8 #define MOTORCORTEX_CORE_PS_USERPARAMSV0_H
9 
10 #include "up_base.h"
11 
12 namespace mcx::user_parameters {
13 
15 public:
16  ~UserParametersVersion0() override = default;
17  UserParametersData load(const nlohmann::json& json) override;
18 
19 };
20 
21 } // namespace mcx::user_parameters
22 
23 #endif // MOTORCORTEX_CORE_PS_USERPARAMSV0_H
mcx::user_parameters::UserParametersData
Definition: up_base.h:32
mcx::user_parameters::UserParametersVersion0
Definition: up_version0.h:14
mcx::user_parameters::UserParametersBase
Definition: up_base.h:40