author | mickeyl <mickeyl> | 2005-05-03 09:32:33 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-05-03 09:32:33 (UTC) |
commit | 8dc5378786b26d847e4771129760ccb76f04c40f (patch) (unidiff) | |
tree | fe33c8506c5a50e1a29f6749d1a807878acf9f1a | |
parent | fc1d18b34bacf2429cdf8738bd68af6bb99d0a2e (diff) | |
download | opie-8dc5378786b26d847e4771129760ccb76f04c40f.zip opie-8dc5378786b26d847e4771129760ccb76f04c40f.tar.gz opie-8dc5378786b26d847e4771129760ccb76f04c40f.tar.bz2 |
fix includes
-rw-r--r-- | noncore/settings/networksettings2/opietooth2/Opietooth.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/noncore/settings/networksettings2/opietooth2/Opietooth.h b/noncore/settings/networksettings2/opietooth2/Opietooth.h index f077dd7..1f164a5 100644 --- a/noncore/settings/networksettings2/opietooth2/Opietooth.h +++ b/noncore/settings/networksettings2/opietooth2/Opietooth.h | |||
@@ -1,34 +1,34 @@ | |||
1 | #ifndef OPIETOOTH_H | 1 | #ifndef OPIETOOTH_H |
2 | #define OPIETOOTH_H | 2 | #define OPIETOOTH_H |
3 | 3 | ||
4 | #include <OTIcons.h> | 4 | #include "OTIcons.h" |
5 | 5 | ||
6 | class MyProcess; | 6 | class MyProcess; |
7 | 7 | ||
8 | namespace Opie { | 8 | namespace Opie { |
9 | 9 | ||
10 | namespace Ui { | 10 | namespace Ui { |
11 | 11 | ||
12 | class OLedBox; | 12 | class OLedBox; |
13 | 13 | ||
14 | } | 14 | } |
15 | 15 | ||
16 | } | 16 | } |
17 | 17 | ||
18 | #include <OTSniffGUI.h> | 18 | #include "OTSniffGUI.h" |
19 | namespace Opietooth2 { | 19 | namespace Opietooth2 { |
20 | 20 | ||
21 | class OTGateway; | 21 | class OTGateway; |
22 | class OTDriver; | 22 | class OTDriver; |
23 | class OTInquiry; | 23 | class OTInquiry; |
24 | class OTPeer; | 24 | class OTPeer; |
25 | class PeerLVI; | 25 | class PeerLVI; |
26 | 26 | ||
27 | class OTSniffing : public OTSniffGUI { | 27 | class OTSniffing : public OTSniffGUI { |
28 | 28 | ||
29 | Q_OBJECT | 29 | Q_OBJECT |
30 | 30 | ||
31 | public : | 31 | public : |
32 | 32 | ||
33 | OTSniffing( QWidget * parent ); | 33 | OTSniffing( QWidget * parent ); |
34 | ~OTSniffing(); | 34 | ~OTSniffing(); |
@@ -40,62 +40,62 @@ private slots : | |||
40 | void SLOT_Load( void ); | 40 | void SLOT_Load( void ); |
41 | void SLOT_Save( void ); | 41 | void SLOT_Save( void ); |
42 | void SLOT_ProcessExited( MyProcess * ); | 42 | void SLOT_ProcessExited( MyProcess * ); |
43 | void SLOT_Show( const QString & ); | 43 | void SLOT_Show( const QString & ); |
44 | 44 | ||
45 | signals : | 45 | signals : |
46 | 46 | ||
47 | protected : | 47 | protected : |
48 | 48 | ||
49 | private : | 49 | private : |
50 | 50 | ||
51 | OTGateway * OT; | 51 | OTGateway * OT; |
52 | MyProcess * HciDump; | 52 | MyProcess * HciDump; |
53 | }; | 53 | }; |
54 | } | 54 | } |
55 | 55 | ||
56 | #include <OTPairingGUI.h> | 56 | #include "OTPairingGUI.h" |
57 | 57 | ||
58 | namespace Opietooth2 { | 58 | namespace Opietooth2 { |
59 | class OTPairing : public OTPairingGUI { | 59 | class OTPairing : public OTPairingGUI { |
60 | 60 | ||
61 | Q_OBJECT | 61 | Q_OBJECT |
62 | 62 | ||
63 | public : | 63 | public : |
64 | 64 | ||
65 | OTPairing( QWidget * parent, | 65 | OTPairing( QWidget * parent, |
66 | OTIcons * _Ic = 0 ); | 66 | OTIcons * _Ic = 0 ); |
67 | ~OTPairing(); | 67 | ~OTPairing(); |
68 | 68 | ||
69 | private slots : | 69 | private slots : |
70 | 70 | ||
71 | void SLOT_Unpair( void ); | 71 | void SLOT_Unpair( void ); |
72 | 72 | ||
73 | signals : | 73 | signals : |
74 | 74 | ||
75 | protected : | 75 | protected : |
76 | 76 | ||
77 | private : | 77 | private : |
78 | 78 | ||
79 | bool MyIcons; | 79 | bool MyIcons; |
80 | OTIcons * Icons; | 80 | OTIcons * Icons; |
81 | OTGateway * OT; | 81 | OTGateway * OT; |
82 | }; | 82 | }; |
83 | } | 83 | } |
84 | 84 | ||
85 | #include <OTScanGUI.h> | 85 | #include "OTScanGUI.h" |
86 | 86 | ||
87 | namespace Opietooth2 { | 87 | namespace Opietooth2 { |
88 | 88 | ||
89 | class OTGateway; | 89 | class OTGateway; |
90 | class OTDriver; | 90 | class OTDriver; |
91 | class OTInquiry; | 91 | class OTInquiry; |
92 | class OTPeer; | 92 | class OTPeer; |
93 | 93 | ||
94 | class OTScan : public OTScanGUI { | 94 | class OTScan : public OTScanGUI { |
95 | 95 | ||
96 | Q_OBJECT | 96 | Q_OBJECT |
97 | 97 | ||
98 | public : | 98 | public : |
99 | 99 | ||
100 | OTScan( QWidget * parent, | 100 | OTScan( QWidget * parent, |
101 | OTIcons * _Ic = 0 ); | 101 | OTIcons * _Ic = 0 ); |
@@ -147,33 +147,33 @@ private : | |||
147 | 147 | ||
148 | bool MyIcons; | 148 | bool MyIcons; |
149 | OTIcons * Icons; | 149 | OTIcons * Icons; |
150 | OTGateway * OT; | 150 | OTGateway * OT; |
151 | OTInquiry * Scanning; | 151 | OTInquiry * Scanning; |
152 | UUIDVector Filter; | 152 | UUIDVector Filter; |
153 | 153 | ||
154 | Opie::Ui::OLedBox * Paired_Led; | 154 | Opie::Ui::OLedBox * Paired_Led; |
155 | QTimer * StrengthTimer; | 155 | QTimer * StrengthTimer; |
156 | PeerLVI * Current; | 156 | PeerLVI * Current; |
157 | 157 | ||
158 | OTPeer * SelectedPeer; | 158 | OTPeer * SelectedPeer; |
159 | int SelectedChannel; | 159 | int SelectedChannel; |
160 | }; | 160 | }; |
161 | } | 161 | } |
162 | 162 | ||
163 | #include <OTManageGUI.h> | 163 | #include "OTManageGUI.h" |
164 | namespace Opietooth2 { | 164 | namespace Opietooth2 { |
165 | 165 | ||
166 | class OTManage : public OTManageGUI { | 166 | class OTManage : public OTManageGUI { |
167 | 167 | ||
168 | Q_OBJECT | 168 | Q_OBJECT |
169 | 169 | ||
170 | public : | 170 | public : |
171 | 171 | ||
172 | OTManage( QWidget * parent, | 172 | OTManage( QWidget * parent, |
173 | OTIcons * _IC = 0 ); | 173 | OTIcons * _IC = 0 ); |
174 | ~OTManage(); | 174 | ~OTManage(); |
175 | 175 | ||
176 | public slots : | 176 | public slots : |
177 | 177 | ||
178 | private slots : | 178 | private slots : |
179 | 179 | ||
@@ -185,33 +185,33 @@ private slots : | |||
185 | 185 | ||
186 | signals : | 186 | signals : |
187 | 187 | ||
188 | protected : | 188 | protected : |
189 | 189 | ||
190 | private : | 190 | private : |
191 | 191 | ||
192 | // load scanned devices | 192 | // load scanned devices |
193 | 193 | ||
194 | bool MyIcons; | 194 | bool MyIcons; |
195 | OTIcons * Icons; | 195 | OTIcons * Icons; |
196 | OTGateway * OT; | 196 | OTGateway * OT; |
197 | OTInquiry * Scanning; | 197 | OTInquiry * Scanning; |
198 | }; | 198 | }; |
199 | } | 199 | } |
200 | 200 | ||
201 | #include <OTMainGUI.h> | 201 | #include "OTMainGUI.h" |
202 | 202 | ||
203 | namespace Opietooth2 { | 203 | namespace Opietooth2 { |
204 | class OTMain : public OTMainGUI { | 204 | class OTMain : public OTMainGUI { |
205 | 205 | ||
206 | Q_OBJECT | 206 | Q_OBJECT |
207 | 207 | ||
208 | public : | 208 | public : |
209 | 209 | ||
210 | OTMain( QWidget * parent ); | 210 | OTMain( QWidget * parent ); |
211 | ~OTMain(); | 211 | ~OTMain(); |
212 | 212 | ||
213 | public slots : | 213 | public slots : |
214 | 214 | ||
215 | private slots : | 215 | private slots : |
216 | 216 | ||
217 | void SLOT_Pairing( void ); | 217 | void SLOT_Pairing( void ); |