SectionPairMessageFormatter.hpp 714 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-22
  6. * Changed: 2024-09-09
  7. *
  8. * */
  9. #ifndef LS_STD_SECTION_PAIR_MESSAGE_FORMATTER_HPP
  10. #define LS_STD_SECTION_PAIR_MESSAGE_FORMATTER_HPP
  11. #include <ls-std/os/dynamic-goal.hpp>
  12. #include <string>
  13. /*
  14. * @doc: class(name: 'SectionPairMessageFormatter', package: 'io')
  15. * */
  16. namespace ls::std::io
  17. {
  18. class LS_STD_DYNAMIC_GOAL SectionPairMessageFormatter
  19. {
  20. public:
  21. SectionPairMessageFormatter();
  22. ~SectionPairMessageFormatter();
  23. [[nodiscard]] static ::std::string getFormattedMessage(const ::std::string &_message);
  24. };
  25. }
  26. #endif