/* * Author: Patrick-Christopher Mattulat * Company: Lynar Studios * E-Mail: webmaster@lynarstudios.com * Created: 2023-02-22 * Changed: 2024-09-13 * * */ #ifndef LS_STD_SECTION_PAIR_MESSAGE_FORMATTER_HPP #define LS_STD_SECTION_PAIR_MESSAGE_FORMATTER_HPP #include #include /* * @doc: class(name: 'SectionPairMessageFormatter', package: 'io') * @doc: io.SectionPairMessageFormatter.description('This message formatter replaces new line sequences, which are OS specific, to a readable tag for error message formatting.') * */ namespace ls::std::io { class LS_STD_DYNAMIC_GOAL SectionPairMessageFormatter { public: SectionPairMessageFormatter(); ~SectionPairMessageFormatter(); [[nodiscard]] static ::std::string getFormattedMessage(const ::std::string &_message); }; } #endif