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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/noncore/net/opietooth/lib/services.h b/noncore/net/opietooth/lib/services.h
index 7cce5e1..02629e6 100644
--- a/noncore/net/opietooth/lib/services.h
+++ b/noncore/net/opietooth/lib/services.h
@@ -1,38 +1,38 @@
#ifndef OpieToothServices_H
#define OpieToothServices_H
#include <qmap.h>
#include <qvaluelist.h>
namespace OpieTooth {
/**
* Services lets shows you all available services
* on a remote device
*/
class Services {
-
+ public:
/** The profile descriptor
*
*/
class ProfileDescriptor{
public:
/** typedef */
typedef QValueList<ProfileDescriptor> ValueList;
/** c'tor for QValueList */
ProfileDescriptor();
/**
* c'tor
* @param id The id or name ("Lan Access Using PPP")
* @param idInt The id as uint ( 0x1102 )
* @param version Version of the Profile ( 1 )
*/
ProfileDescriptor(const QString &id, int idInt, int version );
/**
* copy c'tor
*/
ProfileDescriptor(const ProfileDescriptor& );
/**
* returns the id
*/
QString id()const;
@@ -49,48 +49,49 @@ namespace OpieTooth {
* reutns the id as int
*/
int idInt()const;
/**
* returns the version
*/
int version()const;
/**
* sets the Version
*/
void setVersion(int version );
/**
* copy operator
*/
ProfileDescriptor &operator=( const ProfileDescriptor& );
/**
* operator==
*/
// friend bool operator==(const ProfileDescriptor&, const ProfileDescriptor& );
private:
QString m_id;
int m_idInt;
int m_version;
};
+ public:
/**
* Protocol Descriptor
*/
class ProtocolDescriptor {
public:
typedef QValueList<ProtocolDescriptor> ValueList;
/**
* c'tor
*/
ProtocolDescriptor();
/**
* name
* number
* channel/port
*/
ProtocolDescriptor(const QString&, int, int port = -1 ); // Q_UINT8 ?
ProtocolDescriptor(const ProtocolDescriptor& );
~ProtocolDescriptor();
QString name()const;
void setName(const QString& );
int id()const;
void setId(int );
int port()const;
void setPort(int );