SectionPairRowValue.cpp 828 B

12345678910111213141516171819202122232425262728
  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-22
  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() noexcept = 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::reserveNewLine(const ::std::string &_reservedNewLine)
  18. {
  19. this->reservedNewLine = _reservedNewLine;
  20. }
  21. void ls::std::io::SectionPairRowValue::unmarshal(const ls::std::core::type::byte_field &_data)
  22. {}