1 /*---------------------------------------------------------------------------*
2   Project:  Horizon
3   File:     hid.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: 25279 $
14  *---------------------------------------------------------------------------*/
15 
16 #ifndef NN_HID_H_
17 #define NN_HID_H_
18 
19 /*! @namespace  nn::hid
20     @brief      HID ( Human Interface Device ) の名前空間
21 */
22 /*!
23     @namespace  nn::hid::CTR
24     @brief CTRのHID ( Human Interface Device ) の名前空間です。
25            <BR>("::CTR" の部分は省略して記述可能です。)
26 */
27 
28 #if defined(NN_PLATFORM_CTR)
29 
30     #ifdef  __cplusplus
31         #include <nn/hid/CTR/hid_Result.h>
32         #include <nn/hid/CTR/hid_Api.h>
33         #include <nn/hid/CTR/hid_Pad.h>
34         #include <nn/hid/CTR/hid_TouchPanel.h>
35         #include <nn/hid/CTR/hid_Accelerometer.h>
36         #include <nn/hid/CTR/hid_PadReader.h>
37         #include <nn/hid/CTR/hid_TouchPanelReader.h>
38         #include <nn/hid/CTR/hid_AccelerometerReader.h>
39         #include <nn/hid/CTR/hid_GyroscopeReader.h>
40         #include <nn/hid/CTR/hid_DebugPadReader.h>
41 
42         namespace nn {
43             namespace hid {
44                 using namespace nn::hid::CTR;
45             }
46         }
47     #endif // __cplusplus
48 
49 #else
50     #error no platform selected
51 #endif
52 
53 #endif  // ifndef NN_HID_H_
54