summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/remotedevice.h
authorzecke <zecke>2002-06-03 20:14:29 (UTC)
committer zecke <zecke>2002-06-03 20:14:29 (UTC)
commit7080f9f10443d7a8e61d01b5a1c0e9c972f6baca (patch) (unidiff)
tree36f8b2ab579028bba027c0432da2ae41f09b9b4d /noncore/net/opietooth/lib/remotedevice.h
parent8d5f42d770abca69d490774f4b1fc8284e7a86be (diff)
downloadopie-7080f9f10443d7a8e61d01b5a1c0e9c972f6baca.zip
opie-7080f9f10443d7a8e61d01b5a1c0e9c972f6baca.tar.gz
opie-7080f9f10443d7a8e61d01b5a1c0e9c972f6baca.tar.bz2
attaching and detaching is now working
Diffstat (limited to 'noncore/net/opietooth/lib/remotedevice.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/remotedevice.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/noncore/net/opietooth/lib/remotedevice.h b/noncore/net/opietooth/lib/remotedevice.h
index 8e5baa5..96a27de 100644
--- a/noncore/net/opietooth/lib/remotedevice.h
+++ b/noncore/net/opietooth/lib/remotedevice.h
@@ -13,11 +13,15 @@ namespace OpieTooth{
13 RemoteDevices(const QString &mac, const QString &name ); 13 RemoteDevices(const QString &mac, const QString &name );
14 ~RemoteDevices(); 14 ~RemoteDevices();
15 friend bool operator==(const RemoteDevices&, const RemoteDevices&); 15 friend bool operator==(const RemoteDevices&, const RemoteDevices&);
16 RemoteDevies &operator=(const RemoteDevices& ); 16 RemoteDevices &operator=(const RemoteDevices& );
17 bool isEmpty()const;
17 QString mac()const; 18 QString mac()const;
18 void setMac(const QString& mac ); 19 void setMac(const QString& mac );
19 QString name()const; 20 QString name()const;
20 void setName( const QString& name ); 21 void setName( const QString& name );
22 private:
23 QString m_name;
24 QString m_mac;
21 }; 25 };
22}; 26};
23 27