author | zecke <zecke> | 2002-06-19 20:17:39 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-06-19 20:17:39 (UTC) |
commit | 5c56a4cb4bd0aaf3fb2145feb018f8d074a58da2 (patch) (side-by-side diff) | |
tree | 39df033332c4d8f35f8542a731697cf564a04535 | |
parent | 4c943ea6682e53c2039881aab72f6e003b78880d (diff) | |
download | opie-5c56a4cb4bd0aaf3fb2145feb018f8d074a58da2.zip opie-5c56a4cb4bd0aaf3fb2145feb018f8d074a58da2.tar.gz opie-5c56a4cb4bd0aaf3fb2145feb018f8d074a58da2.tar.bz2 |
sdptool parser
-rw-r--r-- | noncore/net/opietooth/lib/lib.pro | 6 | ||||
-rw-r--r-- | noncore/net/opietooth/lib/services.cc | 22 | ||||
-rw-r--r-- | noncore/net/opietooth/lib/services.h | 30 |
3 files changed, 29 insertions, 29 deletions
diff --git a/noncore/net/opietooth/lib/lib.pro b/noncore/net/opietooth/lib/lib.pro index ce36d66..72cb456 100644 --- a/noncore/net/opietooth/lib/lib.pro +++ b/noncore/net/opietooth/lib/lib.pro @@ -1,8 +1,8 @@ TEMPLATE = lib CONFIG += qte warn_on release -HEADERS = device.h manager.h remotedevice.h services.h -SOURCES = device.cc manager.cc remotedevice.cc services.cc +HEADERS = parser.h device.h manager.h remotedevice.h services.h +SOURCES = parser.cc device.cc manager.cc remotedevice.cc services.cc TARGET = opietooth -INCLUDEPATH += $(OPIEDIR)/include +INCLUDEPATH += $(OPIEDIR)/include . DESTDIR = $(QTDIR)/lib$(PROJMAK) LIBS += -lopie diff --git a/noncore/net/opietooth/lib/services.cc b/noncore/net/opietooth/lib/services.cc index 75c1bd6..d91e4a1 100644 --- a/noncore/net/opietooth/lib/services.cc +++ b/noncore/net/opietooth/lib/services.cc @@ -8,5 +8,5 @@ Services::ProfileDescriptor::ProfileDescriptor(){ } -Services::ProfileDescriptor::ProfileDescriptor(const QString &id, uint idInt, uint version ){ +Services::ProfileDescriptor::ProfileDescriptor(const QString &id, int idInt, int version ){ m_id = id; m_idInt = idInt; @@ -22,14 +22,14 @@ void Services::ProfileDescriptor::setId( const QString& id ){ m_id = id; } -void Services::ProfileDescriptor::setId(uint id ){ +void Services::ProfileDescriptor::setId(int id ){ m_idInt = id; } -uint Services::ProfileDescriptor::idInt()const{ +int Services::ProfileDescriptor::idInt()const{ return m_idInt; } -uint Services::ProfileDescriptor::version() const{ +int Services::ProfileDescriptor::version() const{ return m_version; } -void Services::ProfileDescriptor::setVersion(uint version){ +void Services::ProfileDescriptor::setVersion(int version){ m_version = version; } @@ -55,6 +55,6 @@ Services::ProtocolDescriptor::ProtocolDescriptor(){ } Services::ProtocolDescriptor::ProtocolDescriptor(const QString& name, - uint number, - uint channel){ + int number, + int channel){ m_name = name; m_number = number; @@ -73,14 +73,14 @@ void Services::ProtocolDescriptor::setName(const QString& name ){ m_name = name; } -uint Services::ProtocolDescriptor::id()const { +int Services::ProtocolDescriptor::id()const { return m_number; } -void Services::ProtocolDescriptor::setId( uint id ){ +void Services::ProtocolDescriptor::setId( int id ){ m_number = id; } -uint Services::ProtocolDescriptor::port()const { +int Services::ProtocolDescriptor::port()const { return m_channel; } -void Services::ProtocolDescriptor::setPort( uint port ){ +void Services::ProtocolDescriptor::setPort( int port ){ m_channel = port; } diff --git a/noncore/net/opietooth/lib/services.h b/noncore/net/opietooth/lib/services.h index 8e9378a..65de049 100644 --- a/noncore/net/opietooth/lib/services.h +++ b/noncore/net/opietooth/lib/services.h @@ -27,5 +27,5 @@ namespace OpieTooth { * @param version Version of the Profile ( 1 ) */ - ProfileDescriptor(const QString &id, uint idInt, uint version ); + ProfileDescriptor(const QString &id, int idInt, int version ); /** * copy c'tor @@ -42,19 +42,19 @@ namespace OpieTooth { /** - * sets the uint id + * sets the int id */ - void setId(uint ); + void setId(int ); /** * reutns the id as int */ - uint idInt()const; + int idInt()const; /** * returns the version */ - uint version()const; + int version()const; /** * sets the Version */ - void setVersion(uint version ); + void setVersion(int version ); /** * copy operator @@ -67,6 +67,6 @@ namespace OpieTooth { private: QString m_id; - uint m_idInt; - uint m_version; + int m_idInt; + int m_version; }; /** @@ -85,13 +85,13 @@ namespace OpieTooth { * channel/port */ - ProtocolDescriptor(const QString&, uint, uint channel ); // Q_UINT8 ? + ProtocolDescriptor(const QString&, int, int port = -1 ); // Q_UINT8 ? ProtocolDescriptor(const ProtocolDescriptor& ); ~ProtocolDescriptor(); QString name()const; void setName(const QString& ); - uint id()const; - void setId(uint ); - uint port()const; - void setPort(uint ); + int id()const; + void setId(int ); + int port()const; + void setPort(int ); ProtocolDescriptor &operator=( const ProtocolDescriptor& ); friend bool operator==( const ProtocolDescriptor&, @@ -99,6 +99,6 @@ namespace OpieTooth { private: QString m_name; - uint m_number; - uint m_channel; + int m_number; + int m_channel; }; |