summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/manager/rfcommconfhandler.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/manager/rfcommconfhandler.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/manager/rfcommconfhandler.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/noncore/net/opietooth/manager/rfcommconfhandler.h b/noncore/net/opietooth/manager/rfcommconfhandler.h
index e13c833..46aaa26 100644
--- a/noncore/net/opietooth/manager/rfcommconfhandler.h
+++ b/noncore/net/opietooth/manager/rfcommconfhandler.h
@@ -11,7 +11,8 @@ namespace OpieTooth {
class RfCommConfObject {
public:
- RfCommConfObject( int number, QString mac, int channel, QString comment );
+ RfCommConfObject( int number, QString mac, int channel, QString comment,
+ bool bind);
~RfCommConfObject();
void setNumber( int number );
@@ -22,9 +23,11 @@ namespace OpieTooth {
int channel() { return m_channel; };
void setComment( QString comment );
QString comment() { return m_comment; };
-
+ bool isBind() { return m_doBind; }
+ void doBind(bool arg) { m_doBind = arg; }
private:
+ bool m_doBind;
int m_number;
QString m_mac;
int m_channel;