xref: /haiku/src/kits/interface/Input.cpp (revision 7120e97489acbf17d86d3f33e3b2e68974fd4b23)
1 /***********************************************************************
2  * AUTHOR: nobody <baron>
3  *   FILE: Input.cpp
4  *   DATE: Sun Dec 16 15:57:43 2001
5  *  DESCR:
6  ***********************************************************************/
7 #include "Input.h"
8 
9 /*
10  *  Method: BInputDevice::~BInputDevice()
11  *   Descr:
12  */
13 BInputDevice::~BInputDevice()
14 {
15 }
16 
17 
18 /*
19  *  Method: BInputDevice::Name()
20  *   Descr:
21  */
22 const char *
23 BInputDevice::Name() const
24 {
25     return NULL;
26 }
27 
28 
29 /*
30  *  Method: BInputDevice::Type()
31  *   Descr:
32  */
33 input_device_type
34 BInputDevice::Type() const
35 {
36     input_device_type dummy;
37 
38     return dummy;
39 }
40 
41 
42 /*
43  *  Method: BInputDevice::IsRunning()
44  *   Descr:
45  */
46 bool
47 BInputDevice::IsRunning() const
48 {
49     bool dummy;
50 
51     return dummy;
52 }
53 
54 
55 /*
56  *  Method: BInputDevice::Start()
57  *   Descr:
58  */
59 status_t
60 BInputDevice::Start()
61 {
62     status_t dummy;
63 
64     return dummy;
65 }
66 
67 
68 /*
69  *  Method: BInputDevice::Stop()
70  *   Descr:
71  */
72 status_t
73 BInputDevice::Stop()
74 {
75     status_t dummy;
76 
77     return dummy;
78 }
79 
80 
81 /*
82  *  Method: BInputDevice::Control()
83  *   Descr:
84  */
85 status_t
86 BInputDevice::Control(uint32 code,
87                       BMessage *message)
88 {
89     status_t dummy;
90 
91     return dummy;
92 }
93 
94 
95 /*
96  *  Method: BInputDevice::Start()
97  *   Descr:
98  */
99 status_t
100 BInputDevice::Start(input_device_type type)
101 {
102     status_t dummy;
103 
104     return dummy;
105 }
106 
107 
108 /*
109  *  Method: BInputDevice::Stop()
110  *   Descr:
111  */
112 status_t
113 BInputDevice::Stop(input_device_type type)
114 {
115     status_t dummy;
116 
117     return dummy;
118 }
119 
120 
121 /*
122  *  Method: BInputDevice::Control()
123  *   Descr:
124  */
125 status_t
126 BInputDevice::Control(input_device_type type,
127                       uint32 code,
128                       BMessage *message)
129 {
130     status_t dummy;
131 
132     return dummy;
133 }
134 
135 
136 /*
137  *  Method: BInputDevice::BInputDevice()
138  *   Descr:
139  */
140 BInputDevice::BInputDevice()
141 {
142 }
143 
144 
145 /*
146  *  Method: BInputDevice::set_name_and_type()
147  *   Descr:
148  */
149 void
150 BInputDevice::set_name_and_type(const char *name,
151                                 input_device_type type)
152 {
153 }
154 
155 
156