summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaszlo Papp <lpapp@kde.org>2013-07-07 21:46:28 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-07-08 15:45:08 +0200
commit5d2f051855fab4499532c9abcc0babf065cdc5d6 (patch)
treea43a0541fa80197545a9c5def9171a1dab0f88be
parent7f09576dcb7fd3f6c4ca8c5fb78767df370f4aaf (diff)
downloadqtserialport-5d2f051855fab4499532c9abcc0babf065cdc5d6.tar.gz
Add more "See also" references for the serial port info documentation
Change-Id: I90fbcd6ce4f88869528ea8757aa7dd428c3adaa3 Reviewed-by: Sergey Belyashov <Sergey.Belyashov@gmail.com> Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
-rw-r--r--src/serialport/qserialportinfo.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/serialport/qserialportinfo.cpp b/src/serialport/qserialportinfo.cpp
index 241d344..78ef694 100644
--- a/src/serialport/qserialportinfo.cpp
+++ b/src/serialport/qserialportinfo.cpp
@@ -146,6 +146,8 @@ QSerialPortInfo& QSerialPortInfo::operator=(const QSerialPortInfo &other)
/*!
Returns the name of the serial port.
+
+ \sa systemLocation()
*/
QString QSerialPortInfo::portName() const
{
@@ -155,6 +157,8 @@ QString QSerialPortInfo::portName() const
/*!
Returns the system location of the serial port.
+
+ \sa portName()
*/
QString QSerialPortInfo::systemLocation() const
{
@@ -165,6 +169,8 @@ QString QSerialPortInfo::systemLocation() const
/*!
Returns the description string of the serial port,
if available; otherwise returns an empty string.
+
+ \sa manufacturer()
*/
QString QSerialPortInfo::description() const
{
@@ -175,6 +181,8 @@ QString QSerialPortInfo::description() const
/*!
Returns the manufacturer string of the serial port,
if available; otherwise returns an empty string.
+
+ \sa description()
*/
QString QSerialPortInfo::manufacturer() const
{
@@ -185,6 +193,8 @@ QString QSerialPortInfo::manufacturer() const
/*!
Returns the 16-bit vendor number for the serial port, if available;
otherwise returns zero.
+
+ \sa hasVendorIdentifier(), productIdentifier(), hasProductIdentifier()
*/
quint16 QSerialPortInfo::vendorIdentifier() const
{
@@ -195,6 +205,8 @@ quint16 QSerialPortInfo::vendorIdentifier() const
/*!
Returns the 16-bit product number for the serial port, if available;
otherwise returns zero.
+
+ \sa hasProductIdentifier(), vendorIdentifier(), hasVendorIdentifier()
*/
quint16 QSerialPortInfo::productIdentifier() const
{
@@ -205,6 +217,8 @@ quint16 QSerialPortInfo::productIdentifier() const
/*!
Returns true if there is a valid 16-bit vendor number present; otherwise
returns false.
+
+ \sa vendorIdentifier(), productIdentifier(), hasProductIdentifier()
*/
bool QSerialPortInfo::hasVendorIdentifier() const
{
@@ -215,6 +229,8 @@ bool QSerialPortInfo::hasVendorIdentifier() const
/*!
Returns true if there is a valid 16-bit product number present; otherwise
returns false.
+
+ \sa productIdentifier(), vendorIdentifier(), hasVendorIdentifier()
*/
bool QSerialPortInfo::hasProductIdentifier() const
{
@@ -227,6 +243,8 @@ bool QSerialPortInfo::hasProductIdentifier() const
Returns whether this QSerialPortInfo object holds a
serial port definition.
+
+ \sa isBusy(), isValid()
*/
/*!
@@ -234,6 +252,8 @@ bool QSerialPortInfo::hasProductIdentifier() const
Returns true if serial port is busy;
otherwise returns false.
+
+ \sa isNull(), isValid()
*/
/*!
@@ -241,6 +261,8 @@ bool QSerialPortInfo::hasProductIdentifier() const
Returns true if serial port is present on system;
otherwise returns false.
+
+ \sa isNull(), isBusy()
*/
/*!