1234567891011121314151617181920212223242526272829303132333435 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-18
- * Changed: 2024-09-09
- *
- * */
- #ifndef LS_STD_NEW_LINE_HPP
- #define LS_STD_NEW_LINE_HPP
- #include <ls-std/os/dynamic-goal.hpp>
- #include <string>
- /*
- * @doc: class(name: 'NewLine', package: 'io')
- * */
- namespace ls::std::io
- {
- class LS_STD_DYNAMIC_GOAL NewLine
- {
- public:
- NewLine();
- ~NewLine();
- [[nodiscard]] static ::std::string get();
- [[nodiscard]] static ::std::string getUnixNewLine();
- [[nodiscard]] static ::std::string getWindowsNewLine();
- };
- }
- #endif
|