1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     util.h
4 
5   Copyright (C)2009-2012 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: 47508 $
14  *---------------------------------------------------------------------------*/
15 
16 /* Please see man pages for details
17 
18 
19 
20 */
21 
22 #ifndef NN_UTIL_H_
23 #define NN_UTIL_H_
24 
25 #if defined(NN_PLATFORM_CTR)
26     #include <nn/util/util_Base64.h>
27     #include <nn/util/util_Crc.h>
28     #include <nn/util/util_Macros.h>
29     #include <nn/util/util_Misc.h>
30     #include <nn/util/util_NonCopyable.h>
31     #include <nn/util/util_Result.h>
32     #include <nn/util/util_Singleton.h>
33     #include <nn/util/util_SizedEnum.h>
34     #include <nn/util/detail/util_Symbol.h>
35     #include <nn/dbg/dbg_Logger.h>
36 
37     #if defined(NN_PROCESSOR_ARM_V6)
38         #ifdef NN_SYSTEM_PROCESS
39             #include <nn/util/util_Color.h>
40         #endif
41     #endif
42 
43 /* Please see man pages for details
44 
45 
46 */
47 
48 /* Please see man pages for details
49 
50 
51 
52 */
53 
54 /*
55 
56 */
57 
58 #else
59     #error no platform selected
60 #endif
61 
62 #endif /* NN_UTIL_H_ */
63