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