summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/manager.h
Unidiff
Diffstat (limited to 'noncore/net/opietooth/lib/manager.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/manager.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/net/opietooth/lib/manager.h b/noncore/net/opietooth/lib/manager.h
index b32327c..0ebe1b3 100644
--- a/noncore/net/opietooth/lib/manager.h
+++ b/noncore/net/opietooth/lib/manager.h
@@ -128,39 +128,39 @@ namespace OpieTooth {
128 /*static*/ QString toDevice( const QString& mac ); 128 /*static*/ QString toDevice( const QString& mac );
129 /*static*/ QString toMac( const QString &device ); 129 /*static*/ QString toMac( const QString &device );
130//// not implemented yet over 130//// not implemented yet over
131 131
132 signals: 132 signals:
133 // device either mac or dev name 133 // device either mac or dev name
134 // the first device is the device which you access 134 // the first device is the device which you access
135 void available( const QString& device, bool connected ); 135 void available( const QString& device, bool connected );
136 void addedService( const QString& service, bool added ); 136 void addedService( const QString& service, bool added );
137 void removedService( const QString& service, bool removed ); 137 void removedService( const QString& service, bool removed );
138 void foundServices( const QString& device, Services::ValueList ); 138 void foundServices( const QString& device, Services::ValueList );
139 void foundDevices( const QString& device, RemoteDevice::ValueList ); 139 void foundDevices( const QString& device, RemoteDevice::ValueList );
140 void connections( Connection::ValueList ); 140 void connections( ConnectionState::ValueList );
141 141
142private slots: 142private slots:
143 void slotProcessExited(OProcess* ); 143 void slotProcessExited(OProcess* );
144 144
145 void slotSDPExited(OProcess*); 145 void slotSDPExited(OProcess*);
146 void slotSDPOut(OProcess*, char*, int); 146 void slotSDPOut(OProcess*, char*, int);
147 147
148 void slotHCIExited(OProcess* ); 148 void slotHCIExited(OProcess* );
149 void slotHCIOut(OProcess*, char*, int ); 149 void slotHCIOut(OProcess*, char*, int );
150 150
151 void slotConnectionExited(OProcess* ); 151 void slotConnectionExited(OProcess* );
152 void slotConnectionOutput(OProcess*, char*, int ); 152 void slotConnectionOutput(OProcess*, char*, int );
153 private: 153 private:
154 Services::ValueList parseSDPOutput( const QString& ); 154 Services::ValueList parseSDPOutput( const QString& );
155 RemoteDevice::ValueList parseHCIOutput( const QString& ); 155 RemoteDevice::ValueList parseHCIOutput( const QString& );
156 Connection::ValueList parseConnections( const QString& ); 156 ConnectionState::ValueList parseConnections( const QString& );
157 OProcess *m_hcitool; 157 OProcess *m_hcitool;
158 OProcess *m_sdp; // not only one 158 OProcess *m_sdp; // not only one
159 QString m_device; 159 QString m_device;
160 QMap<QString, QString> m_out; 160 QMap<QString, QString> m_out;
161 QMap<QString, QString> m_devices; 161 QMap<QString, QString> m_devices;
162 QString m_hcitoolCon; 162 QString m_hcitoolCon;
163 }; 163 };
164}; 164};
165 165
166#endif 166#endif