Commit 3d10c27c7674663028941d41af9ab845dbf31d86

  • avatar
  • Martin Smith <msmith @trol…ech.com>
  • Thu Feb 04 13:44:08 CET 2010
doc:	Fixed some qdoc warnings.
  
571571 \value Qt_4_4 Version 10 (Qt 4.4)
572572 \value Qt_4_5 Version 11 (Qt 4.5)
573573 \value Qt_4_6 Version 12 (Qt 4.6)
574 \value Qt_4_7 Same as Qt_4_6.
574575
575576 \sa setVersion(), version()
576577*/
  
10611061 \internal
10621062*/
10631063
1064/*! \fn bool QByteArray::isSharedWith(const QByteArray &other)
1064/*! \fn bool QByteArray::isSharedWith(const QByteArray &other) const
10651065
10661066 \internal
10671067*/
  
4141
4242#include <QtTest/private/qbenchmarkmetric_p.h>
4343
44/*!
45 \enum QTest::QBenchmarkMetric
46 \since 4.7
47
48 This enum lists all the things that can be benchmarked.
49
50 \value FramesPerSecond Frames per second
51 \value BitsPerSecond Bits per second
52 \value BytesPerSecond Bytes per second
53 \value WalltimeMilliseconds Clock time in milliseconds
54 \value CPUTicks CPU time
55 \value InstructionReads Instruction reads
56 \value Events Event count
57
58 \sa QTest::benchmarkMetricName(), QTest::benchmarkMetricUnit()
59
60 */
61
62/*!
63 \relates QTest
64 \since 4.7
65 Returns the enum value \a metric as a character string.
66 */
4467const char * QTest::benchmarkMetricName(QBenchmarkMetric metric)
4568{
4669 switch (metric) {
8686 }
8787};
8888
89/*!
90 \relates QTest
91 \since 4.7
92 Retuns the units of measure for the specified \a metric.
93 */
8994const char * QTest::benchmarkMetricUnit(QBenchmarkMetric metric)
9095{
9196 switch (metric) {