12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-17
- * Changed: 2023-05-18
- *
- * */
- #ifndef LS_STD_SERIALIZABLE_SECTION_PAIR_PARAMETER_HPP
- #define LS_STD_SERIALIZABLE_SECTION_PAIR_PARAMETER_HPP
- #include <ls-std/core/Class.hpp>
- #include <ls-std/os/dynamic-goal.hpp>
- #include <memory>
- #include <string>
- #include <string_view>
- namespace ls::std::io
- {
- class LS_STD_DYNAMIC_GOAL SerializableSectionPairParameter
- {
- public:
- SerializableSectionPairParameter();
- ~SerializableSectionPairParameter();
- [[nodiscard]] ::std::string getNewLine() const;
- [[nodiscard]] ::std::shared_ptr<ls::std::core::Class> getValue() const;
- void setNewLine(::std::string_view _newLine);
- void setValue(const ::std::shared_ptr<ls::std::core::Class> &_value);
- private:
- ::std::string parseNewLine{};
- ::std::shared_ptr<ls::std::core::Class> value{};
- };
- }
- #endif
|