/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-10 * Changed: 2025-12-21 * * */ #include #include using ls::std::core::type::byte_field; using ls::std::core::NotImplementedException; using ls::std::io::SectionPairRowEnumType; using ls::std::io::SectionPairRowValue; using std::string; using std::string_view; SectionPairRowValue::SectionPairRowValue(const SectionPairRowEnumType &_type) : type(_type) {} SectionPairRowValue::~SectionPairRowValue() noexcept = default; byte_field SectionPairRowValue::marshal() { return byte_field{}; } void SectionPairRowValue::reserveNewLine(string_view _reservedNewLine) { this->reservedNewLine = _reservedNewLine; } void SectionPairRowValue::unmarshal(const byte_field &_data) { throw NotImplementedException("data (" + _data + ") not used!"); } string SectionPairRowValue::_getReservedNewLine() const { return this->reservedNewLine; } SectionPairRowEnumType SectionPairRowValue::_getType() const { return this->type; }