SectionPairRowValue.cpp 677 B

1234567891011121314151617181920212223
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-10
  6. * Changed: 2023-02-11
  7. *
  8. * */
  9. #include <ls-std/io/section-pair/model/SectionPairRowValue.hpp>
  10. ls::std::io::SectionPairRowValue::SectionPairRowValue(const ls::std::io::SectionPairRowEnumType &_type) : type(_type)
  11. {}
  12. ls::std::io::SectionPairRowValue::~SectionPairRowValue() = default;
  13. ls::std::core::type::byte_field ls::std::io::SectionPairRowValue::marshal()
  14. {
  15. return ls::std::core::type::byte_field{};
  16. }
  17. void ls::std::io::SectionPairRowValue::unmarshal(const ls::std::core::type::byte_field &_data)
  18. {}