#ifndef __IOSTREAM_FORMAT_H__ #define __IOSTREAM_FORMAT_H__ /** * iostreamの記述方法を定めたヘッダ * */ #ifndef ENABLE_IOSTREAM #define ENABLE_IOSTREAM 1 #else #define ENABLE_IOSTREAM 0 #endif #if ENABLE_IOSTREAM #include #include #else #ifdef __cplusplus #include #include #else #include #include #endif #endif #if defined(_MSC_VER) && _MSC_VER >= 1400 #define _CRT_SECURE_NO_WARNINGS // sprintf_s等への推奨を止める #endif #endif /* __IOSTREAM_FORMAT_H__ */