NewLine.hpp 516 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2020-08-18
  6. * Changed: 2023-02-04
  7. *
  8. * */
  9. #ifndef LS_STD_NEW_LINE_HPP
  10. #define LS_STD_NEW_LINE_HPP
  11. #include <string>
  12. namespace ls::std::io
  13. {
  14. class NewLine
  15. {
  16. public:
  17. NewLine();
  18. ~NewLine();
  19. static ::std::string get();
  20. static ::std::string getUnixNewLine();
  21. static ::std::string getWindowsNewLine();
  22. };
  23. }
  24. #endif