1 /*---------------------------------------------------------------------------* 2 Project: Horizon 3 File: util.h 4 Copyright (C)2009 Nintendo Co., Ltd. All rights reserved. 5 These coded instructions, statements, and computer programs contain 6 proprietary information of Nintendo of America Inc. and/or Nintendo 7 Company Ltd., and are protected by Federal copyright law. They may 8 not be disclosed to third parties or copied or duplicated in any form, 9 in whole or in part, without the prior written consent of Nintendo. 10 $Rev: 25864 $ 11 *--------------------------------------------------------------------------- 12 13 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 /* Please see man pages for details 30 31 32 */ 33 34 #else 35 #error no platform selected 36 #endif 37 38 #endif /* NN_UTIL_H_ */ 39