summaryrefslogtreecommitdiffstats
path: root/examples/sensors/sensor_explorer/import/propertyinfo.cpp
diff options
context:
space:
mode:
authorWolfgang Beck <wolfgang.beck@nokia.com>2012-01-13 11:55:13 +1000
committerQt by Nokia <qt-info@nokia.com>2012-01-13 03:23:17 +0100
commita7d8eb61cf25a583c7f3925843d3232ce691db93 (patch)
tree5b8cf26b0523d193811b673b5d48029830a8966d /examples/sensors/sensor_explorer/import/propertyinfo.cpp
parent2949a9c07e9a7b74ac37174379de13db4fe5b50d (diff)
Remove documentation from sensor explorer import files
Change-Id: If8d7229b773fc879b4a8545b34826ff997d39dc7 Sanity-Review: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Lincoln Ramsay <lincoln.ramsay@nokia.com>
Diffstat (limited to 'examples/sensors/sensor_explorer/import/propertyinfo.cpp')
-rw-r--r--examples/sensors/sensor_explorer/import/propertyinfo.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/examples/sensors/sensor_explorer/import/propertyinfo.cpp b/examples/sensors/sensor_explorer/import/propertyinfo.cpp
index 6ddcd3fb..6a8be4cc 100644
--- a/examples/sensors/sensor_explorer/import/propertyinfo.cpp
+++ b/examples/sensors/sensor_explorer/import/propertyinfo.cpp
@@ -45,12 +45,12 @@
QT_BEGIN_NAMESPACE
-/*!
+/*
\class QPropertyInfo
\brief The QPropertyInfo element provides an easy access for reading and writing the property values.
*/
-/*!
+/*
Construct a QPropertyInfo object with parent \a parent
*/
QPropertyInfo::QPropertyInfo(QObject* parent)
@@ -62,7 +62,7 @@ QPropertyInfo::QPropertyInfo(QObject* parent)
, _value("")
{}
-/*!
+/*
Construct a QPropertyInfo object with parent \a parent, property name \a name, property index \a index,
property write access \a writeable, property type \a typeName and property value \a value
*/
@@ -75,7 +75,7 @@ QPropertyInfo::QPropertyInfo(const QString& name, int index, bool writeable, con
, _value(value)
{}
-/*!
+/*
\property QPropertyInfo::name
Returns the name of the property
*/
@@ -84,7 +84,7 @@ QString QPropertyInfo::name()
return _name;
}
-/*!
+/*
\property QPropertyInfo::typeName
Returns the type of the property
*/
@@ -93,7 +93,7 @@ QString QPropertyInfo::typeName()
return _typeName;
}
-/*!
+/*
\property QPropertyInfo::value
Returns the current value of the property
*/
@@ -102,12 +102,12 @@ QString QPropertyInfo::value()
return _value;
}
-/*!
+/*
\fn void QPropertyInfo::valueChanged()
Signal that notifies the client if the property value was changed.
*/
-/*!
+/*
\fn QPropertyInfo::setValue(const QString& value)
Sets the value \a value of the property
*/
@@ -119,7 +119,7 @@ void QPropertyInfo::setValue(const QString& value)
}
}
-/*!
+/*
\fn QPropertyInfo::index()
Returns the meta-data index of the property
*/
@@ -128,7 +128,7 @@ int QPropertyInfo::index()
return _index;
}
-/*!
+/*
\property QPropertyInfo::isWriteable
Returns true if the property is writeable false if property is read only
*/