#ifndef OpieToothRemoteDevice #define OpieToothRemoteDevice #include namespace OpieTooth{ class RemoteDevices { public: typedef QValueList ValueList; RemoteDevices(); RemoteDevices(const RemoteDevices& ); RemoteDevices(const QString &mac, const QString &name ); ~RemoteDevices(); friend bool operator==(const RemoteDevices&, const RemoteDevices&); RemoteDevies &operator=(const RemoteDevices& ); QString mac()const; void setMac(const QString& mac ); QString name()const; void setName( const QString& name ); }; }; #endif