| LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #pragma once 2 : 3 : #include <nlohmann/json.hpp> 4 : 5 : namespace Amplitron { 6 : 7 586 : class ISerializable { 8 : public: 9 1251 : virtual ~ISerializable() = default; 10 : virtual nlohmann::json get_params() const = 0; 11 : virtual void set_params(const nlohmann::json& j) = 0; 12 : }; 13 : 14 : } // namespace Amplitron |
| Generated by: LCOV version 2.0-1 |