xref: /haiku/src/servers/input/InputServerFilter.cpp (revision 7120e97489acbf17d86d3f33e3b2e68974fd4b23)
1 /*****************************************************************************/
2 // OpenBeOS InputServer
3 //
4 // Version: [0.0.5] [Development Stage]
5 //
6 // [Description]
7 //
8 //
9 // This application and all source files used in its construction, except
10 // where noted, are licensed under the MIT License, and have been written
11 // and are:
12 //
13 // Copyright (c) 2002 OpenBeOS Project
14 //
15 // Permission is hereby granted, free of charge, to any person obtaining a
16 // copy of this software and associated documentation files (the "Software"),
17 // to deal in the Software without restriction, including without limitation
18 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
19 // and/or sell copies of the Software, and to permit persons to whom the
20 // Software is furnished to do so, subject to the following conditions:
21 //
22 // The above copyright notice and this permission notice shall be included
23 // in all copies or substantial portions of the Software.
24 //
25 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
26 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
28 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
30 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
31 // DEALINGS IN THE SOFTWARE.
32 /*****************************************************************************/
33 
34 
35 #include "InputServerFilter.h"
36 
37 /**
38  *  Method: BInputServerFilter::BInputServerFilter()
39  *   Descr:
40  */
41 BInputServerFilter::BInputServerFilter()
42 {
43 }
44 
45 
46 /**
47  *  Method: BInputServerFilter::~BInputServerFilter()
48  *   Descr:
49  */
50 BInputServerFilter::~BInputServerFilter()
51 {
52 }
53 
54 
55 /**
56  *  Method: BInputServerFilter::InitCheck()
57  *   Descr:
58  */
59 status_t
60 BInputServerFilter::InitCheck()
61 {
62     status_t dummy;
63 
64     return dummy;
65 }
66 
67 
68 /**
69  *  Method: BInputServerFilter::Filter()
70  *   Descr:
71  */
72 filter_result
73 BInputServerFilter::Filter(BMessage *message,
74                            BList *outList)
75 {
76     filter_result dummy;
77 
78     return dummy;
79 }
80 
81 
82 /**
83  *  Method: BInputServerFilter::GetScreenRegion()
84  *   Descr:
85  */
86 status_t
87 BInputServerFilter::GetScreenRegion(BRegion *region) const
88 {
89     status_t dummy;
90 
91     return dummy;
92 }
93 
94 
95 /**
96  *  Method: BInputServerFilter::_ReservedInputServerFilter1()
97  *   Descr:
98  */
99 void
100 BInputServerFilter::_ReservedInputServerFilter1()
101 {
102 }
103 
104 
105 /**
106  *  Method: BInputServerFilter::_ReservedInputServerFilter2()
107  *   Descr:
108  */
109 void
110 BInputServerFilter::_ReservedInputServerFilter2()
111 {
112 }
113 
114 
115 /**
116  *  Method: BInputServerFilter::_ReservedInputServerFilter3()
117  *   Descr:
118  */
119 void
120 BInputServerFilter::_ReservedInputServerFilter3()
121 {
122 }
123 
124 
125 /**
126  *  Method: BInputServerFilter::_ReservedInputServerFilter4()
127  *   Descr:
128  */
129 void
130 BInputServerFilter::_ReservedInputServerFilter4()
131 {
132 }
133 
134 
135