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