1 /*---------------------------------------------------------------------------*
2   Project:  news
3   File:     news.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$
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NN_NEWS_H_
17 #define NN_NEWS_H_
18 
19 /*! @namespace  nn::news
20     @brief      おしらせライブラリの名前空間
21 */
22 /*!
23     @namespace  nn::news::CTR
24     @brief      CTRのおしらせライブラリの名前空間です。
25                 <BR>("::CTR"" の部分は省略して記述可能です。)
26 */
27 /*!
28     @namespace  nn::news::CTR::user
29     @brief      CTRのおしらせライブラリの一般アプリ用の名前空間です。
30                 <BR>("::CTR::user"" の部分は省略して記述可能です。)
31 */
32 
33 #include <nn/news/CTR/user/news_UserApi.h>
34 #include <nn/news/CTR/user/news_UserResult.h>
35 #include <nn/news/CTR/user/news_UserTypes.h>
36 
37 namespace nn {
38 namespace news {
39 using namespace nn::news::CTR;
40 using namespace nn::news::CTR::user;
41 }
42 }
43 
44 #endif /* NN_NEWS_H_ */
45