12345678910111213141516171819202122232425262728293031323334 |
- /*
- * 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 <ls-std/os/dynamic-goal.hpp>
- #include <string>
- /*
- * @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
|