123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-17
- * Changed: 2024-09-13
- *
- * */
- #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>
- /*
- * @doc: class(name: 'SerializableSectionPairParameter', package: 'io')
- * @doc: io.SerializableSectionPairParameter.description('This class is holding information for Section Pair serialization.')
- */
- 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
|