1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     mic.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: 29771 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NN_MIC_H_
17 #define NN_MIC_H_
18 
19 /*! @namespace  nn::mic
20     @brief      MIC の名前空間
21 */
22 /*!
23     @namespace  nn::mic::CTR
24     @brief      CTRの MIC の名前空間です。
25                 <BR>("::CTR"" の部分は省略して記述可能です。)
26 */
27 /*!
28     @defgroup   nn_mic   mic
29 
30     @brief      MIC を扱うモジュールです。
31   @{
32 */
33 #if defined(NN_PLATFORM_CTR)
34 #ifdef  __cplusplus
35     #include <nn/mic/CTR/mic_Result.h>
36     #include <nn/mic/CTR/mic_Api.h>
37 
38     namespace nn {
39         namespace mic {
40             using namespace nn::mic::CTR;
41         }
42     }
43 #endif // __cplusplus
44 #else
45     #error no platform selected
46 #endif
47 
48 /*!
49   @}
50 */
51 
52 #endif  // ifndef NN_MIC_H_
53