1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: util.h 4 5 Copyright (C)2009 Nintendo Co., Ltd. All rights reserved. 6 7 These coded instructions, statements, and computer programs contain 8 proprietary information of Nintendo of America Inc. and/or Nintendo 9 Company Ltd., and are protected by Federal copyright law. They may 10 not be disclosed to third parties or copied or duplicated in any form, 11 in whole or in part, without the prior written consent of Nintendo. 12 13 $Rev: 25864 $ 14 *---------------------------------------------------------------------------*/ 15 16 #ifndef NN_UTIL_H_ 17 #define NN_UTIL_H_ 18 19 #if defined(NN_PLATFORM_CTR) 20 #include <nn/util/util_Crc.h> 21 #include <nn/util/util_Macros.h> 22 #include <nn/util/util_Misc.h> 23 #include <nn/util/util_NonCopyable.h> 24 #include <nn/util/util_Result.h> 25 #include <nn/util/util_Singleton.h> 26 #include <nn/util/util_SizedEnum.h> 27 #include <nn/dbg/dbg_Logger.h> 28 29 /*! 30 @namespace nn::util 31 @brief ユーティリティの名前空間 32 */ 33 34 #else 35 #error no platform selected 36 #endif 37 38 #endif /* NN_UTIL_H_ */ 39