CrossFramework Library
|
00001 00006 #if defined(XBASE_INCLUDED_NEWLINE_HPP) 00007 #else 00008 #define XBASE_INCLUDED_NEWLINE_HPP 00009 00010 //------------------------------------------------------------ 00011 #include <XBase/OS.hpp> 00012 00013 //------------------------------------------------------------ 00015 00016 00021 #if defined(XBASE_OS_WINDOWS) 00022 #define XBASE_NEWLINE ("\r\n") 00023 #else 00024 // デフォルトは\n 00025 #define XBASE_NEWLINE ("\n") 00026 #endif 00027 00029 //------------------------------------------------------------ 00030 #endif 00031 // EOF