1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     ptm.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: 17821 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NN_PTM_H_
17 #define NN_PTM_H_
18 
19 #if defined(NN_PLATFORM_CTR)
20     #include <nn/ptm/ptm_Result.h>
21     #include <nn/ptm/CTR/ptm_Api.h>
22 
23 /*!
24     @namespace  nn::ptm
25     @brief      電源と時計に関する API の名前空間
26 */
27 
28 /*!
29     @namespace  nn::ptm::CTR
30     @brief      電源と時計に関する CTR の API の名前空間
31 
32     ("::CTR" の部分は省略して記述可能です。)
33 */
34 
35     namespace nn { namespace ptm {
36         using namespace CTR;
37     }}
38 #else
39     #error no platform selected
40 #endif
41 
42 #endif  // ifndef NN_PTM_H_
43