1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     ulcd.h
4 
5   Copyright (C)2010 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: 13433 $
14  *---------------------------------------------------------------------------*/
15 #ifndef NN_ULCD_H_
16 #define NN_ULCD_H_
17 
18 /*! @namespace  nn::ulcd
19     @brief      ULCD の名前空間
20 */
21 
22 /*! @namespace  nn::ulcd::CTR
23     @brief      CTR の ULCD の名前空間です。
24                 <BR>("::CTR" の部分は省略して記述可能です。)
25 */
26 
27 #if defined(NN_PLATFORM_CTR)
28     #include <nn/ulcd/CTR/ulcd_StereoCamera.h>
29 
30     #ifdef  __cplusplus
31         namespace nn {
32             namespace ulcd {
33                 using namespace nn::ulcd::CTR;
34             }
35         }
36     #endif // __cplusplus
37 #else
38     #error no platform selected
39 #endif
40 
41 #endif /* NN_ULCD_H_ */
42