summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/remotedevice.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/lib/remotedevice.h') (more/less context) (show 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{
RemoteDevices(const QString &mac, const QString &name );
~RemoteDevices();
friend bool operator==(const RemoteDevices&, const RemoteDevices&);
- RemoteDevies &operator=(const RemoteDevices& );
+ RemoteDevices &operator=(const RemoteDevices& );
+ bool isEmpty()const;
QString mac()const;
void setMac(const QString& mac );
QString name()const;
void setName( const QString& name );
+ private:
+ QString m_name;
+ QString m_mac;
};
};