summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/services.h
Side-by-side diff
Diffstat (limited to 'noncore/net/opietooth/lib/services.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opietooth/lib/services.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/noncore/net/opietooth/lib/services.h b/noncore/net/opietooth/lib/services.h
new file mode 100644
index 0000000..52d4893
--- a/dev/null
+++ b/noncore/net/opietooth/lib/services.h
@@ -0,0 +1,37 @@
+
+#ifndef OpieToothServices_H
+#define OpieToothServices_H
+
+#include <qvaluelist.h>
+
+namespace OpieTooth {
+ class Services {
+ class ProtocolDescriptor {
+ public:
+ typedef QValueList<ProtocolDescriptor> ValueList;
+ ProtocolDescriptor(const QString& );
+
+ };
+ public:
+ typedef QValueList<Services> ValueList;
+ Services();
+ Services(const Services& service );
+ ~Services();
+
+ QString serviceName()const;
+ void setServiceName( const QString& service );
+
+ int recHandle()const;
+ void setRecHandle( int );
+
+ QString classIdList()const;
+ void setClassIdList( const QString& );
+ int classIdListInt()const;
+ void setClassIdList(int );
+
+
+
+
+ };
+};
+#endif