summaryrefslogtreecommitdiff
path: root/noncore/net/opietooth/lib/services.h
authorzecke <zecke>2002-05-30 18:06:48 (UTC)
committer zecke <zecke>2002-05-30 18:06:48 (UTC)
commitf117abbfaf2c17c5af700433d181266b4c8d5a7b (patch) (side-by-side diff)
tree8fb6d6beb166ffb582f3ef6207fdda56a744a7f9 /noncore/net/opietooth/lib/services.h
parent738c08d921cc12c9f6f7846e80889908dce06cc8 (diff)
downloadopie-f117abbfaf2c17c5af700433d181266b4c8d5a7b.zip
opie-f117abbfaf2c17c5af700433d181266b4c8d5a7b.tar.gz
opie-f117abbfaf2c17c5af700433d181266b4c8d5a7b.tar.bz2
Ok here are some bits of a lib and interfaces
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