SectionPairRowValue.cpp 822 B

123456789101112131415161718192021222324252627282930313233
  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-23
  7. *
  8. * */
  9. #include <ls-std/io/section-pair/model/SectionPairRowValue.hpp>
  10. using ls::std::core::type::byte_field;
  11. using ls::std::io::SectionPairRowEnumType;
  12. using ls::std::io::SectionPairRowValue;
  13. using std::string;
  14. SectionPairRowValue::SectionPairRowValue(const SectionPairRowEnumType &_type) : type(_type)
  15. {}
  16. SectionPairRowValue::~SectionPairRowValue() noexcept = default;
  17. byte_field SectionPairRowValue::marshal()
  18. {
  19. return byte_field{};
  20. }
  21. void SectionPairRowValue::reserveNewLine(const string &_reservedNewLine)
  22. {
  23. this->reservedNewLine = _reservedNewLine;
  24. }
  25. void SectionPairRowValue::unmarshal(const byte_field &_data)
  26. {}