summaryrefslogtreecommitdiffstats
path: root/xlib
diff options
context:
space:
mode:
authorescoffon <escoffon>1998-10-07 20:57:27 (GMT)
committerescoffon <escoffon>1998-10-07 20:57:27 (GMT)
commit733f2ab4691d31c0fdca72da988c5f4878ee5709 (patch)
tree1880d807836ac0b0e2b59ff98c08b49aa22c3191 /xlib
parentf6cc4da350c6d079be66b0a55b914e52ff720e7e (diff)
downloadtk-733f2ab4691d31c0fdca72da988c5f4878ee5709.zip
tk-733f2ab4691d31c0fdca72da988c5f4878ee5709.tar.gz
tk-733f2ab4691d31c0fdca72da988c5f4878ee5709.tar.bz2
Fixed a bug that caused the Tk DLL to be linked against msvcrt.lib for
both debug and nodebug builds.
Diffstat (limited to 'xlib')
0 files changed, 0 insertions, 0 deletions
ecified with a + comma-separated list. + - QDir - * Fix reentrency (listing directories in different threads) + * Fix reentrancy (listing directories in different threads) + +- QFile and QTemporaryFile + * Fixed a leak of file descriptors in QTemporaryFile::rename, + introduced in 4.5.1 + * [165920] QFile::copy leaves the source file open after the file has + been copied. + * [191467] & [252293] QFile::copy of resource files to the file system + fails on Windows. + * [197857] QFile::copy of resource files leaves temporary files on + file system. + * [248223] QTemporaryFile: Access denied error when (re-)opening through + QFile interface. + * [252659] QTemporaryFile::rename may leave source file behind. - QFileSystemModel * [254701] QFileSystemModel doesn't sort subfolders when being used in a @@ -80,31 +112,17 @@ General Improvements * [251341] It is not possible to remove a directory in the sidebar if the directory does not exist. * [251321] Hidden path in QFileDialog's sidebar cannot be opened. - * [226483] setSidebarUrls() handles the urls case sensitive so that + * [226483] setSidebarUrls() handles the URLs case sensitively so that adding the same directory twice is possible - Windows. * [252068] QFileDialog with QSortFilterProxyModel crashes. * [254490] QFileDialog selectFile() doesn't clear the selection if we call it several times. -- QGtkStyle - * [250731] Fixed a build issue with glib version lower than 2.3.2 - * [254342] Fixed a potential crash when system theme changes occur. - * [254614] Fixed an assert or warning related to GtkEntry focus handling - reported with certain versions of Gtk+. - -- QMacStyle - * [253339] Don't draw arrows on toolbuttons that have a menu and text - only. - * [252301] Ensure that small and mini spin boxes are drawn correctly. - -- QMotifStyle - * Fix crash when changing style and destroying progressbar. - - QFontDialog * [252000] Ensure that QFontDialog::getFont() works on Mac OS X. - QGraphicsItem - * [197802] Dont show children when parent is not visible + * [197802] Don't show children when parent is not visible * [252913] QGraphicsItem::setOpacity(0.0) does not trigger an update - QGraphicsView @@ -113,30 +131,34 @@ General Improvements - QGraphicsWidget * Fixed a bug with Qt::WidgetWithChildren shortcut context. +- QGtkStyle + * [250731] Fixed a build issue with glib version lower than 2.3.2 + * [254342] Fixed a potential crash when system theme changes occur. + * [254614] Fixed an assert or warning related to GtkEntry focus handling + reported with certain versions of GTK+. + - QLocalSocket - * [247144] correctly handle remote disconnects. + * [247144] Correctly handle remote disconnects. -- QNetworkCookie - * [251959] fix parsing of multiple cookies separated by a newline. +- QMacStyle + * [253339] Don't draw arrows on tool buttons that have a menu and text + only. + * [252301] Ensure that small and mini spin boxes are drawn correctly. -- QNetworkCookieJar - * [251467] do not allow cookies for domains like ".com". - * [228974] allow cookies whose domain attribute is missing a leading - dot. +- QMotifStyle + * Fix crash when changing style and destroying progress bar. - QNetworkAccessManager * [248838] Make QNetworkAccessManager reject invalid HTTP input earlier. -- QWidget - * [250668] Don't send extra wheel events when using the scroll wheel in - Cocoa. - * [253448] Prevent a crash when using the Qt::WA_MacBrushedMetal - attribute in conjunction with style sheets. +- QNetworkCookie + * [251959] Fixed parsing of multiple cookies separated by a newline. -- QWizard - * [252662] Fixed crash that could happen when compiling on Windows XP - and running on older Windows versions like 98 and 2000. +- QNetworkCookieJar + * [251467] Do not allow cookies for domains like ".com". + * [228974] Allow cookies whose domain attribute is missing a leading + dot. - QObject * Fixed possible race condition if two QObject connected together with @@ -154,6 +176,22 @@ General Improvements * [253663] Fixed an issue with implicitly closed poly lines when using perspective transforms. +- QPrintDialog + * [253135] Crash in QPrintDialog when editing output filename. + * [252873] Fixed an issue that could cause QPrintDialog to invalidate + a valid QPrinter object. + * [224728] Fixed an issue under X11 where QPrintDialog didn't update + the print-to-file state if it was passed a QPrinter set up to + print PDF or PostScript. + +- QPrinter + * [252873] Fixed an issue with QPrinter::NativeFormat printers not + being valid. + * [248881] Fixed an issue under Windows where QPrinter::pageRect() + returned the wrong rect when QPrinter::fullPage() was set. + * [199271] Fixed an issue with QPrinter::setPrinterName()/printerName() + on Mac. + - QProgressBar * [252283] Fixed busy indicator for a QProgressBar with a style sheet applied to it. @@ -166,74 +204,15 @@ General Improvements - QSortFilterProxyModel * [250023] Fixes QSortFilterProxyModel not reporting child if the model needs to fetchMore(). - * [251296] In dynamic filter model, childs of temporarly filtered items - were not correctly updated. + * [251296] In dynamic filter model, children of temporarily filtered + items were not correctly updated. * [252507] Show a warning instead of crashing if invalid indexes are passed. * [254234] Fixed setDynamicSortFilter not working when setting the model initially. - QString - * Fixed reentrency of QString::squeeze(). - -- QTabBar - * [252472] Fixed problem with the current tab not being visible after - calling setTabButton() on a scrolled tab bar. - -- QTransform - * Fixed issue in QTransform::type() causing a projective transform to be - treated as a scaling transform. - -- QVector - * Fixed reentrency of QVector::reserve(). - -- QtOpenGL - * [247083] Re-enabled antialiasing for large font sizes in OpenGL paint - engine. - * [251485] Fixed crash that could occur with projective transforms and - high quality antialiasing. - * [253468] Fixed a crash in the GL 2 paint engine that could occur - when drawing text. - -- QCssParser - * [252311] "font-family:" now handle fallback font specified with a - comma separated list. - -- QFile and QTemporaryFile - * Fixed a leak of file descriptors in QTemporaryFile::rename, - introduced in 4.5.1 - * [165920] QFile::copy leaves the source file open after the file has - been copied. - * [191467] & [252293] QFile::copy of resource files to the filesystem - fails on Windows. - * [197857] QFile::copy of resource files leaves temporary files on - filesystem. - * [248223] QTemporaryFile: Access denied error when (re-)opening through - QFile interface. - * [252659] QTemporaryFile::rename may leave source file behind. - -- QByteArrayMatcher - * [251958] Assignment operator and copy constructor miss data. - -- QCompleter - * [253125] QCompleter doesn't expand entries with - UnfilteredPopupCompletion. - -- QPrintDialog - * [253135] Crash in QPrintDialog when editing output filename. - * [252873] Fixed an issue that could cause QPrintDialog to invalidate - a valid QPrinter object. - * [224728] Fixed an issue under X11 where QPrintDialog didn't update - the print-to-file state if it was passed a QPrinter set up to - print PDF or PostScript. - -- QPrinter - * [252873] Fixed an issue with QPrinter::NativeFormat printers not - being valid. - * [248881] Fixed an issue under Windows where QPrinter::pageRect() - returned the wrong rect when QPrinter::fullPage() was set. - * [199271] Fixed an issue with QPrinter::setPrinterName()/printerName() - on Mac. + * Fixed reentrancy of QString::squeeze(). - QSvg * [253614] Fixed an issue with parsing the 'stroke-dasharray' SVG @@ -247,10 +226,31 @@ General Improvements the SVG file, even though there was a cached pixmap for that size available. +- QTabBar + * [252472] Fixed problem with the current tab not being visible after + calling setTabButton() on a scrolled tab bar. + - QToolButton * [252554] Fixed a problem where text labels would be partially clipped when using Qt::ToolButtonTextUnderIcon. +- QTransform + * Fixed issue in QTransform::type() causing a projective transform to be + treated as a scaling transform. + +- QVector + * Fixed reentrancy of QVector::reserve(). + +- QWidget + * [250668] Don't send extra wheel events when using the scroll wheel in + Cocoa. + * [253448] Prevent a crash when using the Qt::WA_MacBrushedMetal + attribute in conjunction with style sheets. + +- QWizard + * [252662] Fixed crash that could happen when compiling on Windows XP + and running on older Windows versions like 98 and 2000. + **************************************************************************** * Platform Specific Changes * **************************************************************************** @@ -258,18 +258,18 @@ General Improvements Qt for Linux/X11 ---------------- [253186] Fixed compile error in qfontengine_ft.cpp on 64-bit platforms with - legacy freetype headers. + legacy FreeType headers. [241361] Prevented asynchronous access to non-thread safe libfontconfig API. [244362] Worked around X server crash when calling XFillPolygon with more than 200000 points by falling back to raster paint engine. -[250326] Titlebar wasn't shown on X11 with Qt::CustomizeWindowHint for +[250326] Title bar wasn't shown on X11 with Qt::CustomizeWindowHint for fixed-size windows. [251925] Improved showing QMessageBox on small screens. [252042] Fixed the loading of the OpenSSL libraries on OpenBSD. [255311] Fixed an issue with '-graphicssystem raster' on 8 and 16 bit X servers. [252328] Fixed an issue when rendering old XLFD fonts on X11 with Xrender - and fontconfig enabled. + and Fontconfig enabled. [248720] Fixed an issue with using '-graphicssystem raster' on X servers with BGR color layout. [196152] Fixed a problem with QPixmap::toImage() on big endian systems that @@ -284,8 +284,8 @@ Fixed an issue with text rendering in 16 bit mode. [246196] Fixed an issue with clipped glyphs when rendering text with certain fonts. -[251259] Switching to another app left text cursor in line edits with - QtMfc framework. +[251259] Switching to another application left text cursor in line edits + with QtMfc framework. [253367] Fixed a memory leak when loading system icons on Windows. @@ -341,20 +341,20 @@ Qt for Windows CE * Plugins * **************************************************************************** -- directfb - * Make sure we pick an approriate format for pixmaps. E.g. use the same as +- DirectFB + * Make sure we pick an appropriate format for pixmaps. E.g. use the same as the primary surface for opaque pixmaps and pick an appropriate one for transparent pixmaps if the primary surface format is not transparent. - * Properly fall back to the raster engine for pens that aren't solidcolor. + * Properly fall back to the raster engine for pens that aren't solid color. * Properly fall back to raster engine with "mirrored" scales. - * Make sure window surfaces are in the approriate pixel format and created + * Make sure window surfaces are in the appropriate pixel format and created in video memory if supported. * Fix clipping bug that would cause painting errors. * Fix various crash bugs. * Fix bugs when transforming/copying pixmaps with alpha channel. * Fix various bugs with regards to painting with alpha channel/porter duff. - * Optimize a coupld of internal functions to slightly speed up drawing. + * Optimize a couple of internal functions to slightly speed up drawing. * Optimize raster fall backs. * Allow more customization for Flipping options. * Fix drawing with opacity != 1.0. -- cgit v0.12 From 7bf4512659113f8cc78e72f1c84158ce4f70a526 Mon Sep 17 00:00:00 2001 From: jasplin Date: Fri, 12 Jun 2009 14:56:04 +0200 Subject: Fixed problems with the event handling in QCompleter on Mac. On Mac, a new completer popup must initially have its show() method called rather than its hide() method. Otherwise the event handling done by the completer results in a bad state. On other platforms it doesn't matter. Reviewed-by: Richard Moe Gustavsen Task-number: 255374 --- src/gui/util/qcompleter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/util/qcompleter.cpp b/src/gui/util/qcompleter.cpp index faa4e7b..da3edb0 100644 --- a/src/gui/util/qcompleter.cpp +++ b/src/gui/util/qcompleter.cpp @@ -1077,7 +1077,7 @@ void QCompleter::setPopup(QAbstractItemView *popup) delete d->popup; if (popup->model() != d->proxy) popup->setModel(d->proxy); - popup->hide(); + popup->show(); popup->setParent(0, Qt::Popup); Qt::FocusPolicy origPolicy = Qt::NoFocus; -- cgit v0.12 From 335780b2c0cba64d75812d7e2e98f44e072d171d Mon Sep 17 00:00:00 2001 From: Anders Bakken Date: Sun, 14 Jun 2009 12:11:30 -0700 Subject: Get rid of warnings Reviewed-by: TrustMe --- src/plugins/gfxdrivers/directfb/qdirectfbpaintengine.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/gfxdrivers/directfb/qdirectfbpaintengine.cpp b/src/plugins/gfxdrivers/directfb/qdirectfbpaintengine.cpp index 5be4d47..f8d05c7 100644 --- a/src/plugins/gfxdrivers/directfb/qdirectfbpaintengine.cpp +++ b/src/plugins/gfxdrivers/directfb/qdirectfbpaintengine.cpp @@ -806,13 +806,13 @@ QDirectFBPaintEnginePrivate::~QDirectFBPaintEnginePrivate() delete surfaceCache; } -bool QDirectFBPaintEnginePrivate::dfbCanHandleClip(const QRect &rect) const +bool QDirectFBPaintEnginePrivate::dfbCanHandleClip(const QRect &) const { // TODO: Check to see if DirectFB can handle the clip for the given rect return dfbHandledClip; } -bool QDirectFBPaintEnginePrivate::dfbCanHandleClip(const QRectF &rect) const +bool QDirectFBPaintEnginePrivate::dfbCanHandleClip(const QRectF &) const { // TODO: Check to see if DirectFB can handle the clip for the given rect return dfbHandledClip; -- cgit v0.12 From 16fe846058aa0a89577660d18bdc0aceda7fecfd Mon Sep 17 00:00:00 2001 From: Derick Hawcroft Date: Mon, 15 Jun 2009 11:16:59 +1000 Subject: Adds unit test for task: 180617 Tests to see if QSqlQueryModel inserts extra empty gridlines into a view for a specific SQL query statement that should return no data. --- tests/auto/qsqlquerymodel/tst_qsqlquerymodel.cpp | 45 +++++++++++++++++++++--- 1 file changed, 41 insertions(+), 4 deletions(-) diff --git a/tests/auto/qsqlquerymodel/tst_qsqlquerymodel.cpp b/tests/auto/qsqlquerymodel/tst_qsqlquerymodel.cpp index 88b5770..051764e 100644 --- a/tests/auto/qsqlquerymodel/tst_qsqlquerymodel.cpp +++ b/tests/auto/qsqlquerymodel/tst_qsqlquerymodel.cpp @@ -94,6 +94,9 @@ private slots: void setQueryWithNoRowsInResultSet_data() { generic_data(); } void setQueryWithNoRowsInResultSet(); + void task_180617(); + void task_180617_data() { generic_data(); } + private: void generic_data(const QString &engine=QString()); void dropTestTables(QSqlDatabase db); @@ -496,7 +499,7 @@ void tst_QSqlQueryModel::withSortFilterProxyModel() QSignalSpy modelRowsInsertedSpy(&model, SIGNAL(rowsInserted(const QModelIndex &, int, int))); model.setQuery(QSqlQuery("SELECT * FROM " + qTableName("test3"), db)); view.scrollToBottom(); - + QTestEventLoop::instance().enterLoop(1); QCOMPARE(proxy.rowCount(), 511); @@ -530,12 +533,12 @@ void tst_QSqlQueryModel::setQuerySignalEmission() QSignalSpy modelRowsRemovedSpy(&model, SIGNAL(rowsRemoved(const QModelIndex &, int, int))); // First select, the model was empty and no rows had to be removed! - model.setQuery(QSqlQuery("SELECT * FROM " + qTableName("test"), db)); + model.setQuery(QSqlQuery("SELECT * FROM " + qTableName("test"), db)); QCOMPARE(modelRowsAboutToBeRemovedSpy.count(), 0); QCOMPARE(modelRowsRemovedSpy.count(), 0); // Second select, the model wasn't empty and two rows had to be removed! - model.setQuery(QSqlQuery("SELECT * FROM " + qTableName("test"), db)); + model.setQuery(QSqlQuery("SELECT * FROM " + qTableName("test"), db)); QCOMPARE(modelRowsAboutToBeRemovedSpy.count(), 1); QCOMPARE(modelRowsAboutToBeRemovedSpy.value(0).value(1).toInt(), 0); QCOMPARE(modelRowsAboutToBeRemovedSpy.value(0).value(2).toInt(), 1); @@ -559,10 +562,44 @@ void tst_QSqlQueryModel::setQueryWithNoRowsInResultSet() // The query's result set will be empty so no signals should be emitted! QSqlQuery query(db); QVERIFY_SQL(query, exec("SELECT * FROM " + qTableName("test") + " where 0 = 1")); - model.setQuery(query); + model.setQuery(query); QCOMPARE(modelRowsAboutToBeInsertedSpy.count(), 0); QCOMPARE(modelRowsInsertedSpy.count(), 0); } +// For task 180617 +// According to the task, several specific duplicate SQL queries would cause +// multiple empty grid lines to be visible in the view +void tst_QSqlQueryModel::task_180617() +{ + QFETCH(QString, dbName); + QSqlDatabase db = QSqlDatabase::database(dbName); + CHECK_DATABASE(db); + + QTableView view; + QCOMPARE(view.columnAt(0), -1); + QCOMPARE(view.rowAt(0), -1); + + QSqlQueryModel model; + model.setQuery( "SELECT TOP 0 * FROM " + qTableName("test3"), db ); + view.setModel(&model); + + bool error = false; + // Usually a syntax error + if (model.lastError().isValid()) // usually a syntax error + error = true; + + QCOMPARE(view.columnAt(0), (error)?-1:0 ); + QCOMPARE(view.rowAt(0), -1); + + model.setQuery( "SELECT TOP 0 * FROM " + qTableName("test3"), db ); + model.setQuery( "SELECT TOP 0 * FROM " + qTableName("test3"), db ); + model.setQuery( "SELECT TOP 0 * FROM " + qTableName("test3"), db ); + model.setQuery( "SELECT TOP 0 * FROM " + qTableName("test3"), db ); + + QCOMPARE(view.columnAt(0), (error)?-1:0 ); + QCOMPARE(view.rowAt(0), -1); +} + QTEST_MAIN(tst_QSqlQueryModel) #include "tst_qsqlquerymodel.moc" -- cgit v0.12 From b8430baeadd62b643ff07a2588c62141146c08fd Mon Sep 17 00:00:00 2001 From: Bill King Date: Mon, 15 Jun 2009 10:28:47 +1000 Subject: BT Revert "Fix the behaviour of sql classes regarding quoted identifiers" This reverts commit bb7bddc47dd0748b45d22180d9e3c8e5209010b3 due to forward binary compatibility issues in a point release. --- src/sql/drivers/db2/qsql_db2.cpp | 70 +--- src/sql/drivers/ibase/qsql_ibase.cpp | 16 +- src/sql/drivers/mysql/qsql_mysql.cpp | 19 +- src/sql/drivers/mysql/qsql_mysql.h | 3 - src/sql/drivers/oci/qsql_oci.cpp | 58 +-- src/sql/drivers/odbc/qsql_odbc.cpp | 128 ------ src/sql/drivers/odbc/qsql_odbc.h | 4 - src/sql/drivers/psql/qsql_psql.cpp | 32 +- src/sql/drivers/sqlite/qsql_sqlite.cpp | 16 +- src/sql/drivers/sqlite2/qsql_sqlite2.cpp | 20 +- src/sql/drivers/tds/qsql_tds.cpp | 21 +- src/sql/kernel/qsqldriver.cpp | 131 +----- src/sql/kernel/qsqldriver.h | 6 - src/sql/models/qsqlrelationaltablemodel.cpp | 73 +--- src/sql/models/qsqltablemodel.cpp | 20 +- tests/auto/qsqldatabase/tst_databases.h | 19 +- tests/auto/qsqldriver/qsqldriver.pro | 16 - tests/auto/qsqldriver/tst_qsqldriver.cpp | 218 ---------- .../tst_qsqlrelationaltablemodel.cpp | 455 ++------------------- tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp | 15 +- 20 files changed, 131 insertions(+), 1209 deletions(-) delete mode 100644 tests/auto/qsqldriver/qsqldriver.pro delete mode 100644 tests/auto/qsqldriver/tst_qsqldriver.cpp diff --git a/src/sql/drivers/db2/qsql_db2.cpp b/src/sql/drivers/db2/qsql_db2.cpp index 11d0041..2786dbb 100644 --- a/src/sql/drivers/db2/qsql_db2.cpp +++ b/src/sql/drivers/db2/qsql_db2.cpp @@ -1182,7 +1182,7 @@ QDB2Driver::~QDB2Driver() delete d; } -bool QDB2Driver::open(const QString& db, const QString& user, const QString& password, const QString& host, int port, +bool QDB2Driver::open(const QString& db, const QString& user, const QString& password, const QString&, int, const QString& connOpts) { if (isOpen()) @@ -1205,8 +1205,6 @@ bool QDB2Driver::open(const QString& db, const QString& user, const QString& pas setOpenError(true); return false; } - - QString protocol; // Set connection attributes const QStringList opts(connOpts.split(QLatin1Char(';'), QString::SkipEmptyParts)); for (int i = 0; i < opts.count(); ++i) { @@ -1237,10 +1235,7 @@ bool QDB2Driver::open(const QString& db, const QString& user, const QString& pas } else if (opt == QLatin1String("SQL_ATTR_LOGIN_TIMEOUT")) { v = val.toUInt(); r = SQLSetConnectAttr(d->hDbc, SQL_ATTR_LOGIN_TIMEOUT, (SQLPOINTER) v, 0); - } else if (opt.compare(QLatin1String("PROTOCOL"), Qt::CaseInsensitive) == 0) { - protocol = tmp; - } - else { + } else { qWarning("QDB2Driver::open: Unknown connection attribute '%s'", tmp.toLocal8Bit().constData()); } @@ -1249,18 +1244,9 @@ bool QDB2Driver::open(const QString& db, const QString& user, const QString& pas "Unable to set connection attribute '%1'").arg(opt), d); } - if (protocol.isEmpty()) - protocol = QLatin1String("PROTOCOL=TCPIP"); - - if (port < 0 ) - port = 50000; - QString connQStr; - connQStr = protocol + QLatin1String(";DATABASE=") + db + QLatin1String(";HOSTNAME=") + host - + QLatin1String(";PORT=") + QString::number(port) + QLatin1String(";UID=") + user - + QLatin1String(";PWD=") + password; - - + connQStr = QLatin1String("DSN=") + db + QLatin1String(";UID=") + user + QLatin1String(";PWD=") + + password; SQLTCHAR connOut[SQL_MAX_OPTION_STRING_LENGTH]; SQLSMALLINT cb; @@ -1279,7 +1265,7 @@ bool QDB2Driver::open(const QString& db, const QString& user, const QString& pas return false; } - d->user = user; + d->user = user.toUpper(); setOpen(true); setOpenError(false); return true; @@ -1324,25 +1310,10 @@ QSqlRecord QDB2Driver::record(const QString& tableName) const SQLHANDLE hStmt; QString catalog, schema, table; - qSplitTableQualifier(tableName, &catalog, &schema, &table); + qSplitTableQualifier(tableName.toUpper(), &catalog, &schema, &table); if (schema.isEmpty()) schema = d->user; - if (isIdentifierEscaped(catalog, QSqlDriver::TableName)) - catalog = stripDelimiters(catalog, QSqlDriver::TableName); - else - catalog = catalog.toUpper(); - - if (isIdentifierEscaped(schema, QSqlDriver::TableName)) - schema = stripDelimiters(schema, QSqlDriver::TableName); - else - schema = schema.toUpper(); - - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - else - table = table.toUpper(); - SQLRETURN r = SQLAllocHandle(SQL_HANDLE_STMT, d->hDbc, &hStmt); @@ -1356,9 +1327,6 @@ QSqlRecord QDB2Driver::record(const QString& tableName) const (SQLPOINTER) SQL_CURSOR_FORWARD_ONLY, SQL_IS_UINTEGER); - - //Aside: szSchemaName and szTableName parameters of SQLColumns - //are case sensitive search patterns, so no escaping is used. r = SQLColumns(hStmt, NULL, 0, @@ -1439,13 +1407,7 @@ QStringList QDB2Driver::tables(QSql::TableType type) const bool isNull; QString fieldVal = qGetStringData(hStmt, 2, -1, isNull); QString userVal = qGetStringData(hStmt, 1, -1, isNull); - QString user = d->user; - if ( isIdentifierEscaped(user, QSqlDriver::TableName)) - user = stripDelimiters(user, QSqlDriver::TableName); - else - user = user.toUpper(); - - if (userVal != user) + if (userVal != d->user) fieldVal = userVal + QLatin1Char('.') + fieldVal; tl.append(fieldVal); r = SQLFetchScroll(hStmt, @@ -1476,23 +1438,7 @@ QSqlIndex QDB2Driver::primaryIndex(const QString& tablename) const return index; } QString catalog, schema, table; - qSplitTableQualifier(tablename, &catalog, &schema, &table); - - if (isIdentifierEscaped(catalog, QSqlDriver::TableName)) - catalog = stripDelimiters(catalog, QSqlDriver::TableName); - else - catalog = catalog.toUpper(); - - if (isIdentifierEscaped(schema, QSqlDriver::TableName)) - schema = stripDelimiters(schema, QSqlDriver::TableName); - else - schema = schema.toUpper(); - - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - else - table = table.toUpper(); - + qSplitTableQualifier(tablename.toUpper(), &catalog, &schema, &table); r = SQLSetStmtAttr(hStmt, SQL_ATTR_CURSOR_TYPE, (SQLPOINTER)SQL_CURSOR_FORWARD_ONLY, diff --git a/src/sql/drivers/ibase/qsql_ibase.cpp b/src/sql/drivers/ibase/qsql_ibase.cpp index 1645555..523ec4d 100644 --- a/src/sql/drivers/ibase/qsql_ibase.cpp +++ b/src/sql/drivers/ibase/qsql_ibase.cpp @@ -1558,16 +1558,12 @@ QSqlRecord QIBaseDriver::record(const QString& tablename) const QSqlQuery q(createResult()); q.setForwardOnly(true); - QString table = tablename; - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - else - table = table.toUpper(); + q.exec(QLatin1String("SELECT a.RDB$FIELD_NAME, b.RDB$FIELD_TYPE, b.RDB$FIELD_LENGTH, " "b.RDB$FIELD_SCALE, b.RDB$FIELD_PRECISION, a.RDB$NULL_FLAG " "FROM RDB$RELATION_FIELDS a, RDB$FIELDS b " "WHERE b.RDB$FIELD_NAME = a.RDB$FIELD_SOURCE " - "AND a.RDB$RELATION_NAME = '") + table + QLatin1String("' " + "AND a.RDB$RELATION_NAME = '") + tablename.toUpper() + QLatin1String("' " "ORDER BY a.RDB$FIELD_POSITION")); while (q.next()) { @@ -1595,18 +1591,12 @@ QSqlIndex QIBaseDriver::primaryIndex(const QString &table) const if (!isOpen()) return index; - QString tablename = table; - if (isIdentifierEscaped(tablename, QSqlDriver::TableName)) - tablename = stripDelimiters(tablename, QSqlDriver::TableName); - else - tablename = tablename.toUpper(); - QSqlQuery q(createResult()); q.setForwardOnly(true); q.exec(QLatin1String("SELECT a.RDB$INDEX_NAME, b.RDB$FIELD_NAME, d.RDB$FIELD_TYPE, d.RDB$FIELD_SCALE " "FROM RDB$RELATION_CONSTRAINTS a, RDB$INDEX_SEGMENTS b, RDB$RELATION_FIELDS c, RDB$FIELDS d " "WHERE a.RDB$CONSTRAINT_TYPE = 'PRIMARY KEY' " - "AND a.RDB$RELATION_NAME = '") + tablename + + "AND a.RDB$RELATION_NAME = '") + table.toUpper() + QLatin1String(" 'AND a.RDB$INDEX_NAME = b.RDB$INDEX_NAME " "AND c.RDB$RELATION_NAME = a.RDB$RELATION_NAME " "AND c.RDB$FIELD_NAME = b.RDB$FIELD_NAME " diff --git a/src/sql/drivers/mysql/qsql_mysql.cpp b/src/sql/drivers/mysql/qsql_mysql.cpp index 53645c9..4468686 100644 --- a/src/sql/drivers/mysql/qsql_mysql.cpp +++ b/src/sql/drivers/mysql/qsql_mysql.cpp @@ -1342,7 +1342,7 @@ QSqlIndex QMYSQLDriver::primaryIndex(const QString& tablename) const QSqlQuery i(createResult()); QString stmt(QLatin1String("show index from %1;")); QSqlRecord fil = record(tablename); - i.exec(stmt.arg(tablename)); + i.exec(stmt.arg(escapeIdentifier(tablename, QSqlDriver::TableName))); while (i.isActive() && i.next()) { if (i.value(2).toString() == QLatin1String("PRIMARY")) { idx.append(fil.field(i.value(4).toString())); @@ -1357,14 +1357,10 @@ QSqlIndex QMYSQLDriver::primaryIndex(const QString& tablename) const QSqlRecord QMYSQLDriver::record(const QString& tablename) const { - QString table=tablename; - if(isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - QSqlRecord info; if (!isOpen()) return info; - MYSQL_RES* r = mysql_list_fields(d->mysql, table.toLocal8Bit().constData(), 0); + MYSQL_RES* r = mysql_list_fields(d->mysql, tablename.toLocal8Bit().constData(), 0); if (!r) { return info; } @@ -1475,17 +1471,6 @@ QString QMYSQLDriver::escapeIdentifier(const QString &identifier, IdentifierType return res; } -bool QMYSQLDriver::isIdentifierEscapedImplementation(const QString &identifier, IdentifierType type) const -{ - Q_UNUSED(type); - bool isLeftDelimited = (identifier.left(1) == QString(QLatin1Char('`'))); - bool isRightDelimited = (identifier.right(1) == QString(QLatin1Char('`'))); - if( identifier.size() > 2 && isLeftDelimited && isRightDelimited ) - return true; - else - return false; -} - QT_END_NAMESPACE #include "qsql_mysql.moc" \ No newline at end of file diff --git a/src/sql/drivers/mysql/qsql_mysql.h b/src/sql/drivers/mysql/qsql_mysql.h index 31d9dcf..97aa346 100644 --- a/src/sql/drivers/mysql/qsql_mysql.h +++ b/src/sql/drivers/mysql/qsql_mysql.h @@ -123,9 +123,6 @@ public: QVariant handle() const; QString escapeIdentifier(const QString &identifier, IdentifierType type) const; -protected Q_SLOTS: - bool isIdentifierEscapedImplementation(const QString &identifier, IdentifierType type) const; - protected: bool beginTransaction(); bool commitTransaction(); diff --git a/src/sql/drivers/oci/qsql_oci.cpp b/src/sql/drivers/oci/qsql_oci.cpp index a7031b1..f3dabee 100644 --- a/src/sql/drivers/oci/qsql_oci.cpp +++ b/src/sql/drivers/oci/qsql_oci.cpp @@ -2108,7 +2108,7 @@ bool QOCIDriver::open(const QString & db, setOpen(true); setOpenError(false); - d->user = user; + d->user = user.toUpper(); return true; } @@ -2210,15 +2210,8 @@ QStringList QOCIDriver::tables(QSql::TableType type) const "and owner != 'WKSYS'" "and owner != 'CTXSYS'" "and owner != 'WMSYS'")); - - QString user = d->user; - if ( isIdentifierEscaped(user, QSqlDriver::TableName)) - user = stripDelimiters(user, QSqlDriver::TableName); - else - user = user.toUpper(); - while (t.next()) { - if (t.value(0).toString().toUpper() != user.toUpper()) + if (t.value(0).toString().toUpper() != d->user.toUpper()) tl.append(t.value(0).toString() + QLatin1String(".") + t.value(1).toString()); else tl.append(t.value(1).toString()); @@ -2254,10 +2247,10 @@ void qSplitTableAndOwner(const QString & tname, QString * tbl, { int i = tname.indexOf(QLatin1Char('.')); // prefixed with owner? if (i != -1) { - *tbl = tname.right(tname.length() - i - 1); - *owner = tname.left(i); + *tbl = tname.right(tname.length() - i - 1).toUpper(); + *owner = tname.left(i).toUpper(); } else { - *tbl = tname; + *tbl = tname.toUpper(); } } @@ -2273,7 +2266,7 @@ QSqlRecord QOCIDriver::record(const QString& tablename) const QString stmt(QLatin1String("select column_name, data_type, data_length, " "data_precision, data_scale, nullable, data_default%1" "from all_tab_columns " - "where table_name=%2")); + "where upper(table_name)=%2")); if (d->serverVersion >= 9) stmt = stmt.arg(QLatin1String(", char_length ")); else @@ -2281,23 +2274,11 @@ QSqlRecord QOCIDriver::record(const QString& tablename) const bool buildRecordInfo = false; QString table, owner, tmpStmt; qSplitTableAndOwner(tablename, &table, &owner); - - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - else - table = table.toUpper(); - tmpStmt = stmt.arg(QLatin1Char('\'') + table + QLatin1Char('\'')); if (owner.isEmpty()) { owner = d->user; } - - if (isIdentifierEscaped(owner, QSqlDriver::TableName)) - owner = stripDelimiters(owner, QSqlDriver::TableName); - else - owner = owner.toUpper(); - - tmpStmt += QLatin1String(" and owner='") + owner + QLatin1String("'"); + tmpStmt += QLatin1String(" and upper(owner)='") + owner + QLatin1String("'"); t.setForwardOnly(true); t.exec(tmpStmt); if (!t.next()) { // try and see if the tablename is a synonym @@ -2346,23 +2327,11 @@ QSqlIndex QOCIDriver::primaryIndex(const QString& tablename) const bool buildIndex = false; QString table, owner, tmpStmt; qSplitTableAndOwner(tablename, &table, &owner); - - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - else - table = table.toUpper(); - - tmpStmt = stmt + QLatin1String(" and a.table_name='") + table + QLatin1String("'"); + tmpStmt = stmt + QLatin1String(" and upper(a.table_name)='") + table + QLatin1String("'"); if (owner.isEmpty()) { owner = d->user; } - - if (isIdentifierEscaped(owner, QSqlDriver::TableName)) - owner = stripDelimiters(owner, QSqlDriver::TableName); - else - owner = owner.toUpper(); - - tmpStmt += QLatin1String(" and a.owner='") + owner + QLatin1String("'"); + tmpStmt += QLatin1String(" and upper(a.owner)='") + owner + QLatin1String("'"); t.setForwardOnly(true); t.exec(tmpStmt); @@ -2456,14 +2425,13 @@ QVariant QOCIDriver::handle() const return qVariantFromValue(d->env); } -QString QOCIDriver::escapeIdentifier(const QString &identifier, IdentifierType type) const +QString QOCIDriver::escapeIdentifier(const QString &identifier, IdentifierType /* type */) const { QString res = identifier; - if(!identifier.isEmpty() && !isIdentifierEscaped(identifier, type)) { - res.replace(QLatin1Char('"'), QLatin1String("\"\"")); + res.replace(QLatin1Char('"'), QLatin1String("\"\"")); + if (identifier.indexOf(QLatin1Char(' ')) != -1) res.prepend(QLatin1Char('"')).append(QLatin1Char('"')); - res.replace(QLatin1Char('.'), QLatin1String("\".\"")); - } +// res.replace(QLatin1Char('.'), QLatin1String("\".\"")); return res; } diff --git a/src/sql/drivers/odbc/qsql_odbc.cpp b/src/sql/drivers/odbc/qsql_odbc.cpp index ee500a0..b711b95 100644 --- a/src/sql/drivers/odbc/qsql_odbc.cpp +++ b/src/sql/drivers/odbc/qsql_odbc.cpp @@ -86,7 +86,6 @@ static const SQLSMALLINT qParamType[4] = { SQL_PARAM_INPUT, SQL_PARAM_INPUT, SQL class QODBCDriverPrivate { public: - enum DefaultCase{Lower, Mixed, Upper, Sensitive}; QODBCDriverPrivate() : hEnv(0), hDbc(0), useSchema(false), disconnectCount(0), isMySqlServer(false), isMSSqlServer(false), hasSQLFetchScroll(true), hasMultiResultSets(false) @@ -118,9 +117,6 @@ public: bool setConnectionOptions(const QString& connOpts); void splitTableQualifier(const QString &qualifier, QString &catalog, QString &schema, QString &table); - DefaultCase defaultCase() const; - QString adjustCase(const QString&) const; - QChar quoteChar() const; }; class QODBCPrivate @@ -557,28 +553,6 @@ static int qGetODBCVersion(const QString &connOpts) return SQL_OV_ODBC2; } -QChar QODBCDriverPrivate::quoteChar() const -{ - static bool isQuoteInitialized = false; - static QChar quote = QChar::fromLatin1('"'); - if (!isQuoteInitialized) { - char driverResponse[4]; - SQLSMALLINT length; - int r = SQLGetInfo(hDbc, - SQL_IDENTIFIER_QUOTE_CHAR, - &driverResponse, - sizeof(driverResponse), - &length); - if (r == SQL_SUCCESS || r == SQL_SUCCESS_WITH_INFO) { - quote = QChar::fromLatin1(driverResponse[0]); - } else { - quote = QChar::fromLatin1('"'); - } - isQuoteInitialized = true; - } - return quote; -} - bool QODBCDriverPrivate::setConnectionOptions(const QString& connOpts) { // Set any connection attributes @@ -729,65 +703,6 @@ void QODBCDriverPrivate::splitTableQualifier(const QString & qualifier, QString } } -QODBCDriverPrivate::DefaultCase QODBCDriverPrivate::defaultCase() const -{ - static bool isInitialized = false; - static DefaultCase ret; - - if (!isInitialized) { - SQLUSMALLINT casing; - int r = SQLGetInfo(hDbc, - SQL_IDENTIFIER_CASE, - &casing, - sizeof(casing), - NULL); - if ( r != SQL_SUCCESS) - ret = Lower;//arbitrary case if driver cannot be queried - else { - switch (casing) { - case (SQL_IC_UPPER): - ret = Upper; - break; - case (SQL_IC_LOWER): - ret = Lower; - break; - case (SQL_IC_SENSITIVE): - ret = Sensitive; - break; - case (SQL_IC_MIXED): - ret = Mixed; - break; - default: - ret = Upper; - } - } - isInitialized = true; - } - return ret; -} - -/* - Adjust the casing of an identifier to match what the - database engine would have done to it. -*/ -QString QODBCDriverPrivate::adjustCase(const QString &identifier) const -{ - QString ret = identifier; - switch(defaultCase()) { - case (Lower): - ret = identifier.toLower(); - break; - case (Upper): - ret = identifier.toUpper(); - break; - case(Mixed): - case(Sensitive): - default: - ret = identifier; - } - return ret; -} - //////////////////////////////////////////////////////////////////////////// QODBCResult::QODBCResult(const QODBCDriver * db, QODBCDriverPrivate* p) @@ -2171,22 +2086,6 @@ QSqlIndex QODBCDriver::primaryIndex(const QString& tablename) const } QString catalog, schema, table; d->splitTableQualifier(tablename, catalog, schema, table); - - if (isIdentifierEscaped(catalog, QSqlDriver::TableName)) - catalog = stripDelimiters(catalog, QSqlDriver::TableName); - else - catalog = d->adjustCase(catalog); - - if (isIdentifierEscaped(schema, QSqlDriver::TableName)) - schema = stripDelimiters(schema, QSqlDriver::TableName); - else - schema = d->adjustCase(schema); - - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - else - table = d->adjustCase(table); - r = SQLSetStmtAttr(hStmt, SQL_ATTR_CURSOR_TYPE, (SQLPOINTER)SQL_CURSOR_FORWARD_ONLY, @@ -2289,22 +2188,6 @@ QSqlRecord QODBCDriver::record(const QString& tablename) const SQLHANDLE hStmt; QString catalog, schema, table; d->splitTableQualifier(tablename, catalog, schema, table); - - if (isIdentifierEscaped(catalog, QSqlDriver::TableName)) - catalog = stripDelimiters(catalog, QSqlDriver::TableName); - else - catalog = d->adjustCase(catalog); - - if (isIdentifierEscaped(schema, QSqlDriver::TableName)) - schema = stripDelimiters(schema, QSqlDriver::TableName); - else - schema = d->adjustCase(schema); - - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - else - table = d->adjustCase(table); - SQLRETURN r = SQLAllocHandle(SQL_HANDLE_STMT, d->hDbc, &hStmt); @@ -2428,15 +2311,4 @@ QString QODBCDriver::escapeIdentifier(const QString &identifier, IdentifierType) return res; } -bool QODBCDriver::isIdentifierEscapedImplementation(const QString &identifier, IdentifierType) const -{ - QString quote = d->quoteChar(); - bool isLeftDelimited = identifier.left(1) == quote; - bool isRightDelimited = identifier.right(1) == quote; - if( identifier.size() > 2 && isLeftDelimited && isRightDelimited ) - return true; - else - return false; -} - QT_END_NAMESPACE diff --git a/src/sql/drivers/odbc/qsql_odbc.h b/src/sql/drivers/odbc/qsql_odbc.h index 51f53ea..4148007 100644 --- a/src/sql/drivers/odbc/qsql_odbc.h +++ b/src/sql/drivers/odbc/qsql_odbc.h @@ -145,14 +145,10 @@ public: QString escapeIdentifier(const QString &identifier, IdentifierType type) const; -protected Q_SLOTS: - bool isIdentifierEscapedImplementation(const QString &identifier, IdentifierType type) const; - protected: bool beginTransaction(); bool commitTransaction(); bool rollbackTransaction(); - private: void init(); bool endTrans(); diff --git a/src/sql/drivers/psql/qsql_psql.cpp b/src/sql/drivers/psql/qsql_psql.cpp index 16d19f1..afe45fc 100644 --- a/src/sql/drivers/psql/qsql_psql.cpp +++ b/src/sql/drivers/psql/qsql_psql.cpp @@ -894,16 +894,6 @@ QSqlIndex QPSQLDriver::primaryIndex(const QString& tablename) const QString schema; qSplitTableName(tbl, schema); - if (isIdentifierEscaped(tbl, QSqlDriver::TableName)) - tbl = stripDelimiters(tbl, QSqlDriver::TableName); - else - tbl = tbl.toLower(); - - if (isIdentifierEscaped(schema, QSqlDriver::TableName)) - schema = stripDelimiters(schema, QSqlDriver::TableName); - else - schema = schema.toLower(); - switch(d->pro) { case QPSQLDriver::Version6: stmt = QLatin1String("select pg_att1.attname, int(pg_att1.atttypid), pg_cl.relname " @@ -936,7 +926,7 @@ QSqlIndex QPSQLDriver::primaryIndex(const QString& tablename) const "FROM pg_attribute, pg_class " "WHERE %1 pg_class.oid IN " "(SELECT indexrelid FROM pg_index WHERE indisprimary = true AND indrelid IN " - " (SELECT oid FROM pg_class WHERE relname = '%2')) " + " (SELECT oid FROM pg_class WHERE lower(relname) = '%2')) " "AND pg_attribute.attrelid = pg_class.oid " "AND pg_attribute.attisdropped = false " "ORDER BY pg_attribute.attnum"); @@ -944,11 +934,11 @@ QSqlIndex QPSQLDriver::primaryIndex(const QString& tablename) const stmt = stmt.arg(QLatin1String("pg_table_is_visible(pg_class.oid) AND")); else stmt = stmt.arg(QString::fromLatin1("pg_class.relnamespace = (select oid from " - "pg_namespace where pg_namespace.nspname = '%1') AND ").arg(schema)); + "pg_namespace where pg_namespace.nspname = '%1') AND ").arg(schema.toLower())); break; } - i.exec(stmt.arg(tbl)); + i.exec(stmt.arg(tbl.toLower())); while (i.isActive() && i.next()) { QSqlField f(i.value(0).toString(), qDecodePSQLType(i.value(1).toInt())); idx.append(f); @@ -967,16 +957,6 @@ QSqlRecord QPSQLDriver::record(const QString& tablename) const QString schema; qSplitTableName(tbl, schema); - if (isIdentifierEscaped(tbl, QSqlDriver::TableName)) - tbl = stripDelimiters(tbl, QSqlDriver::TableName); - else - tbl = tbl.toLower(); - - if (isIdentifierEscaped(schema, QSqlDriver::TableName)) - schema = stripDelimiters(schema, QSqlDriver::TableName); - else - schema = schema.toLower(); - QString stmt; switch(d->pro) { case QPSQLDriver::Version6: @@ -1021,7 +1001,7 @@ QSqlRecord QPSQLDriver::record(const QString& tablename) const "left join pg_attrdef on (pg_attrdef.adrelid = " "pg_attribute.attrelid and pg_attrdef.adnum = pg_attribute.attnum) " "where %1 " - "and pg_class.relname = '%2' " + "and lower(pg_class.relname) = '%2' " "and pg_attribute.attnum > 0 " "and pg_attribute.attrelid = pg_class.oid " "and pg_attribute.attisdropped = false " @@ -1030,12 +1010,12 @@ QSqlRecord QPSQLDriver::record(const QString& tablename) const stmt = stmt.arg(QLatin1String("pg_table_is_visible(pg_class.oid)")); else stmt = stmt.arg(QString::fromLatin1("pg_class.relnamespace = (select oid from " - "pg_namespace where pg_namespace.nspname = '%1')").arg(schema)); + "pg_namespace where pg_namespace.nspname = '%1')").arg(schema.toLower())); break; } QSqlQuery query(createResult()); - query.exec(stmt.arg(tbl)); + query.exec(stmt.arg(tbl.toLower())); if (d->pro >= QPSQLDriver::Version71) { while (query.next()) { int len = query.value(3).toInt(); diff --git a/src/sql/drivers/sqlite/qsql_sqlite.cpp b/src/sql/drivers/sqlite/qsql_sqlite.cpp index f732077..605c4e8 100644 --- a/src/sql/drivers/sqlite/qsql_sqlite.cpp +++ b/src/sql/drivers/sqlite/qsql_sqlite.cpp @@ -661,13 +661,9 @@ QSqlIndex QSQLiteDriver::primaryIndex(const QString &tblname) const if (!isOpen()) return QSqlIndex(); - QString table = tblname; - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - QSqlQuery q(createResult()); q.setForwardOnly(true); - return qGetTableInfo(q, table, true); + return qGetTableInfo(q, tblname, true); } QSqlRecord QSQLiteDriver::record(const QString &tbl) const @@ -675,13 +671,9 @@ QSqlRecord QSQLiteDriver::record(const QString &tbl) const if (!isOpen()) return QSqlRecord(); - QString table = tbl; - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - QSqlQuery q(createResult()); q.setForwardOnly(true); - return qGetTableInfo(q, table); + return qGetTableInfo(q, tbl); } QVariant QSQLiteDriver::handle() const @@ -689,10 +681,10 @@ QVariant QSQLiteDriver::handle() const return qVariantFromValue(d->access); } -QString QSQLiteDriver::escapeIdentifier(const QString &identifier, IdentifierType type) const +QString QSQLiteDriver::escapeIdentifier(const QString &identifier, IdentifierType /*type*/) const { QString res = identifier; - if(!identifier.isEmpty() && !isIdentifierEscaped(identifier, type) ) { + if(!identifier.isEmpty() && identifier.left(1) != QString(QLatin1Char('"')) && identifier.right(1) != QString(QLatin1Char('"')) ) { res.replace(QLatin1Char('"'), QLatin1String("\"\"")); res.prepend(QLatin1Char('"')).append(QLatin1Char('"')); res.replace(QLatin1Char('.'), QLatin1String("\".\"")); diff --git a/src/sql/drivers/sqlite2/qsql_sqlite2.cpp b/src/sql/drivers/sqlite2/qsql_sqlite2.cpp index d0c6e18..ff73caa 100644 --- a/src/sql/drivers/sqlite2/qsql_sqlite2.cpp +++ b/src/sql/drivers/sqlite2/qsql_sqlite2.cpp @@ -167,15 +167,7 @@ void QSQLite2ResultPrivate::init(const char **cnames, int numCols) for (int i = 0; i < numCols; ++i) { const char* lastDot = strrchr(cnames[i], '.'); const char* fieldName = lastDot ? lastDot + 1 : cnames[i]; - - //remove quotations around the field name if any - QString fieldStr = QString::fromAscii(fieldName); - QString quote = QString::fromLatin1("\""); - if ( fieldStr.length() > 2 && fieldStr.left(1) == quote && fieldStr.right(1) == quote) { - fieldStr = fieldStr.mid(1); - fieldStr.chop(1); - } - rInf.append(QSqlField(fieldStr, + rInf.append(QSqlField(QString::fromAscii(fieldName), nameToType(QString::fromAscii(cnames[i+numCols])))); } } @@ -511,11 +503,8 @@ QSqlIndex QSQLite2Driver::primaryIndex(const QString &tblname) const QSqlQuery q(createResult()); q.setForwardOnly(true); - QString table = tblname; - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); // finrst find a UNIQUE INDEX - q.exec(QLatin1String("PRAGMA index_list('") + table + QLatin1String("');")); + q.exec(QLatin1String("PRAGMA index_list('") + tblname + QLatin1String("');")); QString indexname; while(q.next()) { if (q.value(2).toInt()==1) { @@ -528,7 +517,7 @@ QSqlIndex QSQLite2Driver::primaryIndex(const QString &tblname) const q.exec(QLatin1String("PRAGMA index_info('") + indexname + QLatin1String("');")); - QSqlIndex index(table, indexname); + QSqlIndex index(tblname, indexname); while(q.next()) { QString name = q.value(2).toString(); QVariant::Type type = QVariant::Invalid; @@ -543,9 +532,6 @@ QSqlRecord QSQLite2Driver::record(const QString &tbl) const { if (!isOpen()) return QSqlRecord(); - QString table = tbl; - if (isIdentifierEscaped(tbl, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); QSqlQuery q(createResult()); q.setForwardOnly(true); diff --git a/src/sql/drivers/tds/qsql_tds.cpp b/src/sql/drivers/tds/qsql_tds.cpp index 515f0de..46e4a0b 100644 --- a/src/sql/drivers/tds/qsql_tds.cpp +++ b/src/sql/drivers/tds/qsql_tds.cpp @@ -293,8 +293,6 @@ QTDSResult::QTDSResult(const QTDSDriver* db) // insert d in error handler dict errs()->insert(d->dbproc, d); - dbcmd(d->dbproc, "set quoted_identifier on"); - dbsqlexec(d->dbproc); } QTDSResult::~QTDSResult() @@ -369,7 +367,7 @@ bool QTDSResult::gotoNext(QSqlCachedResult::ValueCache &values, int index) if (qIsNull(d->buffer.at(i * 2 + 1))) values[idx] = QVariant(QVariant::String); else - values[idx] = QString::fromLocal8Bit((const char*)d->buffer.at(i * 2)).trimmed(); + values[idx] = QString::fromLocal8Bit((const char*)d->buffer.at(i * 2)); break; case QVariant::ByteArray: { if (qIsNull(d->buffer.at(i * 2 + 1))) @@ -700,14 +698,9 @@ QSqlRecord QTDSDriver::record(const QString& tablename) const return info; QSqlQuery t(createResult()); t.setForwardOnly(true); - - QString table = tablename; - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - QString stmt (QLatin1String("select name, type, length, prec from syscolumns " "where id = (select id from sysobjects where name = '%1')")); - t.exec(stmt.arg(table)); + t.exec(stmt.arg(tablename)); while (t.next()) { QSqlField f(t.value(0).toString().simplified(), qDecodeTDSType(t.value(1).toInt())); f.setLength(t.value(2).toInt()); @@ -777,17 +770,13 @@ QSqlIndex QTDSDriver::primaryIndex(const QString& tablename) const { QSqlRecord rec = record(tablename); - QString table = tablename; - if (isIdentifierEscaped(table, QSqlDriver::TableName)) - table = stripDelimiters(table, QSqlDriver::TableName); - - QSqlIndex idx(table); - if ((!isOpen()) || (table.isEmpty())) + QSqlIndex idx(tablename); + if ((!isOpen()) || (tablename.isEmpty())) return QSqlIndex(); QSqlQuery t(createResult()); t.setForwardOnly(true); - t.exec(QString::fromLatin1("sp_helpindex '%1'").arg(table)); + t.exec(QString::fromLatin1("sp_helpindex '%1'").arg(tablename)); if (t.next()) { QStringList fNames = t.value(2).toString().simplified().split(QLatin1Char(',')); QRegExp regx(QLatin1String("\\s*(\\S+)(?:\\s+(DESC|desc))?\\s*")); diff --git a/src/sql/kernel/qsqldriver.cpp b/src/sql/kernel/qsqldriver.cpp index 40bc0df..a995005 100644 --- a/src/sql/kernel/qsqldriver.cpp +++ b/src/sql/kernel/qsqldriver.cpp @@ -49,17 +49,6 @@ QT_BEGIN_NAMESPACE -static QString prepareIdentifier(const QString &identifier, - QSqlDriver::IdentifierType type, const QSqlDriver *driver) -{ - Q_ASSERT( driver != NULL ); - QString ret = identifier; - if (!driver->isIdentifierEscaped(identifier, type)) { - ret = driver->escapeIdentifier(identifier, type); - } - return ret; -} - class QSqlDriverPrivate : public QObjectPrivate { public: @@ -383,7 +372,6 @@ QSqlRecord QSqlDriver::record(const QString & /* tableName */) const on \a type. The default implementation does nothing. - \sa isIdentifierEscaped() */ QString QSqlDriver::escapeIdentifier(const QString &identifier, IdentifierType) const { @@ -391,55 +379,6 @@ QString QSqlDriver::escapeIdentifier(const QString &identifier, IdentifierType) } /*! - Returns whether \a identifier is escaped according to the database rules. - \a identifier can either be a table name or field name, dependent - on \a type. - - \warning Because of binary compatability constraints, this function is not virtual. - If you want to provide your own implementation in your QSqlDriver subclass, - reimplement the isIdentifierEscapedImplementation() slot in your subclass instead. - The isIdentifierEscapedFunction() will dynamically detect the slot and call it. - - \sa stripDelimiters(), escapeIdentifier() - */ -bool QSqlDriver::isIdentifierEscaped(const QString &identifier, IdentifierType type) const -{ - bool result; - QMetaObject::invokeMethod(const_cast(this), - "isIdentifierEscapedImplementation", Qt::DirectConnection, - Q_RETURN_ARG(bool, result), - Q_ARG(QString, identifier), - Q_ARG(IdentifierType, type)); - return result; -} - -/*! - Returns the \a identifier with the leading and trailing delimiters removed, - \a identifier can either be a table name or field name, - dependent on \a type. If \a identifier does not have leading - and trailing delimiter characters, \a identifier is returned without - modification. - - \warning Because of binary compatability constraints, this function is not virtual, - If you want to provide your own implementation in your QSqlDriver subclass, - reimplement the stripDelimitersImplementation() slot in your subclass instead. - The stripDelimiters() function will dynamically detect the slot and call it. - - \since 4.5 - \sa isIdentifierEscaped() - */ -QString QSqlDriver::stripDelimiters(const QString &identifier, IdentifierType type) const -{ - QString result; - QMetaObject::invokeMethod(const_cast(this), - "stripDelimitersImplementation", Qt::DirectConnection, - Q_RETURN_ARG(QString, result), - Q_ARG(QString, identifier), - Q_ARG(IdentifierType, type)); - return result; -} - -/*! Returns a SQL statement of type \a type for the table \a tableName with the values from \a rec. If \a preparedStatement is true, the string will contain placeholders instead of values. @@ -458,17 +397,17 @@ QString QSqlDriver::sqlStatement(StatementType type, const QString &tableName, case SelectStatement: for (i = 0; i < rec.count(); ++i) { if (rec.isGenerated(i)) - s.append(prepareIdentifier(rec.fieldName(i), QSqlDriver::FieldName, this)).append(QLatin1String(", ")); + s.append(escapeIdentifier(rec.fieldName(i), FieldName)).append(QLatin1String(", ")); } if (s.isEmpty()) return s; s.chop(2); - s.prepend(QLatin1String("SELECT ")).append(QLatin1String(" FROM ")).append(tableName); + s.prepend(QLatin1String("SELECT ")).append(QLatin1String(" FROM ")).append(escapeIdentifier(tableName, TableName)); break; case WhereStatement: if (preparedStatement) { for (int i = 0; i < rec.count(); ++i) { - s.append(prepareIdentifier(rec.fieldName(i), FieldName,this)); + s.append(escapeIdentifier(rec.fieldName(i), FieldName)); if (rec.isNull(i)) s.append(QLatin1String(" IS NULL")); else @@ -477,7 +416,7 @@ QString QSqlDriver::sqlStatement(StatementType type, const QString &tableName, } } else { for (i = 0; i < rec.count(); ++i) { - s.append(prepareIdentifier(rec.fieldName(i), QSqlDriver::FieldName, this)); + s.append(escapeIdentifier(rec.fieldName(i), FieldName)); QString val = formatValue(rec.field(i)); if (val == QLatin1String("NULL")) s.append(QLatin1String(" IS NULL")); @@ -492,12 +431,12 @@ QString QSqlDriver::sqlStatement(StatementType type, const QString &tableName, } break; case UpdateStatement: - s.append(QLatin1String("UPDATE ")).append(tableName).append( + s.append(QLatin1String("UPDATE ")).append(escapeIdentifier(tableName, TableName)).append( QLatin1String(" SET ")); for (i = 0; i < rec.count(); ++i) { if (!rec.isGenerated(i) || !rec.value(i).isValid()) continue; - s.append(prepareIdentifier(rec.fieldName(i), QSqlDriver::FieldName, this)).append(QLatin1Char('=')); + s.append(escapeIdentifier(rec.fieldName(i), FieldName)).append(QLatin1Char('=')); if (preparedStatement) s.append(QLatin1Char('?')); else @@ -510,15 +449,15 @@ QString QSqlDriver::sqlStatement(StatementType type, const QString &tableName, s.clear(); break; case DeleteStatement: - s.append(QLatin1String("DELETE FROM ")).append(tableName); + s.append(QLatin1String("DELETE FROM ")).append(escapeIdentifier(tableName, TableName)); break; case InsertStatement: { - s.append(QLatin1String("INSERT INTO ")).append(tableName).append(QLatin1String(" (")); + s.append(QLatin1String("INSERT INTO ")).append(escapeIdentifier(tableName, TableName)).append(QLatin1String(" (")); QString vals; for (i = 0; i < rec.count(); ++i) { if (!rec.isGenerated(i) || !rec.value(i).isValid()) continue; - s.append(prepareIdentifier(rec.fieldName(i), QSqlDriver::FieldName, this)).append(QLatin1String(", ")); + s.append(escapeIdentifier(rec.fieldName(i), FieldName)).append(QLatin1String(", ")); if (preparedStatement) vals.append(QLatin1String("?")); else @@ -866,56 +805,4 @@ QStringList QSqlDriver::subscribedToNotificationsImplementation() const return QStringList(); } -/*! - This slot returns whether \a identifier is escaped according to the database rules. - \a identifier can either be a table name or field name, dependent - on \a type. - - Because of binary compatability constraints, isIdentifierEscaped() function - (introduced in Qt 4.5) is not virtual. Instead, isIdentifierEscaped() will - dynamically detect and call \e this slot. The default implementation - assumes the escape/delimiter character is a double quote. Reimplement this - slot in your own QSqlDriver if your database engine uses a different - delimiter character. - - \since 4.5 - \sa isIdentifierEscaped() - */ -bool QSqlDriver::isIdentifierEscapedImplementation(const QString &identifier, IdentifierType type) const -{ - Q_UNUSED(type); - bool isLeftDelimited = identifier.left(1) == QString(QLatin1Char('"')); - bool isRightDelimited = identifier.right(1) == QString(QLatin1Char('"')); - if( identifier.size() > 2 && isLeftDelimited && isRightDelimited ) - return true; - else - return false; -} - -/*! - This slot returns \a identifier with the leading and trailing delimiters removed, - \a identifier can either be a tablename or field name, dependent on \a type. - If \a identifier does not have leading and trailing delimiter characters, \a - identifier is returned without modification. - - Because of binary compatability constraints, the stripDelimiters() function - (introduced in Qt 4.5) is not virtual. Instead, stripDelimiters() will - dynamically detect and call \e this slot. It generally unnecessary - to reimplement this slot. - - \since 4.5 - \sa stripDelimiters() - */ -QString QSqlDriver::stripDelimitersImplementation(const QString &identifier, IdentifierType type) const -{ - QString ret; - if (this->isIdentifierEscaped(identifier, type)) { - ret = identifier.mid(1); - ret.chop(1); - } else { - ret = identifier; - } - return ret; -} - QT_END_NAMESPACE diff --git a/src/sql/kernel/qsqldriver.h b/src/sql/kernel/qsqldriver.h index 8ac1471..e763719 100644 --- a/src/sql/kernel/qsqldriver.h +++ b/src/sql/kernel/qsqldriver.h @@ -127,9 +127,6 @@ public: bool unsubscribeFromNotification(const QString &name); // ### Qt 5: make virtual QStringList subscribedToNotifications() const; // ### Qt 5: make virtual - bool isIdentifierEscaped(const QString &identifier, IdentifierType type) const; // ### Qt 5: make virtual - QString stripDelimiters(const QString &identifier, IdentifierType type) const; // ### Qt 5: make virtual - Q_SIGNALS: void notification(const QString &name); @@ -143,9 +140,6 @@ protected Q_SLOTS: bool unsubscribeFromNotificationImplementation(const QString &name); // ### Qt 5: eliminate, see unsubscribeFromNotification() QStringList subscribedToNotificationsImplementation() const; // ### Qt 5: eliminate, see subscribedNotifications() - bool isIdentifierEscapedImplementation(const QString &identifier, IdentifierType type) const; // ### Qt 5: eliminate, see isIdentifierEscaped() - QString stripDelimitersImplementation(const QString &identifier, IdentifierType type) const; // ### Qt 5: eliminate, see stripDelimiters() - private: Q_DISABLE_COPY(QSqlDriver) }; diff --git a/src/sql/models/qsqlrelationaltablemodel.cpp b/src/sql/models/qsqlrelationaltablemodel.cpp index 12eae84..935466b 100644 --- a/src/sql/models/qsqlrelationaltablemodel.cpp +++ b/src/sql/models/qsqlrelationaltablemodel.cpp @@ -182,21 +182,10 @@ void QRelation::populateDictionary() populateModel(); QSqlRecord record; - QString indexColumn; - QString displayColumn; for (int i=0; i < model->rowCount(); ++i) { record = model->record(i); - - indexColumn = rel.indexColumn(); - if (m_parent->database().driver()->isIdentifierEscaped(indexColumn, QSqlDriver::FieldName)) - indexColumn = m_parent->database().driver()->stripDelimiters(indexColumn, QSqlDriver::FieldName); - - displayColumn = rel.displayColumn(); - if (m_parent->database().driver()->isIdentifierEscaped(displayColumn, QSqlDriver::FieldName)) - displayColumn = m_parent->database().driver()->stripDelimiters(displayColumn, QSqlDriver::FieldName); - - dictionary[record.field(indexColumn).value().toString()] = - record.field(displayColumn).value(); + dictionary[record.field(rel.indexColumn()).value().toString()] = + record.field(rel.displayColumn()).value(); } m_dictInitialized = true; } @@ -226,7 +215,7 @@ public: QSqlRelationalTableModelPrivate() : QSqlTableModelPrivate() {} - QString relationField(const QString &tableName, const QString &fieldName) const; + QString escapedRelationField(const QString &tableName, const QString &fieldName) const; int nameToIndex(const QString &name) const; mutable QVector relations; @@ -266,10 +255,7 @@ void QSqlRelationalTableModelPrivate::revertCachedRow(int row) int QSqlRelationalTableModelPrivate::nameToIndex(const QString &name) const { - QString fieldname = name; - if (db.driver()->isIdentifierEscaped(fieldname, QSqlDriver::FieldName)) - fieldname = db.driver()->stripDelimiters(fieldname, QSqlDriver::FieldName); - return baseRec.indexOf(fieldname); + return baseRec.indexOf(name); } void QSqlRelationalTableModelPrivate::clearEditBuffer() @@ -495,14 +481,14 @@ QSqlRelation QSqlRelationalTableModel::relation(int column) const return d->relations.value(column).rel; } -QString QSqlRelationalTableModelPrivate::relationField(const QString &tableName, +QString QSqlRelationalTableModelPrivate::escapedRelationField(const QString &tableName, const QString &fieldName) const { - QString ret; - ret.reserve(tableName.size() + fieldName.size() + 1); - ret.append(tableName).append(QLatin1Char('.')).append(fieldName); + QString esc; + esc.reserve(tableName.size() + fieldName.size() + 1); + esc.append(tableName).append(QLatin1Char('.')).append(fieldName); - return ret; + return db.driver()->escapeIdentifier(esc, QSqlDriver::FieldName); } /*! @@ -528,29 +514,15 @@ QString QSqlRelationalTableModel::selectStatement() const // Count how many times each field name occurs in the record QHash fieldNames; - QStringList fieldList; for (int i = 0; i < rec.count(); ++i) { QSqlRelation relation = d->relations.value(i, nullRelation).rel; QString name; if (relation.isValid()) - { // Count the display column name, not the original foreign key name = relation.displayColumn(); - if (d->db.driver()->isIdentifierEscaped(name, QSqlDriver::FieldName)) - name = d->db.driver()->stripDelimiters(name, QSqlDriver::FieldName); - - QSqlRecord rec = database().record(relation.tableName()); - for (int i = 0; i < rec.count(); ++i) { - if (name.compare(rec.fieldName(i), Qt::CaseInsensitive) == 0) { - name = rec.fieldName(i); - break; - } - } - } else name = rec.fieldName(i); fieldNames.insert(name, fieldNames.value(name, 0) + 1); - fieldList.append(name); } for (int i = 0; i < rec.count(); ++i) { @@ -559,30 +531,27 @@ QString QSqlRelationalTableModel::selectStatement() const QString relTableAlias = QString::fromLatin1("relTblAl_%1").arg(i); if (!fList.isEmpty()) fList.append(QLatin1String(", ")); - fList.append(d->relationField(relTableAlias,relation.displayColumn())); + fList.append(d->escapedRelationField(relTableAlias, relation.displayColumn())); // If there are duplicate field names they must be aliased - if (fieldNames.value(fieldList[i]) > 1) { - QString relTableName = relation.tableName(); - if (d->db.driver()->isIdentifierEscaped(relTableName, QSqlDriver::TableName)) - relTableName = d->db.driver()->stripDelimiters(relTableName, QSqlDriver::TableName); - QString displayColumn = relation.displayColumn(); - if (d->db.driver()->isIdentifierEscaped(displayColumn, QSqlDriver::FieldName)) - displayColumn = d->db.driver()->stripDelimiters(displayColumn, QSqlDriver::FieldName); - fList.append(QString::fromLatin1(" AS %1_%2").arg(relTableName).arg(displayColumn)); + if (fieldNames.value(relation.displayColumn()) > 1) { + fList.append(QString::fromLatin1(" AS %1_%2").arg(relation.tableName()).arg(relation.displayColumn())); } // this needs fixing!! the below if is borken. - tables.append(relation.tableName().append(QLatin1String(" ")).append(relTableAlias)); + if (!tables.contains(relation.tableName())) + tables.append(d->db.driver()->escapeIdentifier(relation.tableName(),QSqlDriver::TableName) + .append(QLatin1String(" ")) + .append(d->db.driver()->escapeIdentifier(relTableAlias, QSqlDriver::TableName))); if(!where.isEmpty()) where.append(QLatin1String(" AND ")); - where.append(d->relationField(tableName(), d->db.driver()->escapeIdentifier(rec.fieldName(i), QSqlDriver::FieldName))); + where.append(d->escapedRelationField(tableName(), rec.fieldName(i))); where.append(QLatin1String(" = ")); - where.append(d->relationField(relTableAlias, relation.indexColumn())); + where.append(d->escapedRelationField(relTableAlias, relation.indexColumn())); } else { if (!fList.isEmpty()) fList.append(QLatin1String(", ")); - fList.append(d->relationField(tableName(), d->db.driver()->escapeIdentifier(rec.fieldName(i), QSqlDriver::FieldName))); + fList.append(d->escapedRelationField(tableName(), rec.fieldName(i))); } } if (!tables.isEmpty()) @@ -591,7 +560,7 @@ QString QSqlRelationalTableModel::selectStatement() const return query; if(!tList.isEmpty()) tList.prepend(QLatin1String(", ")); - tList.prepend(tableName()); + tList.prepend(d->db.driver()->escapeIdentifier(tableName(),QSqlDriver::TableName)); query.append(QLatin1String("SELECT ")); query.append(fList).append(QLatin1String(" FROM ")).append(tList); qAppendWhereClause(query, where, filter()); @@ -721,7 +690,7 @@ QString QSqlRelationalTableModel::orderByClause() const return QSqlTableModel::orderByClause(); QString s = QLatin1String("ORDER BY "); - s.append(d->relationField(QLatin1String("relTblAl_") + QString::number(d->sortColumn), + s.append(d->escapedRelationField(QLatin1String("relTblAl_") + QString::number(d->sortColumn), rel.displayColumn())); s += d->sortOrder == Qt::AscendingOrder ? QLatin1String(" ASC") : QLatin1String(" DESC"); return s; diff --git a/src/sql/models/qsqltablemodel.cpp b/src/sql/models/qsqltablemodel.cpp index c2442c5..2fb9b0f 100644 --- a/src/sql/models/qsqltablemodel.cpp +++ b/src/sql/models/qsqltablemodel.cpp @@ -98,10 +98,7 @@ bool QSqlTableModelPrivate::setRecord(int row, const QSqlRecord &record) int QSqlTableModelPrivate::nameToIndex(const QString &name) const { - QString fieldname = name; - if (db.driver()->isIdentifierEscaped(fieldname, QSqlDriver::FieldName)) - fieldname = db.driver()->stripDelimiters(fieldname, QSqlDriver::FieldName); - return rec.indexOf(fieldname); + return rec.indexOf(name); } void QSqlTableModelPrivate::initRecordAndPrimaryIndex() @@ -370,7 +367,10 @@ void QSqlTableModel::setTable(const QString &tableName) { Q_D(QSqlTableModel); clear(); - d->tableName = tableName; + if(d->db.tables().contains(tableName.toUpper())) + d->tableName = tableName.toUpper(); + else + d->tableName = tableName; d->initRecordAndPrimaryIndex(); d->initColOffsets(d->rec.count()); @@ -976,9 +976,7 @@ QString QSqlTableModel::orderByClause() const if (!f.isValid()) return s; - QString table = d->tableName; - //we can safely escape the field because it would have been obtained from the database - //and have the correct case + QString table = d->db.driver()->escapeIdentifier(d->tableName, QSqlDriver::TableName); QString field = d->db.driver()->escapeIdentifier(f.name(), QSqlDriver::FieldName); s.append(QLatin1String("ORDER BY ")).append(table).append(QLatin1Char('.')).append(field); s += d->sortOrder == Qt::AscendingOrder ? QLatin1String(" ASC") : QLatin1String(" DESC"); @@ -1319,12 +1317,8 @@ bool QSqlTableModel::setRecord(int row, const QSqlRecord &record) mrow.rec = d->rec; mrow.primaryValues = d->primaryValues(indexInQuery(createIndex(row, 0)).row()); } - QString fieldName; for (int i = 0; i < record.count(); ++i) { - fieldName = record.fieldName(i); - if (d->db.driver()->isIdentifierEscaped(fieldName, QSqlDriver::FieldName)) - fieldName = d->db.driver()->stripDelimiters(fieldName, QSqlDriver::FieldName); - int idx = mrow.rec.indexOf(fieldName); + int idx = mrow.rec.indexOf(record.fieldName(i)); if (idx == -1) isOk = false; else diff --git a/tests/auto/qsqldatabase/tst_databases.h b/tests/auto/qsqldatabase/tst_databases.h index ef51285..5b0fc7a 100644 --- a/tests/auto/qsqldatabase/tst_databases.h +++ b/tests/auto/qsqldatabase/tst_databases.h @@ -105,7 +105,11 @@ inline static QString qTableName( const QString& prefix, QSqlDriver* driver = 0 inline static bool testWhiteSpaceNames( const QString &name ) { - return name != QLatin1String("QTDS7"); +/* return name.startsWith( "QPSQL" ) + || name.startsWith( "QODBC" ) + || name.startsWith( "QSQLITE" ) + || name.startsWith( "QMYSQL" );*/ + return name != QLatin1String("QSQLITE2"); } inline static QString toHex( const QString& binary ) @@ -207,7 +211,7 @@ public: // This requires a local ODBC data source to be configured( pointing to a MySql database ) // addDb( "QODBC", "mysqlodbc", "troll", "trond" ); // addDb( "QODBC", "SqlServer", "troll", "trond" ); -// addDb( "QTDS7", "testdb", "troll", "trondk", "horsehead" ); +// addDb( "QTDS7", "testdb", "troll", "trondk", "horsehead.nokia.troll.no" ); // addDb( "QODBC", "silencetestdb", "troll", "trond", "silence" ); // addDb( "QODBC", "horseheadtestdb", "troll", "trondk", "horsehead" ); @@ -247,7 +251,6 @@ public: // addDb( "QODBC", "DRIVER={MySQL ODBC 3.51 Driver};SERVER=mysql5-nokia.trolltech.com.au;DATABASE=testdb", "testuser", "Ee4Gabf6_", "" ); // addDb( "QODBC", "DRIVER={FreeTDS};SERVER=horsehead.nokia.troll.no;DATABASE=testdb;PORT=4101;UID=troll;PWD=trondk", "troll", "trondk", "" ); // addDb( "QODBC", "DRIVER={FreeTDS};SERVER=silence.nokia.troll.no;DATABASE=testdb;PORT=2392;UID=troll;PWD=trond", "troll", "trond", "" ); - } void open() @@ -313,22 +316,16 @@ public: QSqlQuery q( db ); QStringList dbtables=db.tables(); - foreach(const QString &tableName, tableNames) - { + foreach(const QString &tableName, tableNames) { wasDropped = true; - QString table=tableName; - if ( db.driver()->isIdentifierEscaped(table, QSqlDriver::TableName)) - table = db.driver()->stripDelimiters(table, QSqlDriver::TableName); - foreach(const QString dbtablesName, dbtables) { - if(dbtablesName.toUpper() == table.toUpper()) { + if(dbtablesName.toUpper() == tableName.toUpper()) { dbtables.removeAll(dbtablesName); wasDropped = q.exec("drop table " + db.driver()->escapeIdentifier( dbtablesName, QSqlDriver::TableName )); if(!wasDropped) wasDropped = q.exec("drop table " + dbtablesName); } } - if ( !wasDropped ) qWarning() << dbToString(db) << "unable to drop table" << tableName << ':' << q.lastError().text() << "tables:" << dbtables; } diff --git a/tests/auto/qsqldriver/qsqldriver.pro b/tests/auto/qsqldriver/qsqldriver.pro deleted file mode 100644 index 0024841..0000000 --- a/tests/auto/qsqldriver/qsqldriver.pro +++ /dev/null @@ -1,16 +0,0 @@ -load(qttest_p4) -SOURCES += tst_qsqldriver.cpp - -QT += sql - -wince*: { - plugFiles.sources = ../../../plugins/sqldrivers - plugFiles.path = . - DEPLOYMENT += plugFiles -} else { - win32-g++ { - LIBS += -lws2_32 - } else:win32 { - LIBS += ws2_32.lib - } -} diff --git a/tests/auto/qsqldriver/tst_qsqldriver.cpp b/tests/auto/qsqldriver/tst_qsqldriver.cpp deleted file mode 100644 index bbd7483..0000000 --- a/tests/auto/qsqldriver/tst_qsqldriver.cpp +++ /dev/null @@ -1,218 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) -** -** This file is part of the test suite of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the either Technology Preview License Agreement or the -** Beta Release License Agreement. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain -** additional rights. These rights are described in the Nokia Qt LGPL -** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this -** package. -** -** GNU General Public License Usage -** Alternatively, this file may be used under the terms of the GNU -** General Public License version 3.0 as published by the Free Software -** Foundation and appearing in the file LICENSE.GPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU General Public License version 3.0 requirements will be -** met: http://www.gnu.org/copyleft/gpl.html. -** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. -** $QT_END_LICENSE$ -** -****************************************************************************/ - - -#include -#include - -#include "../qsqldatabase/tst_databases.h" - - - -//TESTED_CLASS= -//TESTED_FILES= - -class tst_QSqlDriver : public QObject -{ - Q_OBJECT - -public: - void recreateTestTables(QSqlDatabase); - - tst_Databases dbs; - -public slots: - void initTestCase_data(); - void initTestCase(); - void cleanupTestCase(); - void init(); - void cleanup(); - -private slots: - void record(); - void primaryIndex(); -}; - - -void tst_QSqlDriver::initTestCase_data() -{ - dbs.open(); - if (dbs.fillTestTable() == 0) { - qWarning("NO DATABASES"); - QSKIP("No database drivers are available in this Qt configuration", SkipAll); - } -} - -void tst_QSqlDriver::recreateTestTables(QSqlDatabase db) -{ - QSqlQuery q(db); - - QStringList tableNames; - tableNames << qTableName( "relTEST1" ); - tst_Databases::safeDropTables( db, tableNames ); - - QVERIFY_SQL( q, exec("create table " + qTableName("relTEST1") + - " (id int not null primary key, name varchar(20), title_key int, another_title_key int)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("relTEST1") + " values(1, 'harry', 1, 2)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("relTEST1") + " values(2, 'trond', 2, 1)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("relTEST1") + " values(3, 'vohi', 1, 2)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("relTEST1") + " values(4, 'boris', 2, 2)")); -} - -void tst_QSqlDriver::initTestCase() -{ - foreach (const QString &dbname, dbs.dbNames) - recreateTestTables(QSqlDatabase::database(dbname)); -} - -void tst_QSqlDriver::cleanupTestCase() -{ - QStringList tableNames; - tableNames << qTableName( "relTEST1" ); - foreach (const QString &dbName, dbs.dbNames) { - QSqlDatabase db = QSqlDatabase::database(dbName); - tst_Databases::safeDropTables( db, tableNames ); - } - dbs.close(); -} - -void tst_QSqlDriver::init() -{ -} - -void tst_QSqlDriver::cleanup() -{ -} - -void tst_QSqlDriver::record() -{ - QFETCH_GLOBAL(QString, dbName); - QSqlDatabase db = QSqlDatabase::database(dbName); - CHECK_DATABASE(db); - - QString tablename = qTableName("relTEST1"); - QStringList fields; - fields << "id" << "name" << "title_key" << "another_title_key"; - - //check we can get records using an unquoted mixed case table name - QSqlRecord rec = db.driver()->record(tablename); - QCOMPARE(rec.count(), 4); - - if (db.driverName().startsWith("QIBASE")|| db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) - for(int i = 0; i < fields.count(); ++i) - fields[i] = fields[i].toUpper(); - - for (int i = 0; i < fields.count(); ++i) - QCOMPARE(rec.fieldName(i), fields[i]); - - if (db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) - tablename = tablename.toUpper(); - else if (db.driverName().startsWith("QPSQL")) - tablename = tablename.toLower(); - - //check we can get records using a properly quoted table name - rec = db.driver()->record(db.driver()->escapeIdentifier(tablename,QSqlDriver::TableName)); - QCOMPARE(rec.count(), 4); - - for (int i = 0; i < fields.count(); ++i) - QCOMPARE(rec.fieldName(i), fields[i]); - - if( db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) - tablename = tablename.toLower(); - else if (db.driverName().startsWith("QPSQL")) - tablename = tablename.toUpper(); - - //check that we can't get records using incorrect tablename casing that's been quoted - rec = db.driver()->record(db.driver()->escapeIdentifier(tablename,QSqlDriver::TableName)); - if (db.driverName().startsWith("QMYSQL") || db.driverName().startsWith("QSQLITE") || db.driverName().startsWith("QTDS")) - QCOMPARE(rec.count(), 4); //mysql, sqlite and tds will match - else - QCOMPARE(rec.count(), 0); - -} - -void tst_QSqlDriver::primaryIndex() -{ - QFETCH_GLOBAL(QString, dbName); - QSqlDatabase db = QSqlDatabase::database(dbName); - CHECK_DATABASE(db); - - QString tablename = qTableName("relTEST1"); - //check that we can get primary index using unquoted mixed case table name - QSqlIndex index = db.driver()->primaryIndex(tablename); - QCOMPARE(index.count(), 1); - - if( db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) - QCOMPARE(index.fieldName(0), QString::fromLatin1("ID")); - else - QCOMPARE(index.fieldName(0), QString::fromLatin1("id")); - - - //check that we can get the primary index using a quoted tablename - if( db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) - tablename = tablename.toUpper(); - else if (db.driverName().startsWith("QPSQL")) - tablename = tablename.toLower(); - - index = db.driver()->primaryIndex(db.driver()->escapeIdentifier(tablename, QSqlDriver::TableName)); - QCOMPARE(index.count(), 1); - if( db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) - QCOMPARE(index.fieldName(0), QString::fromLatin1("ID")); - else - QCOMPARE(index.fieldName(0), QString::fromLatin1("id")); - - - - //check that we can not get the primary index using a quoted but incorrect table name casing - if( db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) - tablename = tablename.toLower(); - else if (db.driverName().startsWith("QPSQL")) - tablename = tablename.toUpper(); - - index = db.driver()->primaryIndex(db.driver()->escapeIdentifier(tablename, QSqlDriver::TableName)); - if (db.driverName().startsWith("QMYSQL") || db.driverName().startsWith("QSQLITE") || db.driverName().startsWith("QTDS")) - QCOMPARE(index.count(), 1); //mysql will always find the table name regardless of casing - else - QCOMPARE(index.count(), 0); -} - -QTEST_MAIN(tst_QSqlDriver) -#include "tst_qsqldriver.moc" diff --git a/tests/auto/qsqlrelationaltablemodel/tst_qsqlrelationaltablemodel.cpp b/tests/auto/qsqlrelationaltablemodel/tst_qsqlrelationaltablemodel.cpp index bb2cddd..76785c3 100644 --- a/tests/auto/qsqlrelationaltablemodel/tst_qsqlrelationaltablemodel.cpp +++ b/tests/auto/qsqlrelationaltablemodel/tst_qsqlrelationaltablemodel.cpp @@ -82,10 +82,6 @@ private slots: void insertRecordDuplicateFieldNames(); void invalidData(); void relationModel(); - void casing(); - void escapedRelations(); - void escapedTableName(); - void whiteSpaceInIdentifiers(); }; @@ -107,9 +103,7 @@ void tst_QSqlRelationalTableModel::recreateTestTables(QSqlDatabase db) << qTableName( "reltest2" ) << qTableName( "reltest3" ) << qTableName( "reltest4" ) - << qTableName( "reltest5" ) - << db.driver()->escapeIdentifier(qTableName( "rel test6" ), QSqlDriver::TableName) - << db.driver()->escapeIdentifier(qTableName( "rel test7" ), QSqlDriver::TableName); + << qTableName( "reltest5" ); tst_Databases::safeDropTables( db, tableNames ); QVERIFY_SQL( q, exec("create table " + qTableName("reltest1") + @@ -134,19 +128,6 @@ void tst_QSqlRelationalTableModel::recreateTestTables(QSqlDatabase db) QVERIFY_SQL( q, exec("create table " + qTableName("reltest5") + " (title varchar(20) not null primary key, abbrev varchar(20))")); QVERIFY_SQL( q, exec("insert into " + qTableName("reltest5") + " values('herr', 'Hr')")); QVERIFY_SQL( q, exec("insert into " + qTableName("reltest5") + " values('mister', 'Mr')")); - - if (testWhiteSpaceNames(db.driverName())) { - QString reltest6 = db.driver()->escapeIdentifier(qTableName("rel test6"), QSqlDriver::TableName); - QVERIFY_SQL( q, exec("create table " + reltest6 + " (id int not null primary key, " + db.driver()->escapeIdentifier("city key", QSqlDriver::FieldName) + - " int, " + db.driver()->escapeIdentifier("extra field", QSqlDriver::FieldName) + " int)")); - QVERIFY_SQL( q, exec("insert into " + reltest6 + " values(1, 1,9)")); - QVERIFY_SQL( q, exec("insert into " + reltest6 + " values(2, 2,8)")); - - QString reltest7 = db.driver()->escapeIdentifier(qTableName("rel test7"), QSqlDriver::TableName); - QVERIFY_SQL( q, exec("create table " + reltest7 + " (" + db.driver()->escapeIdentifier("city id", QSqlDriver::TableName) + " int not null primary key, " + db.driver()->escapeIdentifier("city name", QSqlDriver::FieldName) + " varchar(20))")); - QVERIFY_SQL( q, exec("insert into " + reltest7 + " values(1, 'New York')")); - QVERIFY_SQL( q, exec("insert into " + reltest7 + " values(2, 'Washington')")); - } } void tst_QSqlRelationalTableModel::initTestCase() @@ -161,14 +142,10 @@ void tst_QSqlRelationalTableModel::cleanupTestCase() tableNames << qTableName( "reltest1" ) << qTableName( "reltest2" ) << qTableName( "reltest3" ) - << qTableName( "reltest4" ) - << qTableName( "reltest5" ); + << qTableName( "reltest4" ); foreach (const QString &dbName, dbs.dbNames) { QSqlDatabase db = QSqlDatabase::database(dbName); - QStringList tables = tableNames; - tables << db.driver()->escapeIdentifier(qTableName( "rel test6" ), QSqlDriver::TableName) - << db.driver()->escapeIdentifier(qTableName( "rel test7" ), QSqlDriver::TableName); - tst_Databases::safeDropTables( db, tables ); + tst_Databases::safeDropTables( db, tableNames ); } dbs.close(); } @@ -296,12 +273,7 @@ void tst_QSqlRelationalTableModel::setData() model.setTable(qTableName("reltest1")); model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - - //sybase doesn't allow tables with the same alias used twice as col names - //so don't set up an identical relation when using the tds driver - if (!db.driverName().startsWith("QTDS")) - model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); - + model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); model.setEditStrategy(QSqlTableModel::OnManualSubmit); model.setSort(0, Qt::AscendingOrder); QVERIFY_SQL(model, select()); @@ -312,10 +284,7 @@ void tst_QSqlRelationalTableModel::setData() QCOMPARE(model.data(model.index(2, 1)).toString(), QString("vohi2")); QCOMPARE(model.data(model.index(3, 2)).toString(), QString("herr")); - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(0, 3)).toString(), QString("herr")); - else - QCOMPARE(model.data(model.index(0, 3)).toInt(), 1); + QCOMPARE(model.data(model.index(0, 3)).toString(), QString("herr")); QVERIFY_SQL(model, submitAll()); } @@ -330,15 +299,10 @@ void tst_QSqlRelationalTableModel::setData() QCOMPARE(model.data(model.index(0, 3)).toInt(), 1); model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - if (!db.driverName().startsWith("QTDS")) - model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); + model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); QVERIFY_SQL(model, select()); QCOMPARE(model.data(model.index(3, 2)).toString(), QString("herr")); - - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(0, 3)).toString(), QString("herr")); - else - QCOMPARE(model.data(model.index(0, 3)).toInt(), 1); + QCOMPARE(model.data(model.index(0, 3)).toString(), QString("herr")); } //check setting of data when the relational key is a non-integer type @@ -372,8 +336,7 @@ void tst_QSqlRelationalTableModel::multipleRelation() model.setTable(qTableName("reltest1")); model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - model.setRelation(3, QSqlRelation(qTableName("reltest4"), "id", "name")); - model.setSort(0, Qt::AscendingOrder); + model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); QVERIFY_SQL(model, select()); QCOMPARE(model.data(model.index(2, 0)).toInt(), 3); @@ -381,7 +344,7 @@ void tst_QSqlRelationalTableModel::multipleRelation() QCOMPARE(model.data(model.index(0, 0)).toInt(), 1); QCOMPARE(model.data(model.index(0, 1)).toString(), QString("harry")); QCOMPARE(model.data(model.index(0, 2)).toString(), QString("herr")); - QCOMPARE(model.data(model.index(0, 3)).toString(), QString("Trondheim")); + QCOMPARE(model.data(model.index(0, 3)).toString(), QString("mister")); } void tst_QSqlRelationalTableModel::insertRecord() @@ -394,7 +357,6 @@ void tst_QSqlRelationalTableModel::insertRecord() model.setTable(qTableName("reltest1")); model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - model.setSort(0, Qt::AscendingOrder); QVERIFY_SQL(model, select()); QSqlRecord rec; @@ -436,7 +398,6 @@ void tst_QSqlRelationalTableModel::setRecord() model.setTable(qTableName("reltest1")); model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - model.setSort(0, Qt::AscendingOrder); QVERIFY_SQL(model, select()); QSqlRecord rec; @@ -489,18 +450,13 @@ void tst_QSqlRelationalTableModel::insertWithStrategies() model.setTable(qTableName("reltest1")); model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - - if (!db.driverName().startsWith("QTDS")) - model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); + model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); QVERIFY_SQL(model, select()); QCOMPARE(model.data(model.index(0,0)).toInt(), 1); QCOMPARE(model.data(model.index(0,1)).toString(), QString("harry")); QCOMPARE(model.data(model.index(0,2)).toString(), QString("herr")); - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(0,3)).toString(), QString("mister")); - else - QCOMPARE(model.data(model.index(0,3)).toInt(), 2); + QCOMPARE(model.data(model.index(0,3)).toString(), QString("mister")); model.insertRows(0, 1); model.setData(model.index(0, 0), 1011); @@ -511,20 +467,12 @@ void tst_QSqlRelationalTableModel::insertWithStrategies() QCOMPARE(model.data(model.index(0,0)).toInt(), 1011); QCOMPARE(model.data(model.index(0,1)).toString(), QString("test")); QCOMPARE(model.data(model.index(0,2)).toString(), QString("mister")); - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(0,3)).toString(), QString("herr")); - else - QCOMPARE(model.data(model.index(0,3)).toInt(), 1); + QCOMPARE(model.data(model.index(0,3)).toString(), QString("herr")); QCOMPARE(model.data(model.index(1,0)).toInt(), 1); QCOMPARE(model.data(model.index(1,1)).toString(), QString("harry")); QCOMPARE(model.data(model.index(1,2)).toString(), QString("herr")); - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(1,3)).toString(), QString("mister")); - else - QCOMPARE(model.data(model.index(1,3)).toInt(), 2); - - + QCOMPARE(model.data(model.index(1,3)).toString(), QString("mister")); QVERIFY_SQL(model, submitAll()); @@ -533,16 +481,9 @@ void tst_QSqlRelationalTableModel::insertWithStrategies() QCOMPARE(model.data(model.index(0,0)).toInt(), 1); QCOMPARE(model.data(model.index(0,1)).toString(), QString("harry")); QCOMPARE(model.data(model.index(0,2)).toString(), QString("herr")); - - if (!db.driverName().startsWith("QTDS")) { - QCOMPARE(model.data(model.index(0,3)).toString(), QString("mister")); - model.setData(model.index(0,3),1); - QCOMPARE(model.data(model.index(0,3)).toString(), QString("herr")); - } else { - QCOMPARE(model.data(model.index(0,3)).toInt(), 2); - model.setData(model.index(0,3),1); - QCOMPARE(model.data(model.index(0,3)).toInt(), 1); - } + QCOMPARE(model.data(model.index(0,3)).toString(), QString("mister")); + model.setData(model.index(0,3),1); + QCOMPARE(model.data(model.index(0,3)).toString(), QString("herr")); model.insertRows(0, 2); model.setData(model.index(0, 0), 1012); @@ -558,27 +499,17 @@ void tst_QSqlRelationalTableModel::insertWithStrategies() QCOMPARE(model.data(model.index(0,0)).toInt(),1012); QCOMPARE(model.data(model.index(0,1)).toString(), QString("george")); QCOMPARE(model.data(model.index(0,2)).toString(), QString("mister")); - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(0,3)).toString(), QString("mister")); - else - QCOMPARE(model.data(model.index(0,3)).toInt(), 2); - + QCOMPARE(model.data(model.index(0,3)).toString(), QString("mister")); QCOMPARE(model.data(model.index(1,0)).toInt(),1013); QCOMPARE(model.data(model.index(1,1)).toString(), QString("kramer")); QCOMPARE(model.data(model.index(1,2)).toString(), QString("mister")); - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(1,3)).toString(), QString("herr")); - else - QCOMPARE(model.data(model.index(1,3)).toInt(), 1); + QCOMPARE(model.data(model.index(1,3)).toString(), QString("herr")); QCOMPARE(model.data(model.index(2,0)).toInt(), 1); QCOMPARE(model.data(model.index(2,1)).toString(), QString("harry")); QCOMPARE(model.data(model.index(2,2)).toString(), QString("herr")); - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(2,3)).toString(), QString("herr")); - else - QCOMPARE(model.data(model.index(2,3)).toInt(), 1); + QCOMPARE(model.data(model.index(2,3)).toString(), QString("herr")); QVERIFY_SQL(model, submitAll()); } @@ -643,8 +574,7 @@ void tst_QSqlRelationalTableModel::sort() model.setTable(qTableName("reltest1")); model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - if (!db.driverName().startsWith("QTDS")) - model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); + model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); model.setSort(2, Qt::DescendingOrder); QVERIFY_SQL(model, select()); @@ -659,19 +589,11 @@ void tst_QSqlRelationalTableModel::sort() model.setSort(3, Qt::AscendingOrder); QVERIFY_SQL(model, select()); - if (!db.driverName().startsWith("QTDS")) { - QCOMPARE(model.rowCount(), 4); - QCOMPARE(model.data(model.index(0, 3)).toString(), QString("herr")); - QCOMPARE(model.data(model.index(1, 3)).toString(), QString("mister")); - QCOMPARE(model.data(model.index(2, 3)).toString(), QString("mister")); - QCOMPARE(model.data(model.index(3, 3)).toString(), QString("mister")); - } else { - QCOMPARE(model.data(model.index(0, 3)).toInt(), 1); - QCOMPARE(model.data(model.index(1, 3)).toInt(), 2); - QCOMPARE(model.data(model.index(2, 3)).toInt(), 2); - QCOMPARE(model.data(model.index(3, 3)).toInt(), 2); - } - + QCOMPARE(model.rowCount(), 4); + QCOMPARE(model.data(model.index(0, 3)).toString(), QString("herr")); + QCOMPARE(model.data(model.index(1, 3)).toString(), QString("mister")); + QCOMPARE(model.data(model.index(2, 3)).toString(), QString("mister")); + QCOMPARE(model.data(model.index(3, 3)).toString(), QString("mister")); } static void testRevert(QSqlRelationalTableModel &model) @@ -741,7 +663,7 @@ void tst_QSqlRelationalTableModel::revert() model.setTable(qTableName("reltest1")); model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - model.setRelation(3, QSqlRelation(qTableName("reltest4"), "id", "name")); + model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); model.setSort(0, Qt::AscendingOrder); @@ -767,9 +689,7 @@ void tst_QSqlRelationalTableModel::clearDisplayValuesCache() model.setTable(qTableName("reltest1")); model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - - if (!db.driverName().startsWith("QTDS")) - model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); + model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); model.setSort(1, Qt::AscendingOrder); model.setEditStrategy(QSqlTableModel::OnManualSubmit); @@ -778,10 +698,7 @@ void tst_QSqlRelationalTableModel::clearDisplayValuesCache() QCOMPARE(model.data(model.index(3, 0)).toInt(), 3); QCOMPARE(model.data(model.index(3, 1)).toString(), QString("vohi")); QCOMPARE(model.data(model.index(3, 2)).toString(), QString("herr")); - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(3, 3)).toString(), QString("mister")); - else - QCOMPARE(model.data(model.index(3, 3)).toInt(), 2 ); + QCOMPARE(model.data(model.index(3, 3)).toString(), QString("mister")); model.insertRow(model.rowCount()); QVERIFY(model.setData(model.index(4, 0), 5, Qt::EditRole)); @@ -793,18 +710,11 @@ void tst_QSqlRelationalTableModel::clearDisplayValuesCache() QCOMPARE(model.data(model.index(0, 0)).toInt(), 5); QCOMPARE(model.data(model.index(0, 1)).toString(), QString("anders")); QCOMPARE(model.data(model.index(0, 2)).toString(), QString("herr")); - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(0, 3)).toString(), QString("herr")); - else - QCOMPARE(model.data(model.index(0, 3)).toInt(), 1); - + QCOMPARE(model.data(model.index(0, 3)).toString(), QString("herr")); QCOMPARE(model.data(model.index(4, 0)).toInt(), 3); QCOMPARE(model.data(model.index(4, 1)).toString(), QString("vohi")); QCOMPARE(model.data(model.index(4, 2)).toString(), QString("herr")); - if (!db.driverName().startsWith("QTDS")) - QCOMPARE(model.data(model.index(4, 3)).toString(), QString("mister")); - else - QCOMPARE(model.data(model.index(4, 3)).toInt(), 2); + QCOMPARE(model.data(model.index(4, 3)).toString(), QString("mister")); } // For task 140782 and 176374: If the main table and the the related tables uses the same @@ -819,38 +729,27 @@ void tst_QSqlRelationalTableModel::insertRecordDuplicateFieldNames() QSqlRelationalTableModel model(0, db); model.setTable(qTableName("reltest3")); model.setEditStrategy(QSqlTableModel::OnManualSubmit); - model.setSort(0, Qt::AscendingOrder); // Duplication of "name", used in both reltest3 and reltest4. model.setRelation(2, QSqlRelation(qTableName("reltest4"), "id", "name")); QVERIFY_SQL(model, select()); - if (db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) { - QCOMPARE(model.record(1).value(qTableName("reltest4").append(QLatin1String("_name")).toUpper()).toString(), - QString("Trondheim")); - } else { - QCOMPARE(model.record(1).value(qTableName("reltest4").append(QLatin1String("_name"))).toString(), + QCOMPARE(model.record(1).value(qTableName("reltest4").append(QLatin1String("_name"))).toString(), QString("Trondheim")); - } QSqlRecord rec = model.record(); rec.setValue(0, 3); rec.setValue(1, "Berge"); rec.setValue(2, 1); // Must insert the key value - if (db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) { - QCOMPARE(rec.fieldName(0), QLatin1String("ID")); - QCOMPARE(rec.fieldName(1), QLatin1String("NAME")); // This comes from main table - } else { - QCOMPARE(rec.fieldName(0), QLatin1String("id")); - QCOMPARE(rec.fieldName(1), QLatin1String("name")); - } + QCOMPARE(rec.fieldName(0), QLatin1String("id")); + QCOMPARE(rec.fieldName(1), QLatin1String("name")); // This comes from main table // The duplicate field names is aliased because it's comes from the relation's display column. - if(db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) - QCOMPARE(rec.fieldName(2), (qTableName("reltest4").append(QLatin1String("_name"))).toUpper()); - else + if(!db.driverName().startsWith("QIBASE")) QCOMPARE(rec.fieldName(2), qTableName("reltest4").append(QLatin1String("_name"))); + else + QCOMPARE(rec.fieldName(2), (qTableName("reltest4").append(QLatin1String("_name"))).toUpper()); QVERIFY(model.insertRecord(-1, rec)); QCOMPARE(model.data(model.index(2, 2)).toString(), QString("Oslo")); @@ -894,7 +793,7 @@ void tst_QSqlRelationalTableModel::relationModel() QVERIFY(model.relationModel(3) == NULL); QVERIFY(model.relationModel(4) == NULL); - model.setRelation(3, QSqlRelation(qTableName("reltest4"), "id", "name")); + model.setRelation(3, QSqlRelation(qTableName("reltest2"), "tid", "title")); QVERIFY_SQL(model, select()); QVERIFY(model.relationModel(0) == NULL); @@ -907,285 +806,5 @@ void tst_QSqlRelationalTableModel::relationModel() QCOMPARE(rel_model->data(rel_model->index(0,1)).toString(), QString("herr")); } -void tst_QSqlRelationalTableModel::casing() -{ - QFETCH_GLOBAL(QString, dbName); - QSqlDatabase db = QSqlDatabase::database(dbName); - CHECK_DATABASE(db); - - if (db.driverName().startsWith("QSQLITE")) - QSKIP("The casing test for SQLITE is irrelevant since SQLITE is case insensitive", SkipAll); - - QStringList tableNames; - tableNames << qTableName("CASETEST1", db.driver()).toUpper(); - tableNames << qTableName("casetest1", db.driver()); - tst_Databases::safeDropTables(db, tableNames); - - QSqlQuery q(db); - QVERIFY_SQL( q, exec("create table " + qTableName("CASETEST1", db.driver()).toUpper() + - " (id int not null primary key, name varchar(20), title_key int, another_title_key int)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("CASETEST1", db.driver()).toUpper() + " values(1, 'harry', 1, 2)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("CASETEST1", db.driver()).toUpper() + " values(2, 'trond', 2, 1)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("CASETEST1", db.driver()).toUpper() + " values(3, 'vohi', 1, 2)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("CASETEST1", db.driver()).toUpper() + " values(4, 'boris', 2, 2)")); - - QVERIFY_SQL( q, exec("create table " + qTableName("casetest1", db.driver()) + - " (ident int not null primary key, name varchar(20), title_key int)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("casetest1", db.driver()) + " values(1, 'jerry', 1)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("casetest1", db.driver()) + " values(2, 'george', 2)")); - QVERIFY_SQL( q, exec("insert into " + qTableName("casetest1", db.driver()) + " values(4, 'kramer', 2)")); - - if (db.driverName().startsWith("QOCI")) { - //try an owner that doesn't exist - QSqlRecord rec = db.driver()->record("doug." + qTableName("CASETEST1", db.driver()).toUpper()); - QCOMPARE( rec.count(), 0); - - //try an owner that does exist - rec = db.driver()->record(db.userName() + "." + qTableName("CASETEST1", db.driver()).toUpper()); - QCOMPARE( rec.count(), 4); - } - QSqlRecord rec = db.driver()->record(qTableName("CASETEST1", db.driver()).toUpper()); - QCOMPARE( rec.count(), 4); - - rec = db.driver()->record(qTableName("casetest1", db.driver())); - QCOMPARE( rec.count(), 3); - - QSqlTableModel upperCaseModel(0, db); - upperCaseModel.setTable(qTableName("CASETEST1", db.driver()).toUpper()); - - QCOMPARE(upperCaseModel.tableName(),qTableName("CASETEST1",db.driver()).toUpper()); - - QVERIFY_SQL(upperCaseModel, select()); - - QCOMPARE(upperCaseModel.rowCount(), 4); - - QSqlTableModel lowerCaseModel(0, db); - lowerCaseModel.setTable(qTableName("casetest1", db.driver())); - QCOMPARE(lowerCaseModel.tableName(), qTableName("casetest1",db.driver())); - QVERIFY_SQL(lowerCaseModel, select()); - - QCOMPARE(lowerCaseModel.rowCount(), 3); - - QSqlRelationalTableModel model(0, db); - model.setTable(qTableName("CASETEST1", db.driver()).toUpper()); - model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - QVERIFY_SQL(model, select()); - - QCOMPARE(model.data(model.index(0, 0)).toInt(), 1); - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("harry")); - QCOMPARE(model.data(model.index(0, 2)).toString(), QString("herr")); - - tst_Databases::safeDropTables(db, tableNames); -} - -void tst_QSqlRelationalTableModel::escapedRelations() -{ - QFETCH_GLOBAL(QString, dbName); - QSqlDatabase db = QSqlDatabase::database(dbName); - CHECK_DATABASE(db); - recreateTestTables(db); - - QSqlRelationalTableModel model(0, db); - model.setTable(qTableName("reltest1")); - - //try with relation table name quoted - if (db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) { - model.setRelation(2, QSqlRelation(db.driver()->escapeIdentifier(qTableName("reltest2").toUpper(),QSqlDriver::TableName), - "tid", - "title")); - } else { - model.setRelation(2, QSqlRelation(db.driver()->escapeIdentifier(qTableName("reltest2"),QSqlDriver::TableName), - "tid", - "title")); - - } - QVERIFY_SQL(model, select()); - - QCOMPARE(model.data(model.index(0, 0)).toInt(), 1); - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("harry")); - QCOMPARE(model.data(model.index(0, 2)).toString(), QString("herr")); - - //try with index column quoted - if (db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) { - model.setRelation(2, QSqlRelation(qTableName("reltest2"), - db.driver()->escapeIdentifier("tid", QSqlDriver::FieldName).toUpper(), - "title")); - } else { - model.setRelation(2, QSqlRelation(qTableName("reltest2"), - db.driver()->escapeIdentifier("tid", QSqlDriver::FieldName), - "title")); - } - QVERIFY_SQL(model, select()); - - QCOMPARE(model.data(model.index(0, 0)).toInt(), 1); - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("harry")); - QCOMPARE(model.data(model.index(0, 2)).toString(), QString("herr")); - - //try with display column quoted - - if (db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) { - - model.setRelation(2, QSqlRelation(qTableName("reltest2"), - "tid", - db.driver()->escapeIdentifier("title", QSqlDriver::FieldName).toUpper())); - } else { - model.setRelation(2, QSqlRelation(qTableName("reltest2"), - "tid", - db.driver()->escapeIdentifier("title", QSqlDriver::FieldName))); - } - - QVERIFY_SQL(model, select()); - - QCOMPARE(model.data(model.index(0, 0)).toInt(), 1); - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("harry")); - QCOMPARE(model.data(model.index(0, 2)).toString(), QString("herr")); - - //try with tablename and index and display columns quoted in the relation - - if (db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) { - model.setRelation(2, QSqlRelation(qTableName("reltest2"), - "tid", - db.driver()->escapeIdentifier("title", QSqlDriver::FieldName).toUpper())); - } else { - model.setRelation(2, QSqlRelation(qTableName("reltest2"), - "tid", - db.driver()->escapeIdentifier("title", QSqlDriver::FieldName))); - } - QVERIFY_SQL(model, select()); - - QCOMPARE(model.data(model.index(0, 0)).toInt(), 1); - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("harry")); - QCOMPARE(model.data(model.index(0, 2)).toString(), QString("herr")); -} - -void tst_QSqlRelationalTableModel::escapedTableName() -{ - QFETCH_GLOBAL(QString, dbName); - QSqlDatabase db = QSqlDatabase::database(dbName); - CHECK_DATABASE(db); - - // set the values using OnRowChange Strategy with an escaped tablename - { - QSqlRelationalTableModel model(0, db); - - if (db.driverName().startsWith("QIBASE") || db.driverName().startsWith("QOCI") || db.driverName().startsWith("QDB2")) { - model.setTable(db.driver()->escapeIdentifier(qTableName("reltest1").toUpper(), QSqlDriver::TableName)); - } else { - model.setTable(db.driver()->escapeIdentifier(qTableName("reltest1"), QSqlDriver::TableName)); - } - model.setSort(0, Qt::AscendingOrder); - model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - QVERIFY_SQL(model, select()); - - QVERIFY(model.setData(model.index(0, 1), QString("harry2"))); - QVERIFY(model.setData(model.index(0, 2), 2)); - - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("harry2")); - QCOMPARE(model.data(model.index(0, 2)).toString(), QString("mister")); - - model.submit(); - - QVERIFY(model.setData(model.index(3,1), QString("boris2"))); - QVERIFY(model.setData(model.index(3, 2), 1)); - - QCOMPARE(model.data(model.index(3,1)).toString(), QString("boris2")); - QCOMPARE(model.data(model.index(3, 2)).toString(), QString("herr")); - - model.submit(); - } - { //verify values - QSqlRelationalTableModel model(0, db); - model.setTable(qTableName("reltest1")); - model.setSort(0, Qt::AscendingOrder); - QVERIFY_SQL(model, select()); - - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("harry2")); - QCOMPARE(model.data(model.index(0, 2)).toInt(), 2); - QCOMPARE(model.data(model.index(3, 1)).toString(), QString("boris2")); - QCOMPARE(model.data(model.index(3, 2)).toInt(), 1); - - model.setRelation(2, QSqlRelation(qTableName("reltest2"), "tid", "title")); - QVERIFY_SQL(model, select()); - QCOMPARE(model.data(model.index(0, 2)).toString(), QString("mister")); - QCOMPARE(model.data(model.index(3,2)).toString(), QString("herr")); - - } -} - -void tst_QSqlRelationalTableModel::whiteSpaceInIdentifiers() { - - QFETCH_GLOBAL(QString, dbName); - QSqlDatabase db = QSqlDatabase::database(dbName); - CHECK_DATABASE(db); - - if (!testWhiteSpaceNames(db.driverName())) - QSKIP("White space test irrelevant for driver", SkipAll); - QSqlRelationalTableModel model(0, db); - model.setTable(db.driver()->escapeIdentifier(qTableName("rel test6"), QSqlDriver::TableName)); - model.setSort(0, Qt::DescendingOrder); - model.setRelation(1, QSqlRelation(db.driver()->escapeIdentifier(qTableName("rel test7"), QSqlDriver::TableName), - db.driver()->escapeIdentifier("city id", QSqlDriver::FieldName), - db.driver()->escapeIdentifier("city name", QSqlDriver::FieldName))); - QVERIFY_SQL(model, select()); - - QCOMPARE(model.data(model.index(0,1)).toString(), QString("Washington")); - QCOMPARE(model.data(model.index(1,1)).toString(), QString("New York")); - - QSqlRecord rec; - QSqlField f1("id", QVariant::Int); - QSqlField f2(db.driver()->escapeIdentifier("city key", QSqlDriver::FieldName), QVariant::Int); - QSqlField f3(db.driver()->escapeIdentifier("extra field", QSqlDriver::FieldName), QVariant::Int); - - f1.setValue(3); - f2.setValue(2); - f3.setValue(7); - - f1.setGenerated(true); - f2.setGenerated(true); - f3.setGenerated(true); - - rec.append(f1); - rec.append(f2); - rec.append(f3); - - QVERIFY_SQL(model, insertRecord(-1, rec)); - model.submitAll(); - - QCOMPARE(model.data(model.index(0, 0)).toInt(), 3); - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("Washington")); - QCOMPARE(model.data(model.index(0, 2)).toInt(), 7); - - //TODO: For some reson setting a record using manual submit fails - //model.setEditStrategy(QSqlTableModel::OnManualSubmit); - - QSqlRecord recNew; - QSqlField f1New("id", QVariant::Int); - QSqlField f2New(db.driver()->escapeIdentifier("city key", QSqlDriver::FieldName), QVariant::Int); - QSqlField f3New(db.driver()->escapeIdentifier("extra field", QSqlDriver::FieldName), QVariant::Int); - - f1New.setValue(4); - f2New.setValue(1); - f3New.setValue(6); - - f1New.setGenerated(true); - f2New.setGenerated(true); - f3New.setGenerated(true); - - recNew.append(f1New); - recNew.append(f2New); - recNew.append(f3New); - - QVERIFY_SQL(model, setRecord(0, recNew)); - - QCOMPARE(model.data(model.index(0, 0)).toInt(), 4); - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("New York")); - QCOMPARE(model.data(model.index(0, 2)).toInt(), 6); - - QVERIFY_SQL(model, submitAll()); - QCOMPARE(model.data(model.index(0, 0)).toInt(), 4); - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("New York")); - QCOMPARE(model.data(model.index(0, 2)).toInt(), 6); -} - QTEST_MAIN(tst_QSqlRelationalTableModel) #include "tst_qsqlrelationaltablemodel.moc" diff --git a/tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp b/tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp index 0e7355e..d4affe4 100644 --- a/tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp +++ b/tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp @@ -145,7 +145,7 @@ void tst_QSqlTableModel::dropTestTables() << qTableName("bigtable") << qTableName("foo"); if (testWhiteSpaceNames(db.driverName())) - tableNames << qTableName("qtestw hitespace", db.driver()); + tableNames << qTableName("qtestw hitespace"); tst_Databases::safeDropTables(db, tableNames); @@ -277,7 +277,6 @@ void tst_QSqlTableModel::setRecord() QList policies = QList() << QSqlTableModel::OnFieldChange << QSqlTableModel::OnRowChange << QSqlTableModel::OnManualSubmit; - QString Xsuffix; foreach( QSqlTableModel::EditStrategy submitpolicy, policies) { QSqlTableModel model(0, db); @@ -296,8 +295,6 @@ void tst_QSqlTableModel::setRecord() if ((QSqlTableModel::EditStrategy)submitpolicy == QSqlTableModel::OnManualSubmit) QVERIFY(model.submitAll()); - else if ((QSqlTableModel::EditStrategy)submitpolicy == QSqlTableModel::OnRowChange && i == model.rowCount() -1) - model.submit(); else { // dataChanged() is not emitted when submitAll() is called QCOMPARE(spy.count(), 2); @@ -307,12 +304,10 @@ void tst_QSqlTableModel::setRecord() } } - Xsuffix.append('X'); - - QCOMPARE(model.data(model.index(0, 1)).toString(), QString("foo").append(Xsuffix)); - QCOMPARE(model.data(model.index(0, 2)).toString(), QString("bar").append(Xsuffix)); - QCOMPARE(model.data(model.index(1, 1)).toString(), QString("baz").append(Xsuffix)); - QCOMPARE(model.data(model.index(1, 2)).toString(), QString("joe").append(Xsuffix)); + QCOMPARE(model.data(model.index(0, 1)).toString(), QString("fooX")); + QCOMPARE(model.data(model.index(0, 2)).toString(), QString("barX")); + QCOMPARE(model.data(model.index(1, 1)).toString(), QString("bazX")); + QCOMPARE(model.data(model.index(1, 2)).toString(), QString("joeX")); } } -- cgit v0.12 From ced6ba7eee785caa7ba89d50f1a02f7f3994c839 Mon Sep 17 00:00:00 2001 From: Derick Hawcroft Date: Mon, 15 Jun 2009 16:29:38 +1000 Subject: unit test for task 229811 --- tests/auto/qsqlquery/tst_qsqlquery.cpp | 62 ++++++++++++++++++++++++++++++---- 1 file changed, 55 insertions(+), 7 deletions(-) diff --git a/tests/auto/qsqlquery/tst_qsqlquery.cpp b/tests/auto/qsqlquery/tst_qsqlquery.cpp index 7f97972..ab0c43c 100644 --- a/tests/auto/qsqlquery/tst_qsqlquery.cpp +++ b/tests/auto/qsqlquery/tst_qsqlquery.cpp @@ -177,6 +177,9 @@ private slots: #ifdef NOT_READY_YET void task_217003_data() { generic_data(); } void task_217003(); + + void task_229811(); + void task_229811_data() { generic_data(); } #endif void task_250026_data() { generic_data("QODBC"); } void task_250026(); @@ -184,7 +187,6 @@ private slots: void task_205701(); - private: // returns all database connections void generic_data(const QString &engine=QString()); @@ -2715,12 +2717,12 @@ void tst_QSqlQuery::task_250026() void tst_QSqlQuery::task_205701() { - QSqlDatabase qsdb = QSqlDatabase::addDatabase("QMYSQL", "atest"); - qsdb.setHostName("test"); - qsdb.setDatabaseName("test"); - qsdb.setUserName("test"); - qsdb.setPassword("test"); - qsdb.open(); + QSqlDatabase qsdb = QSqlDatabase::addDatabase("QMYSQL", "atest"); + qsdb.setHostName("test"); + qsdb.setDatabaseName("test"); + qsdb.setUserName("test"); + qsdb.setPassword("test"); + qsdb.open(); // { QSqlQuery query(qsdb); @@ -2728,6 +2730,52 @@ void tst_QSqlQuery::task_205701() QSqlDatabase::removeDatabase("atest"); } +#ifdef NOT_READY_YET +// For task: 229811 +void tst_QSqlQuery::task_229811() +{ + QFETCH( QString, dbName ); + QSqlDatabase db = QSqlDatabase::database( dbName ); + CHECK_DATABASE( db ); + + if (!db.driverName().startsWith( "QODBC" )) return; + + QSqlQuery q( db ); + + QString tableName = qTableName( "task_229811" ); + + if ( !q.exec( "CREATE TABLE " + tableName + " (Word varchar(20))" ) ) { + qDebug() << "Warning" << q.lastError(); + } + + QVERIFY_SQL( q, exec( "INSERT INTO " + tableName + " values ('Albert')" ) ); + QVERIFY_SQL( q, exec( "INSERT INTO " + tableName + " values ('Beehive')" ) ); + QVERIFY_SQL( q, exec( "INSERT INTO " + tableName + " values ('Alimony')" ) ); + QVERIFY_SQL( q, exec( "INSERT INTO " + tableName + " values ('Bohemian')" ) ); + QVERIFY_SQL( q, exec( "INSERT INTO " + tableName + " values ('AllStars')" ) ); + + + QString stmt = "SELECT * FROM " + tableName + " WHERE Word LIKE :name"; + QVERIFY_SQL(q,prepare(stmt)); + q.bindValue(":name", "A%"); + QVERIFY_SQL(q,exec()); + + QVERIFY(q.isActive()); + QVERIFY(q.isSelect()); + QVERIFY(q.first()); + + QSqlRecord rec = q.record(); + QCOMPARE(rec.field(0).value().toString(), QString("Albert")); + QVERIFY(q.next()); + rec = q.record(); + QCOMPARE(rec.field(0).value().toString(), QString("Alimony")); + QVERIFY(q.next()); + rec = q.record(); + QCOMPARE(rec.field(0).value().toString(),QString("AllStars")); + + q.exec("DROP TABLE " + tableName ); +} +#endif QTEST_MAIN( tst_QSqlQuery ) #include "tst_qsqlquery.moc" -- cgit v0.12 From b3743d1df735d4b46f45e034818bbfe45bf8d22e Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 12 Jun 2009 18:21:00 +0200 Subject: properly indent embedded awk code Reviewed-by: TrustMe --- configure | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/configure b/configure index 4cf7499..ece117b 100755 --- a/configure +++ b/configure @@ -7035,9 +7035,9 @@ BEGIN { FNR == 1 { if ( input_file ) { - if ( ! target_file ) - target_file = third - print input_file >target_file + if ( ! target_file ) + target_file = third + print input_file >target_file } matched_target = 0 @@ -7048,32 +7048,32 @@ FNR == 1 { /^(TARGET.*=)/ { if ( \$3 == "moc" || \$3 ~ /^Qt/ ) { - target_file = first + target_file = first matched_target = 1 } } matched_target == 0 && /^(TEMPLATE.*=)/ { if ( \$3 == "subdirs" ) - target_file = second + target_file = second else if ( \$3 == "lib" ) - template_lib = 1 + template_lib = 1 else - target_file = third + target_file = third } matched_target == 0 && template_lib == 1 && /^(CONFIG.*=)/ { if ( \$0 ~ /plugin/ ) target_file = third else - target_file = second + target_file = second } END { if ( input_file ) { - if ( ! target_file ) - target_file = third - print input_file >>target_file + if ( ! target_file ) + target_file = third + print input_file >>target_file } } -- cgit v0.12 From 98899a4122565090640672d9aae2c37315f186ce Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 12 Jun 2009 20:49:24 +0200 Subject: fix qm build so "qmake -r && make" worked fine ... but configure does not simply run "qmake -r". also, now we have to build lrelease even when we don't build the other tools. Reviewed-by: Jason McDonald Reviewed-by: mariusSO --- configure | 4 ++++ projects.pro | 8 +++++++- tools/configure/configureapp.cpp | 1 + 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/configure b/configure index ece117b..5a162ee 100755 --- a/configure +++ b/configure @@ -7050,6 +7050,9 @@ FNR == 1 { if ( \$3 == "moc" || \$3 ~ /^Qt/ ) { target_file = first matched_target = 1 + } else if ( \$3 == "lrelease" || \$3 == "qm_phony_target" ) { + target_file = second + matched_target = 1 } } @@ -7134,6 +7137,7 @@ for part in $CFG_BUILD_PARTS; do case "$part" in tools) PART_ROOTS="$PART_ROOTS tools" ;; libs) PART_ROOTS="$PART_ROOTS src" ;; + translations) PART_ROOTS="$PART_ROOTS tools/linguist/lrelease translations" ;; examples) PART_ROOTS="$PART_ROOTS examples demos" ;; *) ;; esac diff --git a/projects.pro b/projects.pro index 03ce098..fc53100 100644 --- a/projects.pro +++ b/projects.pro @@ -10,6 +10,10 @@ cross_compile: CONFIG += nostrip isEmpty(QT_BUILD_PARTS) { #defaults QT_BUILD_PARTS = libs tools examples demos docs translations } else { #make sure the order makes sense + contains(QT_BUILD_PARTS, translations) { + QT_BUILD_PARTS -= translations + QT_BUILD_PARTS = translations $$QT_BUILD_PARTS + } contains(QT_BUILD_PARTS, tools) { QT_BUILD_PARTS -= tools QT_BUILD_PARTS = tools $$QT_BUILD_PARTS @@ -39,8 +43,10 @@ for(PROJECT, $$list($$lower($$unique(QT_BUILD_PARTS)))) { } else:isEqual(PROJECT, translations) { contains(QT_BUILD_PARTS, tools) { include(translations/translations.pri) # ts targets - SUBDIRS += translations # qm build step + } else { + SUBDIRS += tools/linguist/lrelease } + SUBDIRS += translations # qm build step } else:isEqual(PROJECT, qmake) { # SUBDIRS += qmake } else { diff --git a/tools/configure/configureapp.cpp b/tools/configure/configureapp.cpp index b9d172f..00a93c1 100644 --- a/tools/configure/configureapp.cpp +++ b/tools/configure/configureapp.cpp @@ -3142,6 +3142,7 @@ void Configure::buildHostTools() << "src/tools/moc" << "src/tools/rcc" << "src/tools/uic" + << "tools/linguist/lrelease" << "tools/checksdk"; if (dictionary[ "CETEST" ] == "yes") -- cgit v0.12 From f3b534e5cdbcf7ed1bdd0dc3c258d26a8a3a87ab Mon Sep 17 00:00:00 2001 From: kh Date: Mon, 15 Jun 2009 12:00:45 +0200 Subject: We only need to filename, not the full path. Reviewed-by: kh --- tools/assistant/lib/qhelpgenerator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/assistant/lib/qhelpgenerator.cpp b/tools/assistant/lib/qhelpgenerator.cpp index 8512adb..64d9f19 100644 --- a/tools/assistant/lib/qhelpgenerator.cpp +++ b/tools/assistant/lib/qhelpgenerator.cpp @@ -533,7 +533,7 @@ bool QHelpGenerator::insertFiles(const QStringList &files, const QString &rootPa stream.setCodec(QTextCodec::codecForName(charSet.toLatin1().constData())); title = QHelpGlobal::documentTitle(stream.readAll()); } else { - title = fi.fileName(); + title = fileName.mid(fileName.lastIndexOf(QLatin1Char('/')) + 1); } int fileId = -1; -- cgit v0.12 From 86b8daf2a0348be875cbd0b330ab7773f55a35dc Mon Sep 17 00:00:00 2001 From: Kent Hansen Date: Mon, 15 Jun 2009 13:54:44 +0200 Subject: make qscript unit tests not crash when test files are not found --- .../qscriptjstestsuite/tst_qscriptjstestsuite.cpp | 8 ++++--- .../qscriptv8testsuite/tst_qscriptv8testsuite.cpp | 26 +++++++++++----------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/tests/auto/qscriptjstestsuite/tst_qscriptjstestsuite.cpp b/tests/auto/qscriptjstestsuite/tst_qscriptjstestsuite.cpp index fbb0ba5..4807b3f 100644 --- a/tests/auto/qscriptjstestsuite/tst_qscriptjstestsuite.cpp +++ b/tests/auto/qscriptjstestsuite/tst_qscriptjstestsuite.cpp @@ -390,9 +390,9 @@ int tst_Suite::qt_metacall(QMetaObject::Call _c, int _id, void **_a) tst_Suite::tst_Suite() { testsDir = QDir("."); - if (!testsDir.cd("tests")) { + bool testsFound = testsDir.cd("tests"); + if (!testsFound) { qWarning("*** no tests/ dir!"); - return; } QString willFixInNextReleaseMessage = QString::fromLatin1("Will fix in next release"); @@ -802,7 +802,9 @@ tst_Suite::tst_Suite() // don't execute any tests on slow machines #if !defined(Q_OS_IRIX) // do all the test suites - QFileInfoList testSuiteDirInfos = testsDir.entryInfoList(QDir::AllDirs | QDir::NoDotAndDotDot); + QFileInfoList testSuiteDirInfos; + if (testsFound) + testSuiteDirInfos = testsDir.entryInfoList(QDir::AllDirs | QDir::NoDotAndDotDot); foreach (QFileInfo tsdi, testSuiteDirInfos) { QDir testSuiteDir(tsdi.absoluteFilePath()); // do all the dirs in the test suite diff --git a/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp b/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp index 435af41..92027e6 100644 --- a/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp +++ b/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp @@ -194,20 +194,18 @@ int tst_Suite::qt_metacall(QMetaObject::Call _c, int _id, void **_a) tst_Suite::tst_Suite() { testsDir = QDir("."); - if (!testsDir.cd("tests")) { + bool testsFound = testsDir.cd("tests"); + if (!testsFound) { qWarning("*** no tests/ dir!"); - return; - } - if (!testsDir.exists("mjsunit.js")) { - qWarning("*** no tests/mjsunit.js file!"); - return; - } - mjsunitContents = readFile(testsDir.absoluteFilePath("mjsunit.js")); - if (mjsunitContents.isEmpty()) { - qWarning("*** tests/mjsunit.js is empty!"); - return; + } else { + if (!testsDir.exists("mjsunit.js")) + qWarning("*** no tests/mjsunit.js file!"); + else { + mjsunitContents = readFile(testsDir.absoluteFilePath("mjsunit.js")); + if (mjsunitContents.isEmpty()) + qWarning("*** tests/mjsunit.js is empty!"); + } } - QString willFixInNextReleaseMessage = QString::fromLatin1("Will fix in next release"); addExpectedFailure("apply", "morundefineder", "morseper", willFixInNextReleaseMessage); addExpectedFailure("arguments-enum", "2", "0", willFixInNextReleaseMessage); @@ -270,7 +268,9 @@ tst_Suite::tst_Suite() appendCString(stringdata, "tst_Suite"); appendCString(stringdata, ""); - QFileInfoList testFileInfos = testsDir.entryInfoList(QStringList() << "*.js", QDir::Files); + QFileInfoList testFileInfos; + if (testsFound) + testFileInfos = testsDir.entryInfoList(QStringList() << "*.js", QDir::Files); foreach (QFileInfo tfi, testFileInfos) { QString name = tfi.baseName(); // slot: signature, parameters, type, tag, flags -- cgit v0.12 From e4c224f0ef1b57a1389148b78d236349603503a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Morten=20S=C3=B8rvig?= Date: Mon, 15 Jun 2009 14:18:46 +0200 Subject: Rename nsCursorForQCursor -> qt_mac_nsCursorForQCursor. Reviewed-by: Richard Moe Gustavsen --- src/gui/kernel/qcocoaview_mac.mm | 2 +- src/gui/kernel/qcursor.h | 3 +-- src/gui/kernel/qcursor_mac.mm | 2 +- src/gui/kernel/qcursor_p.h | 1 + 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gui/kernel/qcocoaview_mac.mm b/src/gui/kernel/qcocoaview_mac.mm index f1a7f39..90ae60a 100644 --- a/src/gui/kernel/qcocoaview_mac.mm +++ b/src/gui/kernel/qcocoaview_mac.mm @@ -257,7 +257,7 @@ extern "C" { } QRegion mask = qt_widget_private(cursorWidget)->extra->mask; - NSCursor *nscursor = static_cast(nsCursorForQCursor(cursorWidget->cursor())); + NSCursor *nscursor = static_cast(qt_mac_nsCursorForQCursor(cursorWidget->cursor())); if (mask.isEmpty()) { [self addCursorRect:[qt_mac_nativeview_for(cursorWidget) visibleRect] cursor:nscursor]; } else { diff --git a/src/gui/kernel/qcursor.h b/src/gui/kernel/qcursor.h index ad1860d..81e1e18 100644 --- a/src/gui/kernel/qcursor.h +++ b/src/gui/kernel/qcursor.h @@ -77,7 +77,6 @@ class QBitmap; class QPixmap; #if defined(Q_WS_MAC) -void *nsCursorForQCursor(const QCursor &c); void qt_mac_set_cursor(const QCursor *c, const QPoint &p); #endif @@ -129,7 +128,7 @@ public: private: QCursorData *d; #if defined(Q_WS_MAC) - friend void *nsCursorForQCursor(const QCursor &c); + friend void *qt_mac_nsCursorForQCursor(const QCursor &c); friend void qt_mac_set_cursor(const QCursor *c, const QPoint &p); #endif }; diff --git a/src/gui/kernel/qcursor_mac.mm b/src/gui/kernel/qcursor_mac.mm index ae98f2e..545a9e2 100644 --- a/src/gui/kernel/qcursor_mac.mm +++ b/src/gui/kernel/qcursor_mac.mm @@ -95,7 +95,7 @@ protected: } }; -void *nsCursorForQCursor(const QCursor &c) +void *qt_mac_nsCursorForQCursor(const QCursor &c) { c.d->update(); return [[static_cast(c.d->curs.cp.nscursor) retain] autorelease]; diff --git a/src/gui/kernel/qcursor_p.h b/src/gui/kernel/qcursor_p.h index 42682ac..ba7655b 100644 --- a/src/gui/kernel/qcursor_p.h +++ b/src/gui/kernel/qcursor_p.h @@ -69,6 +69,7 @@ QT_BEGIN_NAMESPACE #if defined (Q_WS_MAC) +void *qt_mac_nsCursorForQCursor(const QCursor &c); class QMacAnimateCursor; #endif -- cgit v0.12 From c185a351d7b72812b5f93163ee43edd73784522c Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 15 Jun 2009 14:19:57 +0200 Subject: make qm target work when the freshly built Qt is not in the library search path unlike moc and uic, lrelease is not statically built, so when building without RPATH, we need to ensure that our libraries are found first. Reviewed-by: mariusSO --- translations/translations.pro | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/translations/translations.pro b/translations/translations.pro index d1962fe..6f14108 100644 --- a/translations/translations.pro +++ b/translations/translations.pro @@ -1,7 +1,16 @@ TRANSLATIONS = $$files(*.ts) LRELEASE = $$QT_BUILD_TREE/bin/lrelease -win32:LRELEASE ~= s|/|\|g +win32 { + LRELEASE ~= s|/|\|g +} else:!static { + path = $$QT_BUILD_TREE/lib + !macx:var = LD_LIBRARY_PATH + else:qt_no_framework:var = DYLD_LIBRARY_PATH + else:var = DYLD_FRAMEWORK_PATH + + LRELEASE = test -z \"\$\$$$var\" && $$var=$$path || $$var=$$path:\$\$$$var; export $$var; $$LRELEASE +} contains(TEMPLATE_PREFIX, vc):vcproj = 1 @@ -14,7 +23,7 @@ LIBS = updateqm.input = TRANSLATIONS updateqm.output = ${QMAKE_FILE_BASE}.qm isEmpty(vcproj):updateqm.variable_out = PRE_TARGETDEPS -updateqm.commands = $$LRELEASE ${QMAKE_FILE_IN} -qm ${QMAKE_FILE_OUT} +updateqm.commands = @echo lrelease ${QMAKE_FILE_IN}; $$LRELEASE ${QMAKE_FILE_IN} -qm ${QMAKE_FILE_OUT} updateqm.name = LRELEASE ${QMAKE_FILE_IN} updateqm.CONFIG += no_link QMAKE_EXTRA_COMPILERS += updateqm -- cgit v0.12 From dfe63cc0056a6592a4fb4e5c725c4ea0ed10ba20 Mon Sep 17 00:00:00 2001 From: Marius Storm-Olsen Date: Mon, 15 Jun 2009 15:33:44 +0200 Subject: New binary for configure.exe Reviewed-by: trustme --- configure.exe | Bin 856064 -> 856064 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/configure.exe b/configure.exe index 9da5c60..c7e09fc 100644 Binary files a/configure.exe and b/configure.exe differ -- cgit v0.12 From 7f374e0d94230c6742b9ef8bf422f7849e0fc013 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Mon, 15 Jun 2009 17:08:34 +0200 Subject: Fix wrong comparator in QSslCertificatePrivate::QByteArray_from_X509 Because less-than instead of less-or-equal-than was used, the last line of a PEM encoding was not built when the raw length was multiple of 64. Task-number: 256066 Reviewed-by: mariusSO --- src/network/ssl/qsslcertificate.cpp | 2 +- tests/auto/qsslcertificate/tst_qsslcertificate.cpp | 38 ++++++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/src/network/ssl/qsslcertificate.cpp b/src/network/ssl/qsslcertificate.cpp index ccb3f06..21d5a33 100644 --- a/src/network/ssl/qsslcertificate.cpp +++ b/src/network/ssl/qsslcertificate.cpp @@ -610,7 +610,7 @@ QByteArray QSslCertificatePrivate::QByteArray_from_X509(X509 *x509, QSsl::Encodi // Convert to Base64 - wrap at 64 characters. array = array.toBase64(); QByteArray tmp; - for (int i = 0; i < array.size() - 64; i += 64) { + for (int i = 0; i <= array.size() - 64; i += 64) { tmp += QByteArray::fromRawData(array.data() + i, 64); tmp += "\n"; } diff --git a/tests/auto/qsslcertificate/tst_qsslcertificate.cpp b/tests/auto/qsslcertificate/tst_qsslcertificate.cpp index 6f50fc4..46b8686 100644 --- a/tests/auto/qsslcertificate/tst_qsslcertificate.cpp +++ b/tests/auto/qsslcertificate/tst_qsslcertificate.cpp @@ -99,6 +99,7 @@ private slots: void fromPath_data(); void fromPath(); void certInfo(); + void task256066toPem(); // ### add tests for certificate bundles (multiple certificates concatenated into a single // structure); both PEM and DER formatted #endif @@ -689,6 +690,43 @@ void tst_QSslCertificate::certInfo() QCOMPARE(cert, QSslCertificate(QByteArray::fromHex(der), QSsl::Der)); } +void tst_QSslCertificate::task256066toPem() +{ + // a certificate whose PEM encoding's length is a multiple of 64 + const char *mycert = "-----BEGIN CERTIFICATE-----\n" \ + "MIIEGjCCAwKgAwIBAgIESikYSjANBgkqhkiG9w0BAQUFADBbMQswCQYDVQQGEwJF\n" \ + "RTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEPMA0GA1UECxMG\n" \ + "RVNURUlEMRcwFQYDVQQDEw5FU1RFSUQtU0sgMjAwNzAeFw0wOTA2MDUxMzA2MTha\n" \ + "Fw0xNDA2MDkyMTAwMDBaMIGRMQswCQYDVQQGEwJFRTEPMA0GA1UEChMGRVNURUlE\n" \ + "MRcwFQYDVQQLEw5hdXRoZW50aWNhdGlvbjEhMB8GA1UEAxMYSEVJQkVSRyxTVkVO\n" \ + "LDM3NzA5MjcwMjg1MRAwDgYDVQQEEwdIRUlCRVJHMQ0wCwYDVQQqEwRTVkVOMRQw\n" \ + "EgYDVQQFEwszNzcwOTI3MDI4NTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA\n" \ + "k2Euwhm34vu1jOFp02J5fQRx9LW2C7x78CbJ7yInoAKn7QR8UdxTU7mJk90Opejo\n" \ + "71RUi2/aYl4jCr9gr99v2YoLufMRwAuqdmwmwqH1WAHRUtIcD0oPdKyelmmn9ig0\n" \ + "RV+yJLNT3dnyrwPw+uuzDe3DeKepGKE4lxexliCaAx0CAyCMW6OCATEwggEtMA4G\n" \ + "A1UdDwEB/wQEAwIEsDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUHAwQwPAYD\n" \ + "VR0fBDUwMzAxoC+gLYYraHR0cDovL3d3dy5zay5lZS9jcmxzL2VzdGVpZC9lc3Rl\n" \ + "aWQyMDA3LmNybDAgBgNVHREEGTAXgRVzdmVuLmhlaWJlcmdAZWVzdGkuZWUwUQYD\n" \ + "VR0gBEowSDBGBgsrBgEEAc4fAQEBATA3MBIGCCsGAQUFBwICMAYaBG5vbmUwIQYI\n" \ + "KwYBBQUHAgEWFWh0dHA6Ly93d3cuc2suZWUvY3BzLzAfBgNVHSMEGDAWgBRIBt6+\n" \ + "jIdXlYB4Y/qcIysroDoYdTAdBgNVHQ4EFgQUKCjpDf+LcvL6AH0QOiW6rMTtB/0w\n" \ + "CQYDVR0TBAIwADANBgkqhkiG9w0BAQUFAAOCAQEABRyRuUm9zt8V27WuNeXtCDmU\n" \ + "MGzA6g4QXNAd2nxFzT3k+kNzzQTOcgRdmjiEPuK49On+GWnBr/5MSBNhbCJVPWr/\n" \ + "yym1UYTBisaqhRt/N/kwZqd0bHeLJk+ZxSePXRyqkp9H8KPWqz7H+O/FxRS4ffxo\n" \ + "Q9Clem+e0bcjNlL5xXiRGycBeZq8cKj+0+A/UuattznQlvHdlCEsSeu1fPOORqFV\n" \ + "fZur4HC31lQD7xVvETLiL83CtOQC78+29XPD6Zlrrc5OF2yibSVParY19b8Zh6yu\n" \ + "p1dNvN8pBgXGrsyxRonwHooV2ghGNmGILkpdvlQfnxeCUg4erfHjDdSY9vmT7w==\n" \ + "-----END CERTIFICATE-----\n"; + + QByteArray pem1(mycert); + QSslCertificate cert1(pem1); + QVERIFY(!cert1.isNull()); + QByteArray pem2(cert1.toPem()); + QSslCertificate cert2(pem2); + QVERIFY(!cert2.isNull()); + QCOMPARE(pem1, pem2); +} + #endif // QT_NO_OPENSSL QTEST_MAIN(tst_QSslCertificate) -- cgit v0.12 From 6e4fbda4938ba17a398d15ec0697c8dbb9b9fc40 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Mon, 15 Jun 2009 17:52:51 +0200 Subject: QFile: Doc was pointing to deprecated QIODevice::isSequentialAccess() Changed to QIODevice::isSequential() Reviewed-by: TrustMe --- src/corelib/io/qfile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/corelib/io/qfile.cpp b/src/corelib/io/qfile.cpp index 10b812b..cc93e8b 100644 --- a/src/corelib/io/qfile.cpp +++ b/src/corelib/io/qfile.cpp @@ -1026,7 +1026,7 @@ bool QFile::open(OpenMode mode) \bold{Warning:} \list 1 \o If \a fh is \c stdin, \c stdout, or \c stderr, you may not be able - to seek(). See QIODevice::isSequentialAccess() for more information. + to seek(). See QIODevice::isSequential() for more information. \o Since this function opens the file without specifying the file name, you cannot use this QFile with a QFileInfo. \endlist -- cgit v0.12 From 71d6b7bdd171667551f371cadae92a424a06fe73 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 15 Jun 2009 13:23:36 +0200 Subject: remove pointless pris --- tools/linguist/lrelease/lrelease.pro | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/linguist/lrelease/lrelease.pro b/tools/linguist/lrelease/lrelease.pro index 03ea0d0..01091b3 100644 --- a/tools/linguist/lrelease/lrelease.pro +++ b/tools/linguist/lrelease/lrelease.pro @@ -15,10 +15,8 @@ build_all:!build_pass { DEFINES += QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII SOURCES += main.cpp -include(../../../src/qt_professional.pri) include(../shared/formats.pri) include(../shared/proparser.pri) -include(../shared/translatortools.pri) target.path=$$[QT_INSTALL_BINS] INSTALLS += target -- cgit v0.12 From 791591effe3c9af8490807043b7ca86c0836990e Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 15 Jun 2009 13:55:08 +0200 Subject: remove unused includes --- tools/linguist/shared/numerus.cpp | 1 - tools/linguist/shared/translator.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/tools/linguist/shared/numerus.cpp b/tools/linguist/shared/numerus.cpp index c0960da..de81ee8 100644 --- a/tools/linguist/shared/numerus.cpp +++ b/tools/linguist/shared/numerus.cpp @@ -41,7 +41,6 @@ #include "translator.h" -#include #include #include #include diff --git a/tools/linguist/shared/translator.cpp b/tools/linguist/shared/translator.cpp index 312bb71..0c18b63 100644 --- a/tools/linguist/shared/translator.cpp +++ b/tools/linguist/shared/translator.cpp @@ -45,7 +45,6 @@ #include -#include #include #include #include -- cgit v0.12 From 9392acd40fc0102b6924c286fd6dbbc32244365b Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 15 Jun 2009 13:55:25 +0200 Subject: no point in ProFile being a QObject --- tools/linguist/shared/proitems.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tools/linguist/shared/proitems.h b/tools/linguist/shared/proitems.h index befaa88..21550e4 100644 --- a/tools/linguist/shared/proitems.h +++ b/tools/linguist/shared/proitems.h @@ -42,7 +42,6 @@ #ifndef PROITEMS_H #define PROITEMS_H -#include #include #include @@ -207,10 +206,8 @@ private: OperatorKind m_operatorKind; }; -class ProFile : public QObject, public ProBlock +class ProFile : public ProBlock { - Q_OBJECT - public: explicit ProFile(const QString &fileName); ~ProFile(); -- cgit v0.12 From 4aee3ada19e83f9802832b6e31dcffccb1693522 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Mon, 15 Jun 2009 18:48:36 +0200 Subject: ignore some more --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 0de9563..f088c69 100644 --- a/.gitignore +++ b/.gitignore @@ -92,6 +92,7 @@ tests/auto/qresourceengine/runtime_resource.rcc tools/qdoc3/qdoc3* tools/qtestlib/updater/updater* tools/activeqt/testcon/testcon.tlb +translations/*.qm qrc_*.cpp # xemacs temporary files @@ -169,6 +170,7 @@ doc/qch doc-build .rcc .pch +qtc-debugging-helper src/corelib/lib src/network/lib src/xml/lib/ -- cgit v0.12 From 3fd25c90fab85fc6aa9949311b13992c63ba7345 Mon Sep 17 00:00:00 2001 From: audiofanatic Date: Mon, 15 Jun 2009 20:23:49 +0200 Subject: Force line buffering for stdout so it stays in sync better with stderr (which is unbuffered) Task-number: 254786 Merge-request: 610 Reviewed-by: Oswald Buddenhagen --- qmake/main.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/qmake/main.cpp b/qmake/main.cpp index fe274c4..7da66ac 100644 --- a/qmake/main.cpp +++ b/qmake/main.cpp @@ -84,6 +84,13 @@ bool qmake_setpwd(const QString &p) int runQMake(int argc, char **argv) { + // stderr is unbuffered by default, but stdout buffering depends on whether + // there is a terminal attached. Buffering can make output from stderr and stdout + // appear out of sync, so force stdout to be line buffered to minimize this without + // hurting performance too much (if at all). This is particularly important for + // things like QtCreator and scripted builds. + setvbuf(stdout, (char *)NULL, _IOLBF, 0); + // parse command line int ret = Option::init(argc, argv); if(ret != Option::QMAKE_CMDLINE_SUCCESS) { -- cgit v0.12 From efb335ea2623c6261810c1594aeda5b655d1f89e Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Tue, 16 Jun 2009 10:35:49 +1000 Subject: Add Qt 4.4.0 linux-gcc-ia32 testdata to bic test and make the bic test code more maintainable. Stop hardcoding the list of versions to test. Note that this test currenty FAILS because QGraphicsProxyWidget vtable size has changed from 4.4 -> 4.5. --- .../bic/data/Qt3Support.4.4.0.linux-gcc-ia32.txt | 27829 +++++++++++++++++++ .../auto/bic/data/QtCore.4.4.0.linux-gcc-ia32.txt | 4493 +++ .../auto/bic/data/QtDBus.4.4.0.linux-gcc-ia32.txt | 5260 ++++ .../bic/data/QtDesigner.4.4.0.linux-gcc-ia32.txt | 6940 +++++ tests/auto/bic/data/QtGui.4.4.0.linux-gcc-ia32.txt | 18398 ++++++++++++ .../bic/data/QtNetwork.4.4.0.linux-gcc-ia32.txt | 5155 ++++ .../bic/data/QtOpenGL.4.4.0.linux-gcc-ia32.txt | 18572 +++++++++++++ .../bic/data/QtScript.4.4.0.linux-gcc-ia32.txt | 4710 ++++ tests/auto/bic/data/QtSql.4.4.0.linux-gcc-ia32.txt | 4900 ++++ tests/auto/bic/data/QtSvg.4.4.0.linux-gcc-ia32.txt | 18588 +++++++++++++ .../auto/bic/data/QtTest.4.4.0.linux-gcc-ia32.txt | 4594 +++ tests/auto/bic/data/QtXml.4.4.0.linux-gcc-ia32.txt | 4953 ++++ .../data/QtXmlPatterns.4.4.0.linux-gcc-ia32.txt | 5467 ++++ tests/auto/bic/tst_bic.cpp | 65 +- 14 files changed, 129891 insertions(+), 33 deletions(-) create mode 100644 tests/auto/bic/data/Qt3Support.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtCore.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtDBus.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtDesigner.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtGui.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtNetwork.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtOpenGL.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtScript.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtSql.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtSvg.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtTest.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtXml.4.4.0.linux-gcc-ia32.txt create mode 100644 tests/auto/bic/data/QtXmlPatterns.4.4.0.linux-gcc-ia32.txt diff --git a/tests/auto/bic/data/Qt3Support.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/Qt3Support.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..56ccd8e --- /dev/null +++ b/tests/auto/bic/data/Qt3Support.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,27829 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb6b6c000) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb6b6c03c) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7d77c40) 0 empty + QUintForSize<4> (0xb6b6c0b4) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb6b6c1e0) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb6b6c21c) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7d77e00) 0 empty + QIntForSize<4> (0xb6b6c294) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb6b6c618) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb6b6cc30) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb6b7f5dc) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb6b7f690) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b7f870) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b7f960) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b7fa50) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b7fb40) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b7fc30) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b7fd20) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b7fe10) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b7ff00) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b9b000) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b9b0f0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b9b1e0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b9b2d0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b9b3c0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b9b4b0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b9b5a0) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb6b9b690) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb6bb612c) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb6bb65a0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde258) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb6be9d20) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6c1a340) 0 + QBasicAtomicInt (0xb6c0dce4) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6c20c30) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb5a5fe10) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6c4021c) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb5a8ae10) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5acbf00) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5ae41a4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5ae4ac8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5b293fc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5b29d20) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5b3c654) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5b3cf78) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb594e8ac) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb595d1e0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb595db04) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5972438) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5972d5c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5986690) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5986fb4) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb599e8e8) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb59dbbf4) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb59e912c) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb599ea50) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb59e9ce4) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb584ad5c) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb58a8618) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb590dc00) 0 + QString (0xb57630b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb57633c0) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb576f258) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb579cfb4) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb57c9200) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb57cb2d0) 0 nearly-empty + primary-for std::bad_exception (0xb57c9200) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb57c9340) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb57cb5a0) 0 nearly-empty + primary-for std::bad_alloc (0xb57c9340) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb57cb870) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb57cbac8) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb57cba8c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5674d20) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb5674b04) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb5674078) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb568e384) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb568e30c) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb56aa618) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb56aab7c) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb56b5168) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb56ba100) 0 + QGenericArgument (0xb56b55a0) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb56b5a8c) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb56b58ac) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb56c9bf4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb56c9b7c) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb56c9ac8) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb56c9d20) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb570c294) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb5708f80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb570cbf4) 0 + primary-for QIODevice (0xb5708f80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5727f00) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb5551d98) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb556de10) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55a3618) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb55a3708) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb55a3c6c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb55a3bf4) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb55ae080) 0 + QList (0xb55a3ca8) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb55d0a14) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb55d0c30) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb55eeca8) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb5602040) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb5601258) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb5602040) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb55faf00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb56015a0) 0 + primary-for QTextCodecPlugin (0xb55faf00) + QTextCodecFactoryInterface (0xb56021c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb56015dc) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb56021c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb5601f00) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb5614a50) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb5614744) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb5602a80) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb561fc30) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb5602a80) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb5602b40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb5602b80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb5602b40) + std::exception (0xb561fdd4) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb5602b80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb561ff78) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb56240f0) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb5624168) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb562412c) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb54c3a8c) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb54c3a50) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb54e0384) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54e0438) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb53763c0) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb53764b0) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb5376438) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb5376528) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb53765a0) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb53765dc) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb5376618) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb5376690) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb53766cc) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb53b4e4c) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb53c6ac8) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb5379f00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb53d0b40) 0 + primary-for QTextIStream (0xb5379f00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb53e21c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb53e15a0) 0 + primary-for QTextOStream (0xb53e21c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb53f203c) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb53f20b4) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb53e1960) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb53f212c) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb53f21a4) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb53f221c) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb53f2294) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb53f22d0) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb53f230c) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb53f2384) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb53f23fc) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb53f2438) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb53f2564) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb53f24ec) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb53f24b0) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb53f25dc) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb53f26cc) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb53f2654) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb53f2744) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb53f2834) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb53f27bc) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb53f28e8) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb53f2960) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb53f29d8) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb53f2a14) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb53f2a50) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb53f2a8c) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb52b09d8) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb52b099c) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb5310780) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb53273c0) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb5327348) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb5327708) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb5327258) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb5327834) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb5327f3c) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb5327fb4) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb516b880) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb515ba8c) 0 + primary-for QFutureInterface (0xb516b880) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb51a821c) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb51c17c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb51c38ac) 0 + primary-for QFutureWatcherBase (0xb51c17c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb51c1ec0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb51c1f00) 0 + primary-for QFutureWatcher (0xb51c1ec0) + QObject (0xb51db3c0) 0 + primary-for QFutureWatcherBase (0xb51c1f00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb51f12d0) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb51e49c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb51f1bf4) 0 + primary-for QThread (0xb51e49c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb51e4d00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb5205a14) 0 + primary-for QThreadPool (0xb51e4d00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb52153c0) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb5215690) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb52193c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb52243c0) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb52193c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb5224bb8) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb5219d40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb5224c30) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb5219f00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb5219f40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb50390b4) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb5219f40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb50396cc) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb5039708) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb503e240) 0 empty + std::input_iterator_tag (0xb5039744) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb503e2c0) 0 empty + std::forward_iterator_tag (0xb503e300) 0 empty + std::input_iterator_tag (0xb5039780) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb503e380) 0 empty + std::bidirectional_iterator_tag (0xb503e3c0) 0 empty + std::forward_iterator_tag (0xb503e400) 0 empty + std::input_iterator_tag (0xb50397bc) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb5039ac8) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb5039b04) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb5039b7c) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb5039d98) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5039e88) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5039f00) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5039f78) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb50391a4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb505a000) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb505a078) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb505a0f0) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb505a168) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb505a1e0) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb505a258) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb505a2d0) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb505a348) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb505a3c0) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb505a4b0) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb505a528) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb505a5a0) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb505a924) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb505a99c) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb505aa8c) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb505ab04) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb505ab7c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb505ad98) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb505add4) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb505ae10) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb505ae4c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb505ae88) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb505aec4) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb505af3c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb505af78) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb505afb4) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb506e000) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb506e03c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb506e078) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb506ea50) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb50e903c) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb50e9474) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb50e9690) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb50e9a8c) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb50e9bf4) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb50e9d5c) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb512a438) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb4f3ce88) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb4f497bc) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb4f49a14) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb4f49a50) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb4f49ac8) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb4f49b04) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb4f49b7c) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb4f49d98) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb4f49f00) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb4f49e88) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb4f49f3c) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb4f49f78) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb4fd14b0) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb4fd1780) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb4fda8c0) 0 empty + __gnu_cxx::new_allocator (0xb4fd17bc) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb4fd17f8) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb4fda980) 0 empty + __gnu_cxx::new_allocator (0xb4fd1834) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb4fd1a50) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb4e43348) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb4e43384) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb4e40c40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb4e433c0) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb4eda03c) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb4ed8200) 0 + std::allocator (0xb4ed8240) 0 empty + __gnu_cxx::new_allocator (0xb4eda0b4) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb4e75fb4) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb4eda0f0) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb4ed83c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb4eda12c) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb4eda1e0) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb4ed85c0) 0 + std::allocator (0xb4ed8600) 0 empty + __gnu_cxx::new_allocator (0xb4eda258) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb4eda168) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb4eda294) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb4eda348) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb4ed8780) 0 + std::basic_string, std::allocator >::_Rep_base (0xb4eda2d0) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb4eda384) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb4d717f8) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb4d7d1a4) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb4d7d4ec) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb4d88740) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb4d84e88) 0 + primary-for std::collate (0xb4d88740) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb4d88840) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb4d84f78) 0 + primary-for std::collate (0xb4d88840) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb4da03c0) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb4da03fc) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb4dab7c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb4da0438) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb4dab900) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb4dab940) 0 + primary-for std::collate_byname (0xb4dab900) + std::locale::facet (0xb4da04b0) 0 + primary-for std::collate (0xb4dab940) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb4dab9c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb4daba00) 0 + primary-for std::collate_byname (0xb4dab9c0) + std::locale::facet (0xb4da05a0) 0 + primary-for std::collate (0xb4daba00) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb4dca040) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb4dc33c0) 0 nearly-empty + primary-for std::ios_base::failure (0xb4dca040) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb4dcd654) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb4dcdbf4) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb4dd2000) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb4dc3384) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb4c04a14) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb4c04ca8) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb4c04f3c) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb4c77550) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb4c47e88) 0 + primary-for std::ctype (0xb4c77550) + std::ctype_base (0xb4c47ec4) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb4c80e10) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb4c90a50) 0 + primary-for std::__ctype_abstract_base (0xb4c80e10) + std::ctype_base (0xb4c90a8c) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb4c81900) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb4c9ac80) 0 + primary-for std::ctype (0xb4c81900) + std::locale::facet (0xb4c90b7c) 0 + primary-for std::__ctype_abstract_base (0xb4c9ac80) + std::ctype_base (0xb4c90bb8) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb4c81ac0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb4ca3410) 0 + primary-for std::ctype_byname (0xb4c81ac0) + std::locale::facet (0xb4ca0ec4) 0 + primary-for std::ctype (0xb4ca3410) + std::ctype_base (0xb4ca0f00) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb4c81b40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb4c81b80) 0 + primary-for std::ctype_byname (0xb4c81b40) + std::__ctype_abstract_base (0xb4ca3aa0) 0 + primary-for std::ctype (0xb4c81b80) + std::locale::facet (0xb4ca903c) 0 + primary-for std::__ctype_abstract_base (0xb4ca3aa0) + std::ctype_base (0xb4ca9078) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb4ca9a8c) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb4cb6580) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb4cbb294) 0 + primary-for std::numpunct (0xb4cb6580) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb4cb6640) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb4cbb384) 0 + primary-for std::numpunct (0xb4cb6640) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb4cf19d8) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb4b3ab80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb4b3abc0) 0 + primary-for std::numpunct_byname (0xb4b3ab80) + std::locale::facet (0xb4b51000) 0 + primary-for std::numpunct (0xb4b3abc0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb4b3ac00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb4b510f0) 0 + primary-for std::num_get > > (0xb4b3ac00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb4b3ac80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb4b511e0) 0 + primary-for std::num_put > > (0xb4b3ac80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb4b3ad00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb4b3ad40) 0 + primary-for std::numpunct_byname (0xb4b3ad00) + std::locale::facet (0xb4b512d0) 0 + primary-for std::numpunct (0xb4b3ad40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb4b3adc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb4b513c0) 0 + primary-for std::num_get > > (0xb4b3adc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb4b3ae40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb4b514b0) 0 + primary-for std::num_put > > (0xb4b3ae40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb4b85e80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb4b51ca8) 0 + primary-for std::basic_ios > (0xb4b85e80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb4b85ec0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb4b51d98) 0 + primary-for std::basic_ios > (0xb4b85ec0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb4bd7b40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb4bd7b80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb4bb98ac) 4 + primary-for std::basic_ios > (0xb4bd7b80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb4bb9a8c) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb4bd7cc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb4bd7d00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb4bb9ac8) 4 + primary-for std::basic_ios > (0xb4bd7d00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb4bb9c6c) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb4a16580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb4a165c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb4a18168) 8 + primary-for std::basic_ios > (0xb4a165c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb4a16680) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb4a166c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb4a184ec) 8 + primary-for std::basic_ios > (0xb4a166c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb4a18bf4) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb4a18c30) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb4a43580) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb4a18c6c) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb4a7512c) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb4a7d480 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb4a7d500 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb4a8e0f0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb4a7d480) 0 + primary-for std::basic_iostream > (0xb4a8e0f0) + subvttidx=4u + std::basic_ios > (0xb4a7d4c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb4a75168) 12 + primary-for std::basic_ios > (0xb4a7d4c0) + std::basic_ostream > (0xb4a7d500) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb4a7d4c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb4a753fc) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb4a7d800 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb4a7d880 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb4a9b190) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb4a7d800) 0 + primary-for std::basic_iostream > (0xb4a9b190) + subvttidx=4u + std::basic_ios > (0xb4a7d840) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb4a75438) 12 + primary-for std::basic_ios > (0xb4a7d840) + std::basic_ostream > (0xb4a7d880) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb4a7d840) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4a75d20) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4a75ca8) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb4a75c30) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb4a75b7c) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb4ac6000) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4ac6870) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb49aace4) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb49c6910) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb49b8b00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb49c6910) + QFutureInterfaceBase (0xb49aaec4) 0 + primary-for QFutureInterface (0xb49b8b00) + QRunnable (0xb49aaf00) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb49b8b80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb49c6d20) 0 + primary-for QtConcurrent::RunFunctionTask (0xb49b8b80) + QFutureInterface (0xb49b8bc0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb49c6d20) + QFutureInterfaceBase (0xb49cf078) 0 + primary-for QFutureInterface (0xb49b8bc0) + QRunnable (0xb49cf0b4) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb4737348) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb471af00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb471af40) 0 + primary-for QFile (0xb471af00) + QObject (0xb4737438) 0 + primary-for QIODevice (0xb471af40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb474fdd4) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb4762960) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4781000) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb478130c) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4792078) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4792000) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb4792168) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb47b16cc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb47b17bc) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb45f2348) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb45f2384) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb47d3340) 0 + QAbstractFileEngine::ExtensionOption (0xb45f23c0) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb47d33c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb45f24b0) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb47d3440) 0 + QAbstractFileEngine::ExtensionOption (0xb45f24ec) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb47e1a8c) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb45f2b7c) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb46019d8) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb4601b7c) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb47d3680) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb47d36c0) 0 + primary-for QBuffer (0xb47d3680) + QObject (0xb4610078) 0 + primary-for QIODevice (0xb47d36c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb4610d98) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4621528) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb47d3b00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb462f30c) 0 + primary-for QFileSystemWatcher (0xb47d3b00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb47d3dc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb462fce4) 0 + primary-for QFSFileEngine (0xb47d3dc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb47d3ec0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb47d3f00) 0 + primary-for QProcess (0xb47d3ec0) + QObject (0xb4647690) 0 + primary-for QIODevice (0xb47d3f00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb46630b4) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb46864ec) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb4686564) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb46632d0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4686d5c) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4686ec4) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb46a62d0) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb46a67bc) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46a6bf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46a6dd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46a6fb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46c41a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46c4384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46c4564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46c4744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46c4924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46c4b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46c4ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46c4ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ce0b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ce294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ce474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ce654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ce834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46cea14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46cebf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46cedd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46cefb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46d41a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46d4384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46d4564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46d4744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46d4924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46d4b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46d4ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46d4ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e00b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e0294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e0474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e0654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e0834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e0a14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e0bf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e0dd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e0fb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e51a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e5384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e5564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e5744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e5924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e5b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e5ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46e5ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ec0b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ec294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ec474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ec654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ec834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46eca14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ecbf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ecdd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb46ecfb4) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb44fae4c) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb450803c) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb44faf00) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb4508708) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb44ed1a4) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb451fc30) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb451fbb8) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb451fd20) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb451fca8) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb455e0b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb455e6cc) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb455e8ac) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb455ea8c) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb45683c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb455ec6c) 0 + primary-for QSettings (0xb45683c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb4568fc0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb45aa000) 0 + primary-for QTemporaryFile (0xb4568fc0) + QIODevice (0xb45aa040) 0 + primary-for QFile (0xb45aa000) + QObject (0xb45a29d8) 0 + primary-for QIODevice (0xb45aa040) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb45aeb40) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb45b9a50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb45e54ec) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb45aabc0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb43ef348) 0 + primary-for QEventLoop (0xb45aabc0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb43ef960) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb45aaf40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb4405d20) 0 + primary-for QAbstractEventDispatcher (0xb45aaf40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb4415bf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb442cfb4) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb44340b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb44347f8) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb4419b00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb44348e8) 0 + primary-for QAbstractItemModel (0xb4419b00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb4419fc0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb4465000) 0 + primary-for QAbstractTableModel (0xb4419fc0) + QObject (0xb4461474) 0 + primary-for QAbstractItemModel (0xb4465000) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb4465240) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb4465280) 0 + primary-for QAbstractListModel (0xb4465240) + QObject (0xb4461f00) 0 + primary-for QAbstractItemModel (0xb4465280) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb4480960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb448e0f0) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb448e1e0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb4465c80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb448ef00) 0 + primary-for QTimerEvent (0xb4465c80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb4465d40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb44a012c) 0 + primary-for QChildEvent (0xb4465d40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb4465f00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb44a099c) 0 + primary-for QCustomEvent (0xb4465f00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb44ae000) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb44a0d98) 0 + primary-for QDynamicPropertyChangeEvent (0xb44ae000) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb44ae0c0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb44a0000) 0 + primary-for QCoreApplication (0xb44ae0c0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb44c799c) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb44c7d20) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb42fb1e0) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb42fb2d0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb42fb708) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb42fb7f8) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb42fbb04) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb42fbe4c) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb4304340) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb42fbf3c) 0 + primary-for QMimeData (0xb4304340) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb4304600) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb4311ac8) 0 + primary-for QObjectCleanupHandler (0xb4304600) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb4304840) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb432330c) 0 + primary-for QSharedMemory (0xb4304840) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb4304b00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb433212c) 0 + primary-for QSignalMapper (0xb4304b00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb4304dc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb4341294) 0 + primary-for QSocketNotifier (0xb4304dc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb434e30c) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb434d140) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb434e834) 0 + primary-for QTimer (0xb434d140) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb434d5c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb435e960) 0 + primary-for QTranslator (0xb434d5c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb434d8c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb436d780) 0 + primary-for QLibrary (0xb434d8c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb437b6cc) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb434dc40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb438b294) 0 + primary-for QPluginLoader (0xb434dc40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb438be88) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb43a8ca8) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb43b4348) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb43b403c) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb43bd834) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb43bd528) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb43c2a14) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb43c2ce4) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb43d70f0) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb41f1e10) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4200b04) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb4200d98) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb4211780) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb4211b04) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb423e4b0) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb423e5a0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb424ab04) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb424abf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb425e294) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb425e474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb426e294) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb42814ec) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb428d348) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb42a44b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb42a4870) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb42c19d8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb42cf3fc) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb40f703c) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb4161348) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb416b348) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb417dfb4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb418cd20) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb41a7e10) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb41c5ce4) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb400a8e8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4023e10) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb40634b0) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb407f6cc) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb40868c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb4094078) 0 + primary-for QTimeLine (0xb40868c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb40ac438) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb40c95dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb40d3b40) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb40d3ca8) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb40d3c30) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb40cf340) 0 + QVector (0xb40d3ce4) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb40d3d20) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3ef6744) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb3ef6870) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3f05438) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb3f05564) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3f1a4ec) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb3f1a618) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb3f1a7bc) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb3f35d98) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb3f65ce4) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb3f65d5c) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb3f65dd4) 0 + +Class QColor:: + size=10 align=2 + base size=10 base align=2 +QColor:: (0xb3f65c6c) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0xb3f4b834) 0 + +Class QRegion::QRegionData + size=16 align=4 + base size=16 base align=4 +QRegion::QRegionData (0xb3f911a4) 0 + +Class QRegion + size=4 align=4 + base size=4 base align=4 +QRegion (0xb3f78b7c) 0 + +Class QKeySequence + size=4 align=4 + base size=4 base align=4 +QKeySequence (0xb3f91bb8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3fa2e10) 0 empty + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMimeSource) +8 QMimeSource::~QMimeSource +12 QMimeSource::~QMimeSource +16 __cxa_pure_virtual +20 QMimeSource::provides +24 __cxa_pure_virtual + +Class QMimeSource + size=4 align=4 + base size=4 base align=4 +QMimeSource (0xb3fbe03c) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 8u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QDrag) +8 QDrag::metaObject +12 QDrag::qt_metacast +16 QDrag::qt_metacall +20 QDrag::~QDrag +24 QDrag::~QDrag +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QDrag + size=8 align=4 + base size=8 base align=4 +QDrag (0xb3fba100) 0 + vptr=((& QDrag::_ZTV5QDrag) + 8u) + QObject (0xb3fbe1a4) 0 + primary-for QDrag (0xb3fba100) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QInputEvent) +8 QInputEvent::~QInputEvent +12 QInputEvent::~QInputEvent + +Class QInputEvent + size=16 align=4 + base size=16 base align=4 +QInputEvent (0xb3fba400) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 8u) + QEvent (0xb3fbece4) 0 + primary-for QInputEvent (0xb3fba400) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMouseEvent) +8 QMouseEvent::~QMouseEvent +12 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=40 align=4 + base size=40 base align=4 +QMouseEvent (0xb3fba4c0) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 8u) + QInputEvent (0xb3fba500) 0 + primary-for QMouseEvent (0xb3fba4c0) + QEvent (0xb3fbefb4) 0 + primary-for QInputEvent (0xb3fba500) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHoverEvent) +8 QHoverEvent::~QHoverEvent +12 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=28 align=4 + base size=28 base align=4 +QHoverEvent (0xb3fba840) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 8u) + QEvent (0xb3fe221c) 0 + primary-for QHoverEvent (0xb3fba840) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWheelEvent) +8 QWheelEvent::~QWheelEvent +12 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=44 align=4 + base size=44 base align=4 +QWheelEvent (0xb3fba940) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 8u) + QInputEvent (0xb3fba980) 0 + primary-for QWheelEvent (0xb3fba940) + QEvent (0xb3fe25dc) 0 + primary-for QInputEvent (0xb3fba980) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTabletEvent) +8 QTabletEvent::~QTabletEvent +12 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=104 align=4 + base size=104 base align=4 +QTabletEvent (0xb3fbac80) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 8u) + QInputEvent (0xb3fbacc0) 0 + primary-for QTabletEvent (0xb3fbac80) + QEvent (0xb3df11e0) 0 + primary-for QInputEvent (0xb3fbacc0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QKeyEvent) +8 QKeyEvent::~QKeyEvent +12 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=28 align=4 + base size=27 base align=4 +QKeyEvent (0xb3e001c0) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 8u) + QInputEvent (0xb3e00200) 0 + primary-for QKeyEvent (0xb3e001c0) + QEvent (0xb3dff6cc) 0 + primary-for QInputEvent (0xb3e00200) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFocusEvent) +8 QFocusEvent::~QFocusEvent +12 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=16 align=4 + base size=16 base align=4 +QFocusEvent (0xb3e005c0) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 8u) + QEvent (0xb3e0c9d8) 0 + primary-for QFocusEvent (0xb3e005c0) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QPaintEvent) +8 QPaintEvent::~QPaintEvent +12 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=36 align=4 + base size=33 base align=4 +QPaintEvent (0xb3e006c0) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 8u) + QEvent (0xb3e0cec4) 0 + primary-for QPaintEvent (0xb3e006c0) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +8 QUpdateLaterEvent::~QUpdateLaterEvent +12 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=16 align=4 + base size=16 base align=4 +QUpdateLaterEvent (0xb3e00840) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 8u) + QEvent (0xb3e1c4b0) 0 + primary-for QUpdateLaterEvent (0xb3e00840) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QMoveEvent) +8 QMoveEvent::~QMoveEvent +12 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=28 align=4 + base size=28 base align=4 +QMoveEvent (0xb3e00900) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 8u) + QEvent (0xb3e1c708) 0 + primary-for QMoveEvent (0xb3e00900) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QResizeEvent) +8 QResizeEvent::~QResizeEvent +12 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=28 align=4 + base size=28 base align=4 +QResizeEvent (0xb3e00a00) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 8u) + QEvent (0xb3e1ca50) 0 + primary-for QResizeEvent (0xb3e00a00) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QCloseEvent) +8 QCloseEvent::~QCloseEvent +12 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=12 align=4 + base size=12 base align=4 +QCloseEvent (0xb3e00b00) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 8u) + QEvent (0xb3e1cd98) 0 + primary-for QCloseEvent (0xb3e00b00) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QIconDragEvent) +8 QIconDragEvent::~QIconDragEvent +12 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=12 align=4 + base size=12 base align=4 +QIconDragEvent (0xb3e00b40) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 8u) + QEvent (0xb3e1cf00) 0 + primary-for QIconDragEvent (0xb3e00b40) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QShowEvent) +8 QShowEvent::~QShowEvent +12 QShowEvent::~QShowEvent + +Class QShowEvent + size=12 align=4 + base size=12 base align=4 +QShowEvent (0xb3e00bc0) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 8u) + QEvent (0xb3e1c5dc) 0 + primary-for QShowEvent (0xb3e00bc0) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QHideEvent) +8 QHideEvent::~QHideEvent +12 QHideEvent::~QHideEvent + +Class QHideEvent + size=12 align=4 + base size=12 base align=4 +QHideEvent (0xb3e00c40) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 8u) + QEvent (0xb3e2c078) 0 + primary-for QHideEvent (0xb3e00c40) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QContextMenuEvent) +8 QContextMenuEvent::~QContextMenuEvent +12 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=36 align=4 + base size=33 base align=4 +QContextMenuEvent (0xb3e00cc0) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 8u) + QInputEvent (0xb3e00d00) 0 + primary-for QContextMenuEvent (0xb3e00cc0) + QEvent (0xb3e2c1e0) 0 + primary-for QInputEvent (0xb3e00d00) + +Class QInputMethodEvent::Attribute + size=24 align=4 + base size=24 base align=4 +QInputMethodEvent::Attribute (0xb3e2ce88) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3e396cc) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3e39654) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QInputMethodEvent) +8 QInputMethodEvent::~QInputMethodEvent +12 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=32 align=4 + base size=32 base align=4 +QInputMethodEvent (0xb3e00f80) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 8u) + QEvent (0xb3e2ce4c) 0 + primary-for QInputMethodEvent (0xb3e00f80) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QDropEvent) +8 QDropEvent::~QDropEvent +12 QDropEvent::~QDropEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI10QDropEvent) +36 QDropEvent::_ZThn12_N10QDropEventD1Ev +40 QDropEvent::_ZThn12_N10QDropEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=52 align=4 + base size=52 base align=4 +QDropEvent (0xb3e4db90) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 8u) + QEvent (0xb3e39f00) 0 + primary-for QDropEvent (0xb3e4db90) + QMimeSource (0xb3e39f3c) 12 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 36u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDragMoveEvent) +8 QDragMoveEvent::~QDragMoveEvent +12 QDragMoveEvent::~QDragMoveEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI14QDragMoveEvent) +36 QDragMoveEvent::_ZThn12_N14QDragMoveEventD1Ev +40 QDragMoveEvent::_ZThn12_N14QDragMoveEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=68 align=4 + base size=68 base align=4 +QDragMoveEvent (0xb3e387c0) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 8u) + QDropEvent (0xb3e5d550) 0 + primary-for QDragMoveEvent (0xb3e387c0) + QEvent (0xb3e6430c) 0 + primary-for QDropEvent (0xb3e5d550) + QMimeSource (0xb3e64348) 12 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 36u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QDragEnterEvent) +8 QDragEnterEvent::~QDragEnterEvent +12 QDragEnterEvent::~QDragEnterEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI15QDragEnterEvent) +36 QDragEnterEvent::_ZThn12_N15QDragEnterEventD1Ev +40 QDragEnterEvent::_ZThn12_N15QDragEnterEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=68 align=4 + base size=68 base align=4 +QDragEnterEvent (0xb3e389c0) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 8u) + QDragMoveEvent (0xb3e38a00) 0 + primary-for QDragEnterEvent (0xb3e389c0) + QDropEvent (0xb3e664b0) 0 + primary-for QDragMoveEvent (0xb3e38a00) + QEvent (0xb3e64ec4) 0 + primary-for QDropEvent (0xb3e664b0) + QMimeSource (0xb3e64f00) 12 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 36u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QDragResponseEvent) +8 QDragResponseEvent::~QDragResponseEvent +12 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=16 align=4 + base size=13 base align=4 +QDragResponseEvent (0xb3e38a40) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 8u) + QEvent (0xb3e6b0b4) 0 + primary-for QDragResponseEvent (0xb3e38a40) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QDragLeaveEvent) +8 QDragLeaveEvent::~QDragLeaveEvent +12 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=12 align=4 + base size=12 base align=4 +QDragLeaveEvent (0xb3e38b40) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 8u) + QEvent (0xb3e6b30c) 0 + primary-for QDragLeaveEvent (0xb3e38b40) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QHelpEvent) +8 QHelpEvent::~QHelpEvent +12 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=28 align=4 + base size=28 base align=4 +QHelpEvent (0xb3e38b80) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 8u) + QEvent (0xb3e6b474) 0 + primary-for QHelpEvent (0xb3e38b80) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QStatusTipEvent) +8 QStatusTipEvent::~QStatusTipEvent +12 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=16 align=4 + base size=16 base align=4 +QStatusTipEvent (0xb3e38dc0) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 8u) + QEvent (0xb3e6bbf4) 0 + primary-for QStatusTipEvent (0xb3e38dc0) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +8 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +12 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=16 align=4 + base size=16 base align=4 +QWhatsThisClickedEvent (0xb3e38e80) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 8u) + QEvent (0xb3e6be4c) 0 + primary-for QWhatsThisClickedEvent (0xb3e38e80) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QActionEvent) +8 QActionEvent::~QActionEvent +12 QActionEvent::~QActionEvent + +Class QActionEvent + size=20 align=4 + base size=20 base align=4 +QActionEvent (0xb3e38f40) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 8u) + QEvent (0xb3e6b618) 0 + primary-for QActionEvent (0xb3e38f40) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFileOpenEvent) +8 QFileOpenEvent::~QFileOpenEvent +12 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=16 align=4 + base size=16 base align=4 +QFileOpenEvent (0xb3e81040) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 8u) + QEvent (0xb3e80294) 0 + primary-for QFileOpenEvent (0xb3e81040) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +8 QToolBarChangeEvent::~QToolBarChangeEvent +12 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=16 align=4 + base size=13 base align=4 +QToolBarChangeEvent (0xb3e81100) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 8u) + QEvent (0xb3e804ec) 0 + primary-for QToolBarChangeEvent (0xb3e81100) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QShortcutEvent) +8 QShortcutEvent::~QShortcutEvent +12 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=24 align=4 + base size=24 base align=4 +QShortcutEvent (0xb3e811c0) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 8u) + QEvent (0xb3e80744) 0 + primary-for QShortcutEvent (0xb3e811c0) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QClipboardEvent) +8 QClipboardEvent::~QClipboardEvent +12 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=12 align=4 + base size=12 base align=4 +QClipboardEvent (0xb3e813c0) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 8u) + QEvent (0xb3e80e4c) 0 + primary-for QClipboardEvent (0xb3e813c0) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +8 QWindowStateChangeEvent::~QWindowStateChangeEvent +12 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=16 align=4 + base size=16 base align=4 +QWindowStateChangeEvent (0xb3e81480) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 8u) + QEvent (0xb3e80870) 0 + primary-for QWindowStateChangeEvent (0xb3e81480) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +8 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +12 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=16 align=4 + base size=16 base align=4 +QMenubarUpdatedEvent (0xb3e81540) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 8u) + QEvent (0xb3e8c21c) 0 + primary-for QMenubarUpdatedEvent (0xb3e81540) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0xb3e8c708) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3e8c30c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3ea6bf4) 0 + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb3eb87bc) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAccessibleInterface) +8 QAccessibleInterface::~QAccessibleInterface +12 QAccessibleInterface::~QAccessibleInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QAccessibleInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleInterface (0xb3e819c0) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 8u) + QAccessible (0xb3eb8bb8) 0 empty + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb3eca708) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb3eca690) 0 + +Class QSet + size=4 align=4 + base size=4 base align=4 +QSet (0xb3eca618) 0 + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +8 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +12 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=4 align=4 + base size=4 base align=4 +QAccessibleInterfaceEx (0xb3e81f80) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 8u) + QAccessibleInterface (0xb3e81fc0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb3e81f80) + QAccessible (0xb3cf0564) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QAccessibleEvent) +8 QAccessibleEvent::~QAccessibleEvent +12 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=20 align=4 + base size=20 base align=4 +QAccessibleEvent (0xb3cf4080) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 8u) + QEvent (0xb3cf0708) 0 + primary-for QAccessibleEvent (0xb3cf4080) + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QAccessible2Interface) +8 QAccessible2Interface::~QAccessible2Interface +12 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=4 align=4 + base size=4 base align=4 +QAccessible2Interface (0xb3d000b4) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 8u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +8 QAccessibleTextInterface::~QAccessibleTextInterface +12 QAccessibleTextInterface::~QAccessibleTextInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleTextInterface (0xb3cf4600) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 8u) + QAccessible2Interface (0xb3d005dc) 0 nearly-empty + primary-for QAccessibleTextInterface (0xb3cf4600) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +8 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +12 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleEditableTextInterface (0xb3cf4780) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 8u) + QAccessible2Interface (0xb3d00a14) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0xb3cf4780) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +8 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +12 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +16 QAccessibleSimpleEditableTextInterface::copyText +20 QAccessibleSimpleEditableTextInterface::deleteText +24 QAccessibleSimpleEditableTextInterface::insertText +28 QAccessibleSimpleEditableTextInterface::cutText +32 QAccessibleSimpleEditableTextInterface::pasteText +36 QAccessibleSimpleEditableTextInterface::replaceText +40 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=8 align=4 + base size=8 base align=4 +QAccessibleSimpleEditableTextInterface (0xb3cf4900) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 8u) + QAccessibleEditableTextInterface (0xb3cf4940) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0xb3cf4900) + QAccessible2Interface (0xb3d00e4c) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0xb3cf4940) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +8 QAccessibleValueInterface::~QAccessibleValueInterface +12 QAccessibleValueInterface::~QAccessibleValueInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleValueInterface (0xb3cf4a00) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 8u) + QAccessible2Interface (0xb3d00780) 0 nearly-empty + primary-for QAccessibleValueInterface (0xb3cf4a00) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +8 QAccessibleTableInterface::~QAccessibleTableInterface +12 QAccessibleTableInterface::~QAccessibleTableInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleTableInterface (0xb3cf4b80) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 8u) + QAccessible2Interface (0xb3d17384) 0 nearly-empty + primary-for QAccessibleTableInterface (0xb3cf4b80) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleBridge) +8 QAccessibleBridge::~QAccessibleBridge +12 QAccessibleBridge::~QAccessibleBridge +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleBridge + size=4 align=4 + base size=4 base align=4 +QAccessibleBridge (0xb3d175a0) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 8u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +8 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +12 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleBridgeFactoryInterface (0xb3cf4d40) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 8u) + QFactoryInterface (0xb3d17924) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0xb3cf4d40) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +8 QAccessibleBridgePlugin::metaObject +12 QAccessibleBridgePlugin::qt_metacast +16 QAccessibleBridgePlugin::qt_metacall +20 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +24 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +72 QAccessibleBridgePlugin::_ZThn8_N23QAccessibleBridgePluginD1Ev +76 QAccessibleBridgePlugin::_ZThn8_N23QAccessibleBridgePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=12 align=4 + base size=12 base align=4 +QAccessibleBridgePlugin (0xb3d26230) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 8u) + QObject (0xb3d17c6c) 0 + primary-for QAccessibleBridgePlugin (0xb3d26230) + QAccessibleBridgeFactoryInterface (0xb3cf4ec0) 8 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 72u) + QFactoryInterface (0xb3d17ca8) 8 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0xb3cf4ec0) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleObject) +8 QAccessibleObject::~QAccessibleObject +12 QAccessibleObject::~QAccessibleObject +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 QAccessibleObject::setText +52 QAccessibleObject::rect +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAccessibleObject::userActionCount +68 QAccessibleObject::actionText +72 QAccessibleObject::doAction + +Class QAccessibleObject + size=8 align=4 + base size=8 base align=4 +QAccessibleObject (0xb3d2e100) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 8u) + QAccessibleInterface (0xb3d2e140) 0 nearly-empty + primary-for QAccessibleObject (0xb3d2e100) + QAccessible (0xb3d2f384) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +8 QAccessibleObjectEx::~QAccessibleObjectEx +12 QAccessibleObjectEx::~QAccessibleObjectEx +16 QAccessibleObjectEx::isValid +20 QAccessibleObjectEx::object +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 QAccessibleObjectEx::setText +52 QAccessibleObjectEx::rect +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAccessibleObjectEx::userActionCount +68 QAccessibleObjectEx::actionText +72 QAccessibleObjectEx::doAction +76 __cxa_pure_virtual +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=8 align=4 + base size=8 base align=4 +QAccessibleObjectEx (0xb3d2e180) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 8u) + QAccessibleInterfaceEx (0xb3d2e1c0) 0 nearly-empty + primary-for QAccessibleObjectEx (0xb3d2e180) + QAccessibleInterface (0xb3d2e200) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb3d2e1c0) + QAccessible (0xb3d2f7bc) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QAccessibleApplication) +8 QAccessibleApplication::~QAccessibleApplication +12 QAccessibleApplication::~QAccessibleApplication +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 QAccessibleApplication::childCount +28 QAccessibleApplication::indexOfChild +32 QAccessibleApplication::relationTo +36 QAccessibleApplication::childAt +40 QAccessibleApplication::navigate +44 QAccessibleApplication::text +48 QAccessibleObject::setText +52 QAccessibleObject::rect +56 QAccessibleApplication::role +60 QAccessibleApplication::state +64 QAccessibleApplication::userActionCount +68 QAccessibleApplication::actionText +72 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=8 align=4 + base size=8 base align=4 +QAccessibleApplication (0xb3d2e280) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 8u) + QAccessibleObject (0xb3d2e2c0) 0 + primary-for QAccessibleApplication (0xb3d2e280) + QAccessibleInterface (0xb3d2e300) 0 nearly-empty + primary-for QAccessibleObject (0xb3d2e2c0) + QAccessible (0xb3d2fbf4) 0 empty + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +8 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +12 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleFactoryInterface (0xb3d3cd70) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 8u) + QAccessible (0xb3d3e0b4) 0 empty + QFactoryInterface (0xb3d3e0f0) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0xb3d3cd70) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessiblePlugin) +8 QAccessiblePlugin::metaObject +12 QAccessiblePlugin::qt_metacast +16 QAccessiblePlugin::qt_metacall +20 QAccessiblePlugin::~QAccessiblePlugin +24 QAccessiblePlugin::~QAccessiblePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI17QAccessiblePlugin) +72 QAccessiblePlugin::_ZThn8_N17QAccessiblePluginD1Ev +76 QAccessiblePlugin::_ZThn8_N17QAccessiblePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QAccessiblePlugin + size=12 align=4 + base size=12 base align=4 +QAccessiblePlugin (0xb3d40370) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 8u) + QObject (0xb3d3e438) 0 + primary-for QAccessiblePlugin (0xb3d40370) + QAccessibleFactoryInterface (0xb3d403c0) 8 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 72u) + QAccessible (0xb3d3e474) 8 empty + QFactoryInterface (0xb3d3e4b0) 8 nearly-empty + primary-for QAccessibleFactoryInterface (0xb3d403c0) + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleWidget) +8 QAccessibleWidget::~QAccessibleWidget +12 QAccessibleWidget::~QAccessibleWidget +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 QAccessibleWidget::childCount +28 QAccessibleWidget::indexOfChild +32 QAccessibleWidget::relationTo +36 QAccessibleWidget::childAt +40 QAccessibleWidget::navigate +44 QAccessibleWidget::text +48 QAccessibleObject::setText +52 QAccessibleWidget::rect +56 QAccessibleWidget::role +60 QAccessibleWidget::state +64 QAccessibleWidget::userActionCount +68 QAccessibleWidget::actionText +72 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=12 align=4 + base size=12 base align=4 +QAccessibleWidget (0xb3d2e700) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 8u) + QAccessibleObject (0xb3d2e740) 0 + primary-for QAccessibleWidget (0xb3d2e700) + QAccessibleInterface (0xb3d2e780) 0 nearly-empty + primary-for QAccessibleObject (0xb3d2e740) + QAccessible (0xb3d3ed20) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +8 QAccessibleWidgetEx::~QAccessibleWidgetEx +12 QAccessibleWidgetEx::~QAccessibleWidgetEx +16 QAccessibleObjectEx::isValid +20 QAccessibleObjectEx::object +24 QAccessibleWidgetEx::childCount +28 QAccessibleWidgetEx::indexOfChild +32 QAccessibleWidgetEx::relationTo +36 QAccessibleWidgetEx::childAt +40 QAccessibleWidgetEx::navigate +44 QAccessibleWidgetEx::text +48 QAccessibleObjectEx::setText +52 QAccessibleWidgetEx::rect +56 QAccessibleWidgetEx::role +60 QAccessibleWidgetEx::state +64 QAccessibleObjectEx::userActionCount +68 QAccessibleWidgetEx::actionText +72 QAccessibleWidgetEx::doAction +76 QAccessibleWidgetEx::invokeMethodEx +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=12 align=4 + base size=12 base align=4 +QAccessibleWidgetEx (0xb3d2e7c0) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 8u) + QAccessibleObjectEx (0xb3d2e800) 0 + primary-for QAccessibleWidgetEx (0xb3d2e7c0) + QAccessibleInterfaceEx (0xb3d2e840) 0 nearly-empty + primary-for QAccessibleObjectEx (0xb3d2e800) + QAccessibleInterface (0xb3d2e880) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb3d2e840) + QAccessible (0xb3d50528) 0 empty + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPaintDevice) +8 QPaintDevice::~QPaintDevice +12 QPaintDevice::~QPaintDevice +16 QPaintDevice::devType +20 __cxa_pure_virtual +24 QPaintDevice::metric + +Class QPaintDevice + size=8 align=4 + base size=6 base align=4 +QPaintDevice (0xb3d50e10) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 8u) + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb3d6f30c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3d6f294) 0 + +Class QPolygon + size=4 align=4 + base size=4 base align=4 +QPolygon (0xb3d2ed80) 0 + QVector (0xb3d6f348) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb3d903fc) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3d90384) 0 + +Class QPolygonF + size=4 align=4 + base size=4 base align=4 +QPolygonF (0xb3d8a380) 0 + QVector (0xb3d90438) 0 + +Class QMatrix + size=48 align=4 + base size=48 base align=4 +QMatrix (0xb3daf348) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3dc099c) 0 empty + +Class QPainterPath::Element + size=20 align=4 + base size=20 base align=4 +QPainterPath::Element (0xb3dcd1a4) 0 + +Class QPainterPath + size=4 align=4 + base size=4 base align=4 +QPainterPath (0xb3dcd168) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb3bf221c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3bf21a4) 0 + +Class QPainterPathPrivate + size=8 align=4 + base size=8 base align=4 +QPainterPathPrivate (0xb3de1e88) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3bf2258) 0 empty + +Class QPainterPathStroker + size=4 align=4 + base size=4 base align=4 +QPainterPathStroker (0xb3bf23fc) 0 + +Class QTransform + size=80 align=4 + base size=80 base align=4 +QTransform (0xb3c1cac8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3c2fbb8) 0 empty + +Class QImageTextKeyLang + size=8 align=4 + base size=8 base align=4 +QImageTextKeyLang (0xb3c5f780) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QImage) +8 QImage::~QImage +12 QImage::~QImage +16 QImage::devType +20 QImage::paintEngine +24 QImage::metric + +Class QImage + size=12 align=4 + base size=12 base align=4 +QImage (0xb3c4c900) 0 + vptr=((& QImage::_ZTV6QImage) + 8u) + QPaintDevice (0xb3c7e3c0) 0 + primary-for QImage (0xb3c4c900) + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3cc98ac) 0 empty + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QPixmap) +8 QPixmap::~QPixmap +12 QPixmap::~QPixmap +16 QPixmap::devType +20 QPixmap::paintEngine +24 QPixmap::metric + +Class QPixmap + size=12 align=4 + base size=12 base align=4 +QPixmap (0xb3cd1200) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 8u) + QPaintDevice (0xb3cc9bb8) 0 + primary-for QPixmap (0xb3cd1200) + +Class QBrush + size=4 align=4 + base size=4 base align=4 +QBrush (0xb3afa2d0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3afadd4) 0 empty + +Class QBrushData + size=124 align=4 + base size=121 base align=4 +QBrushData (0xb3b0d03c) 0 + +Class QVector >:: + size=4 align=4 + base size=4 base align=4 +QVector >:: (0xb3b0dce4) 0 + +Class QVector > + size=4 align=4 + base size=4 base align=4 +QVector > (0xb3b0dc6c) 0 + +Class QGradient:::: + size=32 align=4 + base size=32 base align=4 +QGradient:::: (0xb3b0ddd4) 0 + +Class QGradient:::: + size=40 align=4 + base size=40 base align=4 +QGradient:::: (0xb3b0de4c) 0 + +Class QGradient:::: + size=24 align=4 + base size=24 base align=4 +QGradient:::: (0xb3b0dec4) 0 + +Class QGradient:: + size=40 align=4 + base size=40 base align=4 +QGradient:: (0xb3b0dd5c) 0 + +Class QGradient + size=56 align=4 + base size=56 base align=4 +QGradient (0xb3b0d618) 0 + +Class QLinearGradient + size=56 align=4 + base size=56 base align=4 +QLinearGradient (0xb3cd1f80) 0 + QGradient (0xb3b30348) 0 + +Class QRadialGradient + size=56 align=4 + base size=56 base align=4 +QRadialGradient (0xb3b35080) 0 + QGradient (0xb3b305a0) 0 + +Class QConicalGradient + size=56 align=4 + base size=56 base align=4 +QConicalGradient (0xb3b35180) 0 + QGradient (0xb3b30870) 0 + +Class QPalette + size=8 align=4 + base size=8 base align=4 +QPalette (0xb3b30a14) 0 + +Class QColorGroup + size=8 align=4 + base size=8 base align=4 +QColorGroup (0xb3b35bc0) 0 + QPalette (0xb3b67294) 0 + +Class QFont + size=8 align=4 + base size=8 base align=4 +QFont (0xb3b835a0) 0 + +Class QFontMetrics + size=4 align=4 + base size=4 base align=4 +QFontMetrics (0xb3b9e3fc) 0 + +Class QFontMetricsF + size=4 align=4 + base size=4 base align=4 +QFontMetricsF (0xb3b9ee4c) 0 + +Class QFontInfo + size=4 align=4 + base size=4 base align=4 +QFontInfo (0xb3baf5dc) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0xb3bafb7c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3a02bf4) 0 + +Class QCursor + size=4 align=4 + base size=4 base align=4 +QCursor (0xb3a0cfb4) 0 + +Class QWidgetData + size=64 align=4 + base size=64 base align=4 +QWidgetData (0xb3a1d3fc) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QWidget) +8 QWidget::metaObject +12 QWidget::qt_metacast +16 QWidget::qt_metacall +20 QWidget::~QWidget +24 QWidget::~QWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI7QWidget) +232 QWidget::_ZThn8_N7QWidgetD1Ev +236 QWidget::_ZThn8_N7QWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=20 align=4 + base size=20 base align=4 +QWidget (0xb3a22c30) 0 + vptr=((& QWidget::_ZTV7QWidget) + 8u) + QObject (0xb3a1d438) 0 + primary-for QWidget (0xb3a22c30) + QPaintDevice (0xb3a1d474) 8 + vptr=((& QWidget::_ZTV7QWidget) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3a6f3c0) 0 + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QDialog) +8 QDialog::metaObject +12 QDialog::qt_metacast +16 QDialog::qt_metacall +20 QDialog::~QDialog +24 QDialog::~QDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI7QDialog) +244 QDialog::_ZThn8_N7QDialogD1Ev +248 QDialog::_ZThn8_N7QDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=20 align=4 + base size=20 base align=4 +QDialog (0xb3abae40) 0 + vptr=((& QDialog::_ZTV7QDialog) + 8u) + QWidget (0xb3ad5f00) 0 + primary-for QDialog (0xb3abae40) + QObject (0xb3ae1c30) 0 + primary-for QWidget (0xb3ad5f00) + QPaintDevice (0xb3ae1c6c) 8 + vptr=((& QDialog::_ZTV7QDialog) + 244u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +8 QAbstractPageSetupDialog::metaObject +12 QAbstractPageSetupDialog::qt_metacast +16 QAbstractPageSetupDialog::qt_metacall +20 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +24 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 __cxa_pure_virtual +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +248 QAbstractPageSetupDialog::_ZThn8_N24QAbstractPageSetupDialogD1Ev +252 QAbstractPageSetupDialog::_ZThn8_N24QAbstractPageSetupDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=20 align=4 + base size=20 base align=4 +QAbstractPageSetupDialog (0xb38f7100) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 8u) + QDialog (0xb38f7140) 0 + primary-for QAbstractPageSetupDialog (0xb38f7100) + QWidget (0xb38f2960) 0 + primary-for QDialog (0xb38f7140) + QObject (0xb38efb40) 0 + primary-for QWidget (0xb38f2960) + QPaintDevice (0xb38efb7c) 8 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 248u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +8 QAbstractPrintDialog::metaObject +12 QAbstractPrintDialog::qt_metacast +16 QAbstractPrintDialog::qt_metacall +20 QAbstractPrintDialog::~QAbstractPrintDialog +24 QAbstractPrintDialog::~QAbstractPrintDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 __cxa_pure_virtual +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +248 QAbstractPrintDialog::_ZThn8_N20QAbstractPrintDialogD1Ev +252 QAbstractPrintDialog::_ZThn8_N20QAbstractPrintDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=20 align=4 + base size=20 base align=4 +QAbstractPrintDialog (0xb38f7400) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 8u) + QDialog (0xb38f7440) 0 + primary-for QAbstractPrintDialog (0xb38f7400) + QWidget (0xb38feeb0) 0 + primary-for QDialog (0xb38f7440) + QObject (0xb39064ec) 0 + primary-for QWidget (0xb38feeb0) + QPaintDevice (0xb3906528) 8 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 248u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb39156cc) 0 + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QColorDialog) +8 QColorDialog::metaObject +12 QColorDialog::qt_metacast +16 QColorDialog::qt_metacall +20 QColorDialog::~QColorDialog +24 QColorDialog::~QColorDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QColorDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QColorDialog) +244 QColorDialog::_ZThn8_N12QColorDialogD1Ev +248 QColorDialog::_ZThn8_N12QColorDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=20 align=4 + base size=20 base align=4 +QColorDialog (0xb38f77c0) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 8u) + QDialog (0xb38f7800) 0 + primary-for QColorDialog (0xb38f77c0) + QWidget (0xb39225a0) 0 + primary-for QDialog (0xb38f7800) + QObject (0xb3929294) 0 + primary-for QWidget (0xb39225a0) + QPaintDevice (0xb39292d0) 8 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 244u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QErrorMessage) +8 QErrorMessage::metaObject +12 QErrorMessage::qt_metacast +16 QErrorMessage::qt_metacall +20 QErrorMessage::~QErrorMessage +24 QErrorMessage::~QErrorMessage +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QErrorMessage::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QErrorMessage::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI13QErrorMessage) +244 QErrorMessage::_ZThn8_N13QErrorMessageD1Ev +248 QErrorMessage::_ZThn8_N13QErrorMessageD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=20 align=4 + base size=20 base align=4 +QErrorMessage (0xb38f7b40) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 8u) + QDialog (0xb38f7b80) 0 + primary-for QErrorMessage (0xb38f7b40) + QWidget (0xb393c320) 0 + primary-for QDialog (0xb38f7b80) + QObject (0xb393f0b4) 0 + primary-for QWidget (0xb393c320) + QPaintDevice (0xb393f0f0) 8 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 244u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFileDialog) +8 QFileDialog::metaObject +12 QFileDialog::qt_metacast +16 QFileDialog::qt_metacall +20 QFileDialog::~QFileDialog +24 QFileDialog::~QFileDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFileDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QFileDialog::done +228 QFileDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QFileDialog) +244 QFileDialog::_ZThn8_N11QFileDialogD1Ev +248 QFileDialog::_ZThn8_N11QFileDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=20 align=4 + base size=20 base align=4 +QFileDialog (0xb38f7e80) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 8u) + QDialog (0xb38f7ec0) 0 + primary-for QFileDialog (0xb38f7e80) + QWidget (0xb3946a50) 0 + primary-for QDialog (0xb38f7ec0) + QObject (0xb393ff3c) 0 + primary-for QWidget (0xb3946a50) + QPaintDevice (0xb393ff78) 8 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 244u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb396403c) 0 + +Class QIcon + size=4 align=4 + base size=4 base align=4 +QIcon (0xb3984438) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb399a7f8) 0 empty + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFileSystemModel) +8 QFileSystemModel::metaObject +12 QFileSystemModel::qt_metacast +16 QFileSystemModel::qt_metacall +20 QFileSystemModel::~QFileSystemModel +24 QFileSystemModel::~QFileSystemModel +28 QObject::event +32 QObject::eventFilter +36 QFileSystemModel::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFileSystemModel::index +60 QFileSystemModel::parent +64 QFileSystemModel::rowCount +68 QFileSystemModel::columnCount +72 QFileSystemModel::hasChildren +76 QFileSystemModel::data +80 QFileSystemModel::setData +84 QFileSystemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QFileSystemModel::mimeTypes +104 QFileSystemModel::mimeData +108 QFileSystemModel::dropMimeData +112 QFileSystemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QFileSystemModel::fetchMore +136 QFileSystemModel::canFetchMore +140 QFileSystemModel::flags +144 QFileSystemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QFileSystemModel + size=8 align=4 + base size=8 base align=4 +QFileSystemModel (0xb396eb00) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 8u) + QAbstractItemModel (0xb396eb40) 0 + primary-for QFileSystemModel (0xb396eb00) + QObject (0xb399a8e8) 0 + primary-for QAbstractItemModel (0xb396eb40) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFontDialog) +8 QFontDialog::metaObject +12 QFontDialog::qt_metacast +16 QFontDialog::qt_metacall +20 QFontDialog::~QFontDialog +24 QFontDialog::~QFontDialog +28 QWidget::event +32 QFontDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFontDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QFontDialog) +244 QFontDialog::_ZThn8_N11QFontDialogD1Ev +248 QFontDialog::_ZThn8_N11QFontDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=20 align=4 + base size=20 base align=4 +QFontDialog (0xb396efc0) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 8u) + QDialog (0xb39bf000) 0 + primary-for QFontDialog (0xb396efc0) + QWidget (0xb39b1fa0) 0 + primary-for QDialog (0xb39bf000) + QObject (0xb39b4d5c) 0 + primary-for QWidget (0xb39b1fa0) + QPaintDevice (0xb39b4d98) 8 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 244u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QFrame) +8 QFrame::metaObject +12 QFrame::qt_metacast +16 QFrame::qt_metacall +20 QFrame::~QFrame +24 QFrame::~QFrame +28 QFrame::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI6QFrame) +232 QFrame::_ZThn8_N6QFrameD1Ev +236 QFrame::_ZThn8_N6QFrameD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=20 align=4 + base size=20 base align=4 +QFrame (0xb39bf340) 0 + vptr=((& QFrame::_ZTV6QFrame) + 8u) + QWidget (0xb39c7eb0) 0 + primary-for QFrame (0xb39bf340) + QObject (0xb39c4c6c) 0 + primary-for QWidget (0xb39c7eb0) + QPaintDevice (0xb39c4ca8) 8 + vptr=((& QFrame::_ZTV6QFrame) + 232u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QLineEdit) +8 QLineEdit::metaObject +12 QLineEdit::qt_metacast +16 QLineEdit::qt_metacall +20 QLineEdit::~QLineEdit +24 QLineEdit::~QLineEdit +28 QLineEdit::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLineEdit::sizeHint +68 QLineEdit::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QLineEdit::mousePressEvent +84 QLineEdit::mouseReleaseEvent +88 QLineEdit::mouseDoubleClickEvent +92 QLineEdit::mouseMoveEvent +96 QWidget::wheelEvent +100 QLineEdit::keyPressEvent +104 QWidget::keyReleaseEvent +108 QLineEdit::focusInEvent +112 QLineEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLineEdit::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QLineEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QLineEdit::dragEnterEvent +156 QLineEdit::dragMoveEvent +160 QLineEdit::dragLeaveEvent +164 QLineEdit::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QLineEdit::changeEvent +184 QWidget::metric +188 QLineEdit::inputMethodEvent +192 QLineEdit::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QLineEdit) +232 QLineEdit::_ZThn8_N9QLineEditD1Ev +236 QLineEdit::_ZThn8_N9QLineEditD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=20 align=4 + base size=20 base align=4 +QLineEdit (0xb39bf600) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 8u) + QWidget (0xb39dba00) 0 + primary-for QLineEdit (0xb39bf600) + QObject (0xb39d5f78) 0 + primary-for QWidget (0xb39dba00) + QPaintDevice (0xb39d5fb4) 8 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 232u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QInputDialog) +8 QInputDialog::metaObject +12 QInputDialog::qt_metacast +16 QInputDialog::qt_metacall +20 QInputDialog::~QInputDialog +24 QInputDialog::~QInputDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QInputDialog) +244 QInputDialog::_ZThn8_N12QInputDialogD1Ev +248 QInputDialog::_ZThn8_N12QInputDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=20 align=4 + base size=20 base align=4 +QInputDialog (0xb39bfe80) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 8u) + QDialog (0xb39bfec0) 0 + primary-for QInputDialog (0xb39bfe80) + QWidget (0xb37f23c0) 0 + primary-for QDialog (0xb39bfec0) + QObject (0xb38033fc) 0 + primary-for QWidget (0xb37f23c0) + QPaintDevice (0xb3803438) 8 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 244u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMessageBox) +8 QMessageBox::metaObject +12 QMessageBox::qt_metacast +16 QMessageBox::qt_metacall +20 QMessageBox::~QMessageBox +24 QMessageBox::~QMessageBox +28 QMessageBox::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QMessageBox::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QMessageBox::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QMessageBox::resizeEvent +136 QMessageBox::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QMessageBox::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QMessageBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QMessageBox) +244 QMessageBox::_ZThn8_N11QMessageBoxD1Ev +248 QMessageBox::_ZThn8_N11QMessageBoxD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=20 align=4 + base size=20 base align=4 +QMessageBox (0xb3812280) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 8u) + QDialog (0xb38122c0) 0 + primary-for QMessageBox (0xb3812280) + QWidget (0xb3816780) 0 + primary-for QDialog (0xb38122c0) + QObject (0xb3815690) 0 + primary-for QWidget (0xb3816780) + QPaintDevice (0xb38156cc) 8 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 244u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb382f528) 0 + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QPageSetupDialog) +8 QPageSetupDialog::metaObject +12 QPageSetupDialog::qt_metacast +16 QPageSetupDialog::qt_metacall +20 QPageSetupDialog::~QPageSetupDialog +24 QPageSetupDialog::~QPageSetupDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 QPageSetupDialog::exec +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI16QPageSetupDialog) +248 QPageSetupDialog::_ZThn8_N16QPageSetupDialogD1Ev +252 QPageSetupDialog::_ZThn8_N16QPageSetupDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=20 align=4 + base size=20 base align=4 +QPageSetupDialog (0xb38127c0) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 8u) + QAbstractPageSetupDialog (0xb3812800) 0 + primary-for QPageSetupDialog (0xb38127c0) + QDialog (0xb3812840) 0 + primary-for QAbstractPageSetupDialog (0xb3812800) + QWidget (0xb384d550) 0 + primary-for QDialog (0xb3812840) + QObject (0xb38547f8) 0 + primary-for QWidget (0xb384d550) + QPaintDevice (0xb3854834) 8 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 248u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QUnixPrintWidget) +8 QUnixPrintWidget::metaObject +12 QUnixPrintWidget::qt_metacast +16 QUnixPrintWidget::qt_metacall +20 QUnixPrintWidget::~QUnixPrintWidget +24 QUnixPrintWidget::~QUnixPrintWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI16QUnixPrintWidget) +232 QUnixPrintWidget::_ZThn8_N16QUnixPrintWidgetD1Ev +236 QUnixPrintWidget::_ZThn8_N16QUnixPrintWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=24 align=4 + base size=24 base align=4 +QUnixPrintWidget (0xb3812b00) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 8u) + QWidget (0xb3863a50) 0 + primary-for QUnixPrintWidget (0xb3812b00) + QObject (0xb386b438) 0 + primary-for QWidget (0xb3863a50) + QPaintDevice (0xb386b474) 8 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 232u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPrintDialog) +8 QPrintDialog::metaObject +12 QPrintDialog::qt_metacast +16 QPrintDialog::qt_metacall +20 QPrintDialog::~QPrintDialog +24 QPrintDialog::~QPrintDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QPrintDialog::accept +232 QDialog::reject +236 QPrintDialog::exec +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI12QPrintDialog) +248 QPrintDialog::_ZThn8_N12QPrintDialogD1Ev +252 QPrintDialog::_ZThn8_N12QPrintDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=20 align=4 + base size=20 base align=4 +QPrintDialog (0xb3812d40) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 8u) + QAbstractPrintDialog (0xb3812d80) 0 + primary-for QPrintDialog (0xb3812d40) + QDialog (0xb3812dc0) 0 + primary-for QAbstractPrintDialog (0xb3812d80) + QWidget (0xb38729b0) 0 + primary-for QDialog (0xb3812dc0) + QObject (0xb386bc30) 0 + primary-for QWidget (0xb38729b0) + QPaintDevice (0xb386bc6c) 8 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 248u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +8 QPrintPreviewDialog::metaObject +12 QPrintPreviewDialog::qt_metacast +16 QPrintPreviewDialog::qt_metacall +20 QPrintPreviewDialog::~QPrintPreviewDialog +24 QPrintPreviewDialog::~QPrintPreviewDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QPrintPreviewDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +244 QPrintPreviewDialog::_ZThn8_N19QPrintPreviewDialogD1Ev +248 QPrintPreviewDialog::_ZThn8_N19QPrintPreviewDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=24 align=4 + base size=24 base align=4 +QPrintPreviewDialog (0xb3885080) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 8u) + QDialog (0xb38850c0) 0 + primary-for QPrintPreviewDialog (0xb3885080) + QWidget (0xb387cd70) 0 + primary-for QDialog (0xb38850c0) + QObject (0xb38835a0) 0 + primary-for QWidget (0xb387cd70) + QPaintDevice (0xb38835dc) 8 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 244u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QProgressDialog) +8 QProgressDialog::metaObject +12 QProgressDialog::qt_metacast +16 QProgressDialog::qt_metacall +20 QProgressDialog::~QProgressDialog +24 QProgressDialog::~QProgressDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QProgressDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QProgressDialog::resizeEvent +136 QProgressDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QProgressDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QProgressDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI15QProgressDialog) +244 QProgressDialog::_ZThn8_N15QProgressDialogD1Ev +248 QProgressDialog::_ZThn8_N15QProgressDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=20 align=4 + base size=20 base align=4 +QProgressDialog (0xb3885380) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 8u) + QDialog (0xb38853c0) 0 + primary-for QProgressDialog (0xb3885380) + QWidget (0xb3892320) 0 + primary-for QDialog (0xb38853c0) + QObject (0xb3896000) 0 + primary-for QWidget (0xb3892320) + QPaintDevice (0xb389603c) 8 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 244u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QWizard) +8 QWizard::metaObject +12 QWizard::qt_metacast +16 QWizard::qt_metacall +20 QWizard::~QWizard +24 QWizard::~QWizard +28 QWizard::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWizard::setVisible +64 QWizard::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWizard::paintEvent +128 QWidget::moveEvent +132 QWizard::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QWizard::done +228 QDialog::accept +232 QDialog::reject +236 QWizard::validateCurrentPage +240 QWizard::nextId +244 QWizard::initializePage +248 QWizard::cleanupPage +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI7QWizard) +260 QWizard::_ZThn8_N7QWizardD1Ev +264 QWizard::_ZThn8_N7QWizardD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=20 align=4 + base size=20 base align=4 +QWizard (0xb3885680) 0 + vptr=((& QWizard::_ZTV7QWizard) + 8u) + QDialog (0xb38856c0) 0 + primary-for QWizard (0xb3885680) + QWidget (0xb389ebe0) 0 + primary-for QDialog (0xb38856c0) + QObject (0xb3896ce4) 0 + primary-for QWidget (0xb389ebe0) + QPaintDevice (0xb3896d20) 8 + vptr=((& QWizard::_ZTV7QWizard) + 260u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb38bf03c) 0 + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWizardPage) +8 QWizardPage::metaObject +12 QWizardPage::qt_metacast +16 QWizardPage::qt_metacall +20 QWizardPage::~QWizardPage +24 QWizardPage::~QWizardPage +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QWizardPage::initializePage +228 QWizardPage::cleanupPage +232 QWizardPage::validatePage +236 QWizardPage::isComplete +240 QWizardPage::nextId +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI11QWizardPage) +252 QWizardPage::_ZThn8_N11QWizardPageD1Ev +256 QWizardPage::_ZThn8_N11QWizardPageD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=20 align=4 + base size=20 base align=4 +QWizardPage (0xb3885a40) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 8u) + QWidget (0xb38c3a50) 0 + primary-for QWizardPage (0xb3885a40) + QObject (0xb38bfbf4) 0 + primary-for QWidget (0xb38c3a50) + QPaintDevice (0xb38bfc30) 8 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 252u) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QGraphicsItem) +8 QGraphicsItem::~QGraphicsItem +12 QGraphicsItem::~QGraphicsItem +16 QGraphicsItem::advance +20 __cxa_pure_virtual +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsItem::isObscuredBy +44 QGraphicsItem::opaqueArea +48 __cxa_pure_virtual +52 QGraphicsItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QGraphicsItem + size=8 align=4 + base size=8 base align=4 +QGraphicsItem (0xb36d0960) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3709078) 0 + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +8 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +12 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +16 QGraphicsItem::advance +20 __cxa_pure_virtual +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QAbstractGraphicsShapeItem::isObscuredBy +44 QAbstractGraphicsShapeItem::opaqueArea +48 __cxa_pure_virtual +52 QGraphicsItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=8 align=4 + base size=8 base align=4 +QAbstractGraphicsShapeItem (0xb371e400) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 8u) + QGraphicsItem (0xb372c1e0) 0 + primary-for QAbstractGraphicsShapeItem (0xb371e400) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsPathItem) +8 QGraphicsPathItem::~QGraphicsPathItem +12 QGraphicsPathItem::~QGraphicsPathItem +16 QGraphicsItem::advance +20 QGraphicsPathItem::boundingRect +24 QGraphicsPathItem::shape +28 QGraphicsPathItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPathItem::isObscuredBy +44 QGraphicsPathItem::opaqueArea +48 QGraphicsPathItem::paint +52 QGraphicsPathItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPathItem::supportsExtension +148 QGraphicsPathItem::setExtension +152 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPathItem (0xb371e500) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 8u) + QAbstractGraphicsShapeItem (0xb371e540) 0 + primary-for QGraphicsPathItem (0xb371e500) + QGraphicsItem (0xb372c8e8) 0 + primary-for QAbstractGraphicsShapeItem (0xb371e540) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsRectItem) +8 QGraphicsRectItem::~QGraphicsRectItem +12 QGraphicsRectItem::~QGraphicsRectItem +16 QGraphicsItem::advance +20 QGraphicsRectItem::boundingRect +24 QGraphicsRectItem::shape +28 QGraphicsRectItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsRectItem::isObscuredBy +44 QGraphicsRectItem::opaqueArea +48 QGraphicsRectItem::paint +52 QGraphicsRectItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsRectItem::supportsExtension +148 QGraphicsRectItem::setExtension +152 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=8 align=4 + base size=8 base align=4 +QGraphicsRectItem (0xb371e640) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 8u) + QAbstractGraphicsShapeItem (0xb371e680) 0 + primary-for QGraphicsRectItem (0xb371e640) + QGraphicsItem (0xb373d03c) 0 + primary-for QAbstractGraphicsShapeItem (0xb371e680) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +8 QGraphicsEllipseItem::~QGraphicsEllipseItem +12 QGraphicsEllipseItem::~QGraphicsEllipseItem +16 QGraphicsItem::advance +20 QGraphicsEllipseItem::boundingRect +24 QGraphicsEllipseItem::shape +28 QGraphicsEllipseItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsEllipseItem::isObscuredBy +44 QGraphicsEllipseItem::opaqueArea +48 QGraphicsEllipseItem::paint +52 QGraphicsEllipseItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsEllipseItem::supportsExtension +148 QGraphicsEllipseItem::setExtension +152 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=8 align=4 + base size=8 base align=4 +QGraphicsEllipseItem (0xb371e7c0) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 8u) + QAbstractGraphicsShapeItem (0xb371e800) 0 + primary-for QGraphicsEllipseItem (0xb371e7c0) + QGraphicsItem (0xb373d9d8) 0 + primary-for QAbstractGraphicsShapeItem (0xb371e800) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +8 QGraphicsPolygonItem::~QGraphicsPolygonItem +12 QGraphicsPolygonItem::~QGraphicsPolygonItem +16 QGraphicsItem::advance +20 QGraphicsPolygonItem::boundingRect +24 QGraphicsPolygonItem::shape +28 QGraphicsPolygonItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPolygonItem::isObscuredBy +44 QGraphicsPolygonItem::opaqueArea +48 QGraphicsPolygonItem::paint +52 QGraphicsPolygonItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPolygonItem::supportsExtension +148 QGraphicsPolygonItem::setExtension +152 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPolygonItem (0xb371e940) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 8u) + QAbstractGraphicsShapeItem (0xb371e980) 0 + primary-for QGraphicsPolygonItem (0xb371e940) + QGraphicsItem (0xb375030c) 0 + primary-for QAbstractGraphicsShapeItem (0xb371e980) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsLineItem) +8 QGraphicsLineItem::~QGraphicsLineItem +12 QGraphicsLineItem::~QGraphicsLineItem +16 QGraphicsItem::advance +20 QGraphicsLineItem::boundingRect +24 QGraphicsLineItem::shape +28 QGraphicsLineItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsLineItem::isObscuredBy +44 QGraphicsLineItem::opaqueArea +48 QGraphicsLineItem::paint +52 QGraphicsLineItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsLineItem::supportsExtension +148 QGraphicsLineItem::setExtension +152 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=8 align=4 + base size=8 base align=4 +QGraphicsLineItem (0xb371ea80) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 8u) + QGraphicsItem (0xb3750ac8) 0 + primary-for QGraphicsLineItem (0xb371ea80) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +8 QGraphicsPixmapItem::~QGraphicsPixmapItem +12 QGraphicsPixmapItem::~QGraphicsPixmapItem +16 QGraphicsItem::advance +20 QGraphicsPixmapItem::boundingRect +24 QGraphicsPixmapItem::shape +28 QGraphicsPixmapItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPixmapItem::isObscuredBy +44 QGraphicsPixmapItem::opaqueArea +48 QGraphicsPixmapItem::paint +52 QGraphicsPixmapItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPixmapItem::supportsExtension +148 QGraphicsPixmapItem::setExtension +152 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPixmapItem (0xb371ebc0) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 8u) + QGraphicsItem (0xb375f438) 0 + primary-for QGraphicsPixmapItem (0xb371ebc0) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsTextItem) +8 QGraphicsTextItem::metaObject +12 QGraphicsTextItem::qt_metacast +16 QGraphicsTextItem::qt_metacall +20 QGraphicsTextItem::~QGraphicsTextItem +24 QGraphicsTextItem::~QGraphicsTextItem +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsTextItem::boundingRect +60 QGraphicsTextItem::shape +64 QGraphicsTextItem::contains +68 QGraphicsTextItem::paint +72 QGraphicsTextItem::isObscuredBy +76 QGraphicsTextItem::opaqueArea +80 QGraphicsTextItem::type +84 QGraphicsTextItem::sceneEvent +88 QGraphicsTextItem::mousePressEvent +92 QGraphicsTextItem::mouseMoveEvent +96 QGraphicsTextItem::mouseReleaseEvent +100 QGraphicsTextItem::mouseDoubleClickEvent +104 QGraphicsTextItem::contextMenuEvent +108 QGraphicsTextItem::keyPressEvent +112 QGraphicsTextItem::keyReleaseEvent +116 QGraphicsTextItem::focusInEvent +120 QGraphicsTextItem::focusOutEvent +124 QGraphicsTextItem::dragEnterEvent +128 QGraphicsTextItem::dragLeaveEvent +132 QGraphicsTextItem::dragMoveEvent +136 QGraphicsTextItem::dropEvent +140 QGraphicsTextItem::inputMethodEvent +144 QGraphicsTextItem::hoverEnterEvent +148 QGraphicsTextItem::hoverMoveEvent +152 QGraphicsTextItem::hoverLeaveEvent +156 QGraphicsTextItem::inputMethodQuery +160 QGraphicsTextItem::supportsExtension +164 QGraphicsTextItem::setExtension +168 QGraphicsTextItem::extension +172 (int (*)(...))-0x000000008 +176 (int (*)(...))(& _ZTI17QGraphicsTextItem) +180 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItemD1Ev +184 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItemD0Ev +188 QGraphicsItem::advance +192 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem12boundingRectEv +196 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem5shapeEv +200 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem8containsERK7QPointF +204 QGraphicsItem::collidesWithItem +208 QGraphicsItem::collidesWithPath +212 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +216 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem10opaqueAreaEv +220 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +224 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem4typeEv +228 QGraphicsItem::sceneEventFilter +232 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem10sceneEventEP6QEvent +236 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +240 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +244 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +248 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +252 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +256 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +260 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +264 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +268 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +272 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +276 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +280 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +284 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +288 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +292 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +296 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +300 QGraphicsItem::wheelEvent +304 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +308 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +312 QGraphicsItem::itemChange +316 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +320 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +324 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=20 align=4 + base size=20 base align=4 +QGraphicsTextItem (0xb376e190) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 8u) + QObject (0xb375fd98) 0 + primary-for QGraphicsTextItem (0xb376e190) + QGraphicsItem (0xb375fdd4) 8 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 180u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +8 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +12 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +16 QGraphicsItem::advance +20 QGraphicsSimpleTextItem::boundingRect +24 QGraphicsSimpleTextItem::shape +28 QGraphicsSimpleTextItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsSimpleTextItem::isObscuredBy +44 QGraphicsSimpleTextItem::opaqueArea +48 QGraphicsSimpleTextItem::paint +52 QGraphicsSimpleTextItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsSimpleTextItem::supportsExtension +148 QGraphicsSimpleTextItem::setExtension +152 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=8 align=4 + base size=8 base align=4 +QGraphicsSimpleTextItem (0xb371ef00) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 8u) + QAbstractGraphicsShapeItem (0xb371ef40) 0 + primary-for QGraphicsSimpleTextItem (0xb371ef00) + QGraphicsItem (0xb377830c) 0 + primary-for QAbstractGraphicsShapeItem (0xb371ef40) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +8 QGraphicsItemGroup::~QGraphicsItemGroup +12 QGraphicsItemGroup::~QGraphicsItemGroup +16 QGraphicsItem::advance +20 QGraphicsItemGroup::boundingRect +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsItemGroup::isObscuredBy +44 QGraphicsItemGroup::opaqueArea +48 QGraphicsItemGroup::paint +52 QGraphicsItemGroup::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=8 align=4 + base size=8 base align=4 +QGraphicsItemGroup (0xb378a040) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 8u) + QGraphicsItem (0xb3783780) 0 + primary-for QGraphicsItemGroup (0xb378a040) + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb3783564) 0 empty + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb379512c) 0 empty + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +8 QGraphicsLayoutItem::~QGraphicsLayoutItem +12 QGraphicsLayoutItem::~QGraphicsLayoutItem +16 QGraphicsLayoutItem::setGeometry +20 QGraphicsLayoutItem::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=8 align=4 + base size=8 base align=4 +QGraphicsLayoutItem (0xb37952d0) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 8u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QGraphicsLayout) +8 QGraphicsLayout::~QGraphicsLayout +12 QGraphicsLayout::~QGraphicsLayout +16 QGraphicsLayoutItem::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 __cxa_pure_virtual +32 QGraphicsLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QGraphicsLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsLayout (0xb378a7c0) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 8u) + QGraphicsLayoutItem (0xb37aa12c) 0 + primary-for QGraphicsLayout (0xb378a7c0) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +8 QGraphicsGridLayout::~QGraphicsGridLayout +12 QGraphicsGridLayout::~QGraphicsGridLayout +16 QGraphicsGridLayout::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 QGraphicsGridLayout::sizeHint +32 QGraphicsGridLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 QGraphicsGridLayout::count +44 QGraphicsGridLayout::itemAt +48 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsGridLayout (0xb378a8c0) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 8u) + QGraphicsLayout (0xb378a900) 0 + primary-for QGraphicsGridLayout (0xb378a8c0) + QGraphicsLayoutItem (0xb37aa870) 0 + primary-for QGraphicsLayout (0xb378a900) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +8 QGraphicsItemAnimation::metaObject +12 QGraphicsItemAnimation::qt_metacast +16 QGraphicsItemAnimation::qt_metacall +20 QGraphicsItemAnimation::~QGraphicsItemAnimation +24 QGraphicsItemAnimation::~QGraphicsItemAnimation +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsItemAnimation::beforeAnimationStep +60 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=12 align=4 + base size=12 base align=4 +QGraphicsItemAnimation (0xb378aa40) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 8u) + QObject (0xb37bf1e0) 0 + primary-for QGraphicsItemAnimation (0xb378aa40) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +8 QGraphicsLinearLayout::~QGraphicsLinearLayout +12 QGraphicsLinearLayout::~QGraphicsLinearLayout +16 QGraphicsLinearLayout::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 QGraphicsLinearLayout::sizeHint +32 QGraphicsLinearLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 QGraphicsLinearLayout::count +44 QGraphicsLinearLayout::itemAt +48 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsLinearLayout (0xb378ac80) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 8u) + QGraphicsLayout (0xb378acc0) 0 + primary-for QGraphicsLinearLayout (0xb378ac80) + QGraphicsLayoutItem (0xb37bfbb8) 0 + primary-for QGraphicsLayout (0xb378acc0) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QGraphicsWidget) +8 QGraphicsWidget::metaObject +12 QGraphicsWidget::qt_metacast +16 QGraphicsWidget::qt_metacall +20 QGraphicsWidget::~QGraphicsWidget +24 QGraphicsWidget::~QGraphicsWidget +28 QGraphicsWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsWidget::setGeometry +60 QGraphicsWidget::getContentsMargins +64 QGraphicsWidget::type +68 QGraphicsWidget::paint +72 QGraphicsWidget::paintWindowFrame +76 QGraphicsWidget::boundingRect +80 QGraphicsWidget::shape +84 QGraphicsWidget::initStyleOption +88 QGraphicsWidget::sizeHint +92 QGraphicsWidget::updateGeometry +96 QGraphicsWidget::itemChange +100 QGraphicsWidget::propertyChange +104 QGraphicsWidget::sceneEvent +108 QGraphicsWidget::windowFrameEvent +112 QGraphicsWidget::windowFrameSectionAt +116 QGraphicsWidget::changeEvent +120 QGraphicsWidget::closeEvent +124 QGraphicsWidget::focusInEvent +128 QGraphicsWidget::focusNextPrevChild +132 QGraphicsWidget::focusOutEvent +136 QGraphicsWidget::hideEvent +140 QGraphicsWidget::moveEvent +144 QGraphicsWidget::polishEvent +148 QGraphicsWidget::resizeEvent +152 QGraphicsWidget::showEvent +156 QGraphicsWidget::hoverMoveEvent +160 QGraphicsWidget::hoverLeaveEvent +164 QGraphicsWidget::grabMouseEvent +168 QGraphicsWidget::ungrabMouseEvent +172 QGraphicsWidget::grabKeyboardEvent +176 QGraphicsWidget::ungrabKeyboardEvent +180 (int (*)(...))-0x000000008 +184 (int (*)(...))(& _ZTI15QGraphicsWidget) +188 QGraphicsWidget::_ZThn8_N15QGraphicsWidgetD1Ev +192 QGraphicsWidget::_ZThn8_N15QGraphicsWidgetD0Ev +196 QGraphicsItem::advance +200 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget12boundingRectEv +204 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget5shapeEv +208 QGraphicsItem::contains +212 QGraphicsItem::collidesWithItem +216 QGraphicsItem::collidesWithPath +220 QGraphicsItem::isObscuredBy +224 QGraphicsItem::opaqueArea +228 QGraphicsWidget::_ZThn8_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +232 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget4typeEv +236 QGraphicsItem::sceneEventFilter +240 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10sceneEventEP6QEvent +244 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +252 QGraphicsItem::dragLeaveEvent +256 QGraphicsItem::dragMoveEvent +260 QGraphicsItem::dropEvent +264 QGraphicsWidget::_ZThn8_N15QGraphicsWidget12focusInEventEP11QFocusEvent +268 QGraphicsWidget::_ZThn8_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +272 QGraphicsItem::hoverEnterEvent +276 QGraphicsWidget::_ZThn8_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +280 QGraphicsWidget::_ZThn8_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +284 QGraphicsItem::keyPressEvent +288 QGraphicsItem::keyReleaseEvent +292 QGraphicsItem::mousePressEvent +296 QGraphicsItem::mouseMoveEvent +300 QGraphicsItem::mouseReleaseEvent +304 QGraphicsItem::mouseDoubleClickEvent +308 QGraphicsItem::wheelEvent +312 QGraphicsItem::inputMethodEvent +316 QGraphicsItem::inputMethodQuery +320 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +324 QGraphicsItem::supportsExtension +328 QGraphicsItem::setExtension +332 QGraphicsItem::extension +336 (int (*)(...))-0x000000010 +340 (int (*)(...))(& _ZTI15QGraphicsWidget) +344 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +348 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +352 QGraphicsWidget::_ZThn16_N15QGraphicsWidget11setGeometryERK6QRectF +356 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +360 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14updateGeometryEv +364 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=24 align=4 + base size=24 base align=4 +QGraphicsWidget (0xb35da370) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 8u) + QObject (0xb35d8780) 0 + primary-for QGraphicsWidget (0xb35da370) + QGraphicsItem (0xb35d87bc) 8 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 188u) + QGraphicsLayoutItem (0xb35d87f8) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 344u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 101u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +8 QGraphicsProxyWidget::metaObject +12 QGraphicsProxyWidget::qt_metacast +16 QGraphicsProxyWidget::qt_metacall +20 QGraphicsProxyWidget::~QGraphicsProxyWidget +24 QGraphicsProxyWidget::~QGraphicsProxyWidget +28 QGraphicsProxyWidget::event +32 QGraphicsProxyWidget::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsProxyWidget::setGeometry +60 QGraphicsWidget::getContentsMargins +64 QGraphicsProxyWidget::type +68 QGraphicsProxyWidget::paint +72 QGraphicsWidget::paintWindowFrame +76 QGraphicsWidget::boundingRect +80 QGraphicsWidget::shape +84 QGraphicsWidget::initStyleOption +88 QGraphicsProxyWidget::sizeHint +92 QGraphicsWidget::updateGeometry +96 QGraphicsProxyWidget::itemChange +100 QGraphicsWidget::propertyChange +104 QGraphicsWidget::sceneEvent +108 QGraphicsWidget::windowFrameEvent +112 QGraphicsWidget::windowFrameSectionAt +116 QGraphicsWidget::changeEvent +120 QGraphicsWidget::closeEvent +124 QGraphicsProxyWidget::focusInEvent +128 QGraphicsProxyWidget::focusNextPrevChild +132 QGraphicsProxyWidget::focusOutEvent +136 QGraphicsProxyWidget::hideEvent +140 QGraphicsWidget::moveEvent +144 QGraphicsWidget::polishEvent +148 QGraphicsProxyWidget::resizeEvent +152 QGraphicsProxyWidget::showEvent +156 QGraphicsProxyWidget::hoverMoveEvent +160 QGraphicsProxyWidget::hoverLeaveEvent +164 QGraphicsProxyWidget::grabMouseEvent +168 QGraphicsProxyWidget::ungrabMouseEvent +172 QGraphicsWidget::grabKeyboardEvent +176 QGraphicsWidget::ungrabKeyboardEvent +180 QGraphicsProxyWidget::contextMenuEvent +184 QGraphicsProxyWidget::hoverEnterEvent +188 QGraphicsProxyWidget::mouseMoveEvent +192 QGraphicsProxyWidget::mousePressEvent +196 QGraphicsProxyWidget::mouseReleaseEvent +200 QGraphicsProxyWidget::mouseDoubleClickEvent +204 QGraphicsProxyWidget::wheelEvent +208 QGraphicsProxyWidget::keyPressEvent +212 QGraphicsProxyWidget::keyReleaseEvent +216 (int (*)(...))-0x000000008 +220 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +224 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidgetD1Ev +228 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidgetD0Ev +232 QGraphicsItem::advance +236 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget12boundingRectEv +240 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget5shapeEv +244 QGraphicsItem::contains +248 QGraphicsItem::collidesWithItem +252 QGraphicsItem::collidesWithPath +256 QGraphicsItem::isObscuredBy +260 QGraphicsItem::opaqueArea +264 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +268 QGraphicsProxyWidget::_ZThn8_NK20QGraphicsProxyWidget4typeEv +272 QGraphicsItem::sceneEventFilter +276 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10sceneEventEP6QEvent +280 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +284 QGraphicsItem::dragEnterEvent +288 QGraphicsItem::dragLeaveEvent +292 QGraphicsItem::dragMoveEvent +296 QGraphicsItem::dropEvent +300 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +304 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +308 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +312 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +316 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +320 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +324 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +328 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +332 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +336 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +340 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +344 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +348 QGraphicsItem::inputMethodEvent +352 QGraphicsItem::inputMethodQuery +356 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +360 QGraphicsItem::supportsExtension +364 QGraphicsItem::setExtension +368 QGraphicsItem::extension +372 (int (*)(...))-0x000000010 +376 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +380 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +384 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +388 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget11setGeometryERK6QRectF +392 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +396 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14updateGeometryEv +400 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=24 align=4 + base size=24 base align=4 +QGraphicsProxyWidget (0xb35f5180) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 8u) + QGraphicsWidget (0xb35ec910) 0 + primary-for QGraphicsProxyWidget (0xb35f5180) + QObject (0xb35f0f3c) 0 + primary-for QGraphicsWidget (0xb35ec910) + QGraphicsItem (0xb35f0f78) 8 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 224u) + QGraphicsLayoutItem (0xb35f0fb4) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 380u) + +Class QPen + size=4 align=4 + base size=4 base align=4 +QPen (0xb360d2d0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb360db40) 0 empty + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QGraphicsScene) +8 QGraphicsScene::metaObject +12 QGraphicsScene::qt_metacast +16 QGraphicsScene::qt_metacall +20 QGraphicsScene::~QGraphicsScene +24 QGraphicsScene::~QGraphicsScene +28 QGraphicsScene::event +32 QGraphicsScene::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsScene::inputMethodQuery +60 QGraphicsScene::contextMenuEvent +64 QGraphicsScene::dragEnterEvent +68 QGraphicsScene::dragMoveEvent +72 QGraphicsScene::dragLeaveEvent +76 QGraphicsScene::dropEvent +80 QGraphicsScene::focusInEvent +84 QGraphicsScene::focusOutEvent +88 QGraphicsScene::helpEvent +92 QGraphicsScene::keyPressEvent +96 QGraphicsScene::keyReleaseEvent +100 QGraphicsScene::mousePressEvent +104 QGraphicsScene::mouseMoveEvent +108 QGraphicsScene::mouseReleaseEvent +112 QGraphicsScene::mouseDoubleClickEvent +116 QGraphicsScene::wheelEvent +120 QGraphicsScene::inputMethodEvent +124 QGraphicsScene::drawBackground +128 QGraphicsScene::drawForeground +132 QGraphicsScene::drawItems + +Class QGraphicsScene + size=8 align=4 + base size=8 base align=4 +QGraphicsScene (0xb35f56c0) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 8u) + QObject (0xb360ddd4) 0 + primary-for QGraphicsScene (0xb35f56c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3620b04) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3645528) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb36454b0) 0 + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +8 QGraphicsSceneEvent::~QGraphicsSceneEvent +12 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneEvent (0xb35f5d80) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 8u) + QEvent (0xb365fd5c) 0 + primary-for QGraphicsSceneEvent (0xb35f5d80) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +8 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +12 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneMouseEvent (0xb35f5e80) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 8u) + QGraphicsSceneEvent (0xb35f5ec0) 0 + primary-for QGraphicsSceneMouseEvent (0xb35f5e80) + QEvent (0xb36731e0) 0 + primary-for QGraphicsSceneEvent (0xb35f5ec0) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +8 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +12 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneWheelEvent (0xb35f5fc0) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 8u) + QGraphicsSceneEvent (0xb367d000) 0 + primary-for QGraphicsSceneWheelEvent (0xb35f5fc0) + QEvent (0xb3673618) 0 + primary-for QGraphicsSceneEvent (0xb367d000) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +8 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +12 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneContextMenuEvent (0xb367d100) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 8u) + QGraphicsSceneEvent (0xb367d140) 0 + primary-for QGraphicsSceneContextMenuEvent (0xb367d100) + QEvent (0xb3673a50) 0 + primary-for QGraphicsSceneEvent (0xb367d140) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +8 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +12 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneHoverEvent (0xb367d240) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 8u) + QGraphicsSceneEvent (0xb367d280) 0 + primary-for QGraphicsSceneHoverEvent (0xb367d240) + QEvent (0xb3673f78) 0 + primary-for QGraphicsSceneEvent (0xb367d280) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +8 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +12 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneHelpEvent (0xb367d380) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 8u) + QGraphicsSceneEvent (0xb367d3c0) 0 + primary-for QGraphicsSceneHelpEvent (0xb367d380) + QEvent (0xb368b30c) 0 + primary-for QGraphicsSceneEvent (0xb367d3c0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +8 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +12 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneDragDropEvent (0xb367d4c0) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 8u) + QGraphicsSceneEvent (0xb367d500) 0 + primary-for QGraphicsSceneDragDropEvent (0xb367d4c0) + QEvent (0xb368b744) 0 + primary-for QGraphicsSceneEvent (0xb367d500) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +8 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +12 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneResizeEvent (0xb367d600) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 8u) + QGraphicsSceneEvent (0xb367d640) 0 + primary-for QGraphicsSceneResizeEvent (0xb367d600) + QEvent (0xb368bb7c) 0 + primary-for QGraphicsSceneEvent (0xb367d640) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +8 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +12 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneMoveEvent (0xb367d740) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 8u) + QGraphicsSceneEvent (0xb367d780) 0 + primary-for QGraphicsSceneMoveEvent (0xb367d740) + QEvent (0xb368bec4) 0 + primary-for QGraphicsSceneEvent (0xb367d780) + +Class QTextOption::Tab + size=16 align=4 + base size=14 base align=4 +QTextOption::Tab (0xb369d12c) 0 + +Class QTextOption + size=24 align=4 + base size=24 base align=4 +QTextOption (0xb369d0f0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb36a88ac) 0 + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb36b7e88) 0 empty + +Class QPainter + size=4 align=4 + base size=4 base align=4 +QPainter (0xb36cb1a4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb36cbc6c) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb352d6cc) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb352d654) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb352d834) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb352d7bc) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb352df78) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb352df00) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb35750f0) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3575078) 0 + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractScrollArea) +8 QAbstractScrollArea::metaObject +12 QAbstractScrollArea::qt_metacast +16 QAbstractScrollArea::qt_metacall +20 QAbstractScrollArea::~QAbstractScrollArea +24 QAbstractScrollArea::~QAbstractScrollArea +28 QAbstractScrollArea::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QAbstractScrollArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QAbstractScrollArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI19QAbstractScrollArea) +240 QAbstractScrollArea::_ZThn8_N19QAbstractScrollAreaD1Ev +244 QAbstractScrollArea::_ZThn8_N19QAbstractScrollAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=20 align=4 + base size=20 base align=4 +QAbstractScrollArea (0xb3577e40) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 8u) + QFrame (0xb3577e80) 0 + primary-for QAbstractScrollArea (0xb3577e40) + QWidget (0xb35c43c0) 0 + primary-for QFrame (0xb3577e80) + QObject (0xb35b9bb8) 0 + primary-for QWidget (0xb35c43c0) + QPaintDevice (0xb35b9bf4) 8 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 240u) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QScrollArea) +8 QScrollArea::metaObject +12 QScrollArea::qt_metacast +16 QScrollArea::qt_metacall +20 QScrollArea::~QScrollArea +24 QScrollArea::~QScrollArea +28 QScrollArea::event +32 QScrollArea::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QScrollArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QScrollArea::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QScrollArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI11QScrollArea) +240 QScrollArea::_ZThn8_N11QScrollAreaD1Ev +244 QScrollArea::_ZThn8_N11QScrollAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=20 align=4 + base size=20 base align=4 +QScrollArea (0xb33d5140) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 8u) + QAbstractScrollArea (0xb33d5180) 0 + primary-for QScrollArea (0xb33d5140) + QFrame (0xb33d51c0) 0 + primary-for QAbstractScrollArea (0xb33d5180) + QWidget (0xb35cddc0) 0 + primary-for QFrame (0xb33d51c0) + QObject (0xb35cab04) 0 + primary-for QWidget (0xb35cddc0) + QPaintDevice (0xb35cab40) 8 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 240u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QGraphicsView) +8 QGraphicsView::metaObject +12 QGraphicsView::qt_metacast +16 QGraphicsView::qt_metacall +20 QGraphicsView::~QGraphicsView +24 QGraphicsView::~QGraphicsView +28 QGraphicsView::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QGraphicsView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGraphicsView::mousePressEvent +84 QGraphicsView::mouseReleaseEvent +88 QGraphicsView::mouseDoubleClickEvent +92 QGraphicsView::mouseMoveEvent +96 QGraphicsView::wheelEvent +100 QGraphicsView::keyPressEvent +104 QGraphicsView::keyReleaseEvent +108 QGraphicsView::focusInEvent +112 QGraphicsView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGraphicsView::paintEvent +128 QWidget::moveEvent +132 QGraphicsView::resizeEvent +136 QWidget::closeEvent +140 QGraphicsView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QGraphicsView::dragEnterEvent +156 QGraphicsView::dragMoveEvent +160 QGraphicsView::dragLeaveEvent +164 QGraphicsView::dropEvent +168 QGraphicsView::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QGraphicsView::inputMethodEvent +192 QGraphicsView::inputMethodQuery +196 QGraphicsView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QGraphicsView::viewportEvent +228 QGraphicsView::scrollContentsBy +232 QGraphicsView::drawBackground +236 QGraphicsView::drawForeground +240 QGraphicsView::drawItems +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI13QGraphicsView) +252 QGraphicsView::_ZThn8_N13QGraphicsViewD1Ev +256 QGraphicsView::_ZThn8_N13QGraphicsViewD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=20 align=4 + base size=20 base align=4 +QGraphicsView (0xb33d5480) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 8u) + QAbstractScrollArea (0xb33d54c0) 0 + primary-for QGraphicsView (0xb33d5480) + QFrame (0xb33d5500) 0 + primary-for QAbstractScrollArea (0xb33d54c0) + QWidget (0xb33dfc30) 0 + primary-for QFrame (0xb33d5500) + QObject (0xb33e09d8) 0 + primary-for QWidget (0xb33dfc30) + QPaintDevice (0xb33e0a14) 8 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 252u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb340a258) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb340ae88) 0 + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBitmap) +8 QBitmap::~QBitmap +12 QBitmap::~QBitmap +16 QPixmap::devType +20 QPixmap::paintEngine +24 QPixmap::metric + +Class QBitmap + size=12 align=4 + base size=12 base align=4 +QBitmap (0xb33d5c40) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 8u) + QPixmap (0xb33d5c80) 0 + primary-for QBitmap (0xb33d5c40) + QPaintDevice (0xb343f690) 0 + primary-for QPixmap (0xb33d5c80) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QIconEngine) +8 QIconEngine::~QIconEngine +12 QIconEngine::~QIconEngine +16 __cxa_pure_virtual +20 QIconEngine::actualSize +24 QIconEngine::pixmap +28 QIconEngine::addPixmap +32 QIconEngine::addFile + +Class QIconEngine + size=4 align=4 + base size=4 base align=4 +QIconEngine (0xb344dd20) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 8u) + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QIconEngineV2) +8 QIconEngineV2::~QIconEngineV2 +12 QIconEngineV2::~QIconEngineV2 +16 __cxa_pure_virtual +20 QIconEngine::actualSize +24 QIconEngine::pixmap +28 QIconEngine::addPixmap +32 QIconEngine::addFile +36 QIconEngineV2::key +40 QIconEngineV2::clone +44 QIconEngineV2::read +48 QIconEngineV2::write +52 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=4 align=4 + base size=4 base align=4 +QIconEngineV2 (0xb3453480) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 8u) + QIconEngine (0xb34610b4) 0 nearly-empty + primary-for QIconEngineV2 (0xb3453480) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +8 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +12 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=4 align=4 + base size=4 base align=4 +QIconEngineFactoryInterface (0xb3453500) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 8u) + QFactoryInterface (0xb3461258) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0xb3453500) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QIconEnginePlugin) +8 QIconEnginePlugin::metaObject +12 QIconEnginePlugin::qt_metacast +16 QIconEnginePlugin::qt_metacall +20 QIconEnginePlugin::~QIconEnginePlugin +24 QIconEnginePlugin::~QIconEnginePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI17QIconEnginePlugin) +72 QIconEnginePlugin::_ZThn8_N17QIconEnginePluginD1Ev +76 QIconEnginePlugin::_ZThn8_N17QIconEnginePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QIconEnginePlugin + size=12 align=4 + base size=12 base align=4 +QIconEnginePlugin (0xb3463960) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 8u) + QObject (0xb34615a0) 0 + primary-for QIconEnginePlugin (0xb3463960) + QIconEngineFactoryInterface (0xb34536c0) 8 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 72u) + QFactoryInterface (0xb34615dc) 8 nearly-empty + primary-for QIconEngineFactoryInterface (0xb34536c0) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +8 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +12 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=4 align=4 + base size=4 base align=4 +QIconEngineFactoryInterfaceV2 (0xb3453900) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 8u) + QFactoryInterface (0xb3461dd4) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0xb3453900) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +8 QIconEnginePluginV2::metaObject +12 QIconEnginePluginV2::qt_metacast +16 QIconEnginePluginV2::qt_metacall +20 QIconEnginePluginV2::~QIconEnginePluginV2 +24 QIconEnginePluginV2::~QIconEnginePluginV2 +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +72 QIconEnginePluginV2::_ZThn8_N19QIconEnginePluginV2D1Ev +76 QIconEnginePluginV2::_ZThn8_N19QIconEnginePluginV2D0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=12 align=4 + base size=12 base align=4 +QIconEnginePluginV2 (0xb346be60) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 8u) + QObject (0xb347403c) 0 + primary-for QIconEnginePluginV2 (0xb346be60) + QIconEngineFactoryInterfaceV2 (0xb3453a80) 8 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 72u) + QFactoryInterface (0xb3474078) 8 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0xb3453a80) + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QImageIOHandler) +8 QImageIOHandler::~QImageIOHandler +12 QImageIOHandler::~QImageIOHandler +16 QImageIOHandler::name +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QImageIOHandler::write +32 QImageIOHandler::option +36 QImageIOHandler::setOption +40 QImageIOHandler::supportsOption +44 QImageIOHandler::jumpToNextImage +48 QImageIOHandler::jumpToImage +52 QImageIOHandler::loopCount +56 QImageIOHandler::imageCount +60 QImageIOHandler::nextImageDelay +64 QImageIOHandler::currentImageNumber +68 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=8 align=4 + base size=8 base align=4 +QImageIOHandler (0xb34748ac) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 8u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +8 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +12 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=4 align=4 + base size=4 base align=4 +QImageIOHandlerFactoryInterface (0xb3453d80) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 8u) + QFactoryInterface (0xb3474f3c) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0xb3453d80) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QImageIOPlugin) +8 QImageIOPlugin::metaObject +12 QImageIOPlugin::qt_metacast +16 QImageIOPlugin::qt_metacall +20 QImageIOPlugin::~QImageIOPlugin +24 QImageIOPlugin::~QImageIOPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 (int (*)(...))-0x000000008 +72 (int (*)(...))(& _ZTI14QImageIOPlugin) +76 QImageIOPlugin::_ZThn8_N14QImageIOPluginD1Ev +80 QImageIOPlugin::_ZThn8_N14QImageIOPluginD0Ev +84 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QImageIOPlugin + size=12 align=4 + base size=12 base align=4 +QImageIOPlugin (0xb3484b90) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 8u) + QObject (0xb348921c) 0 + primary-for QImageIOPlugin (0xb3484b90) + QImageIOHandlerFactoryInterface (0xb3453f00) 8 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 76u) + QFactoryInterface (0xb3489258) 8 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0xb3453f00) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3489d20) 0 + +Class QImageReader + size=4 align=4 + base size=4 base align=4 +QImageReader (0xb349d8ac) 0 + +Class QImageWriter + size=4 align=4 + base size=4 base align=4 +QImageWriter (0xb349dd5c) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QMovie) +8 QMovie::metaObject +12 QMovie::qt_metacast +16 QMovie::qt_metacall +20 QMovie::~QMovie +24 QMovie::~QMovie +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QMovie + size=8 align=4 + base size=8 base align=4 +QMovie (0xb3490240) 0 + vptr=((& QMovie::_ZTV6QMovie) + 8u) + QObject (0xb34bb1e0) 0 + primary-for QMovie (0xb3490240) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QPicture) +8 QPicture::~QPicture +12 QPicture::~QPicture +16 QPicture::devType +20 QPicture::paintEngine +24 QPicture::metric +28 QPicture::setData + +Class QPicture + size=12 align=4 + base size=12 base align=4 +QPicture (0xb3490800) 0 + vptr=((& QPicture::_ZTV8QPicture) + 8u) + QPaintDevice (0xb32db0b4) 0 + primary-for QPicture (0xb3490800) + +Class QPictureIO + size=4 align=4 + base size=4 base align=4 +QPictureIO (0xb32dbe4c) 0 + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QPictureFormatInterface) +8 QPictureFormatInterface::~QPictureFormatInterface +12 QPictureFormatInterface::~QPictureFormatInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QPictureFormatInterface + size=4 align=4 + base size=4 base align=4 +QPictureFormatInterface (0xb3490a80) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 8u) + QFactoryInterface (0xb32ed0f0) 0 nearly-empty + primary-for QPictureFormatInterface (0xb3490a80) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +8 QPictureFormatPlugin::metaObject +12 QPictureFormatPlugin::qt_metacast +16 QPictureFormatPlugin::qt_metacall +20 QPictureFormatPlugin::~QPictureFormatPlugin +24 QPictureFormatPlugin::~QPictureFormatPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 QPictureFormatPlugin::loadPicture +64 QPictureFormatPlugin::savePicture +68 __cxa_pure_virtual +72 (int (*)(...))-0x000000008 +76 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +80 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPluginD1Ev +84 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPluginD0Ev +88 __cxa_pure_virtual +92 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +96 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +100 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=12 align=4 + base size=12 base align=4 +QPictureFormatPlugin (0xb32ef3c0) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 8u) + QObject (0xb32ed3fc) 0 + primary-for QPictureFormatPlugin (0xb32ef3c0) + QPictureFormatInterface (0xb3490c40) 8 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 80u) + QFactoryInterface (0xb32ed438) 8 nearly-empty + primary-for QPictureFormatInterface (0xb3490c40) + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0xb32edca8) 0 empty + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QAction) +8 QAction::metaObject +12 QAction::qt_metacast +16 QAction::qt_metacall +20 QAction::~QAction +24 QAction::~QAction +28 QAction::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QAction + size=8 align=4 + base size=8 base align=4 +QAction (0xb3490e80) 0 + vptr=((& QAction::_ZTV7QAction) + 8u) + QObject (0xb32edce4) 0 + primary-for QAction (0xb3490e80) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QActionGroup) +8 QActionGroup::metaObject +12 QActionGroup::qt_metacast +16 QActionGroup::qt_metacall +20 QActionGroup::~QActionGroup +24 QActionGroup::~QActionGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QActionGroup + size=8 align=4 + base size=8 base align=4 +QActionGroup (0xb3310580) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 8u) + QObject (0xb3316e4c) 0 + primary-for QActionGroup (0xb3310580) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3322ca8) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3322c30) 0 + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QInputContext) +8 QInputContext::metaObject +12 QInputContext::qt_metacast +16 QInputContext::qt_metacall +20 QInputContext::~QInputContext +24 QInputContext::~QInputContext +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 QInputContext::update +72 QInputContext::mouseHandler +76 QInputContext::font +80 __cxa_pure_virtual +84 QInputContext::setFocusWidget +88 QInputContext::widgetDestroyed +92 QInputContext::actions +96 QInputContext::x11FilterEvent +100 QInputContext::filterEvent + +Class QInputContext + size=8 align=4 + base size=8 base align=4 +QInputContext (0xb3310a00) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 8u) + QObject (0xb3322e88) 0 + primary-for QInputContext (0xb3310a00) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0xb3348a50) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +8 QInputContextFactoryInterface::~QInputContextFactoryInterface +12 QInputContextFactoryInterface::~QInputContextFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=4 align=4 + base size=4 base align=4 +QInputContextFactoryInterface (0xb3310cc0) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 8u) + QFactoryInterface (0xb3348a8c) 0 nearly-empty + primary-for QInputContextFactoryInterface (0xb3310cc0) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QInputContextPlugin) +8 QInputContextPlugin::metaObject +12 QInputContextPlugin::qt_metacast +16 QInputContextPlugin::qt_metacall +20 QInputContextPlugin::~QInputContextPlugin +24 QInputContextPlugin::~QInputContextPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 (int (*)(...))-0x000000008 +80 (int (*)(...))(& _ZTI19QInputContextPlugin) +84 QInputContextPlugin::_ZThn8_N19QInputContextPluginD1Ev +88 QInputContextPlugin::_ZThn8_N19QInputContextPluginD0Ev +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual + +Class QInputContextPlugin + size=12 align=4 + base size=12 base align=4 +QInputContextPlugin (0xb3352000) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 8u) + QObject (0xb3348d98) 0 + primary-for QInputContextPlugin (0xb3352000) + QInputContextFactoryInterface (0xb3310e80) 8 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 84u) + QFactoryInterface (0xb3348dd4) 8 nearly-empty + primary-for QInputContextFactoryInterface (0xb3310e80) + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QValidator) +8 QValidator::metaObject +12 QValidator::qt_metacast +16 QValidator::qt_metacall +20 QValidator::~QValidator +24 QValidator::~QValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 QValidator::fixup + +Class QValidator + size=8 align=4 + base size=8 base align=4 +QValidator (0xb335a0c0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 8u) + QObject (0xb3358528) 0 + primary-for QValidator (0xb335a0c0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QIntValidator) +8 QIntValidator::metaObject +12 QIntValidator::qt_metacast +16 QIntValidator::qt_metacall +20 QIntValidator::~QIntValidator +24 QIntValidator::~QIntValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIntValidator::validate +60 QValidator::fixup +64 QIntValidator::setRange + +Class QIntValidator + size=16 align=4 + base size=16 base align=4 +QIntValidator (0xb335a380) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 8u) + QValidator (0xb335a3c0) 0 + primary-for QIntValidator (0xb335a380) + QObject (0xb3368384) 0 + primary-for QValidator (0xb335a3c0) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QDoubleValidator) +8 QDoubleValidator::metaObject +12 QDoubleValidator::qt_metacast +16 QDoubleValidator::qt_metacall +20 QDoubleValidator::~QDoubleValidator +24 QDoubleValidator::~QDoubleValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDoubleValidator::validate +60 QValidator::fixup +64 QDoubleValidator::setRange + +Class QDoubleValidator + size=28 align=4 + base size=28 base align=4 +QDoubleValidator (0xb335a680) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 8u) + QValidator (0xb335a6c0) 0 + primary-for QDoubleValidator (0xb335a680) + QObject (0xb33752d0) 0 + primary-for QValidator (0xb335a6c0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QRegExpValidator) +8 QRegExpValidator::metaObject +12 QRegExpValidator::qt_metacast +16 QRegExpValidator::qt_metacall +20 QRegExpValidator::~QRegExpValidator +24 QRegExpValidator::~QRegExpValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QRegExpValidator::validate +60 QValidator::fixup + +Class QRegExpValidator + size=12 align=4 + base size=12 base align=4 +QRegExpValidator (0xb335aa40) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 8u) + QValidator (0xb335aa80) 0 + primary-for QRegExpValidator (0xb335aa40) + QObject (0xb33855dc) 0 + primary-for QValidator (0xb335aa80) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QAbstractSpinBox) +8 QAbstractSpinBox::metaObject +12 QAbstractSpinBox::qt_metacast +16 QAbstractSpinBox::qt_metacall +20 QAbstractSpinBox::~QAbstractSpinBox +24 QAbstractSpinBox::~QAbstractSpinBox +28 QAbstractSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSpinBox::validate +228 QAbstractSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI16QAbstractSpinBox) +252 QAbstractSpinBox::_ZThn8_N16QAbstractSpinBoxD1Ev +256 QAbstractSpinBox::_ZThn8_N16QAbstractSpinBoxD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=20 align=4 + base size=20 base align=4 +QAbstractSpinBox (0xb335ad00) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 8u) + QWidget (0xb3391140) 0 + primary-for QAbstractSpinBox (0xb335ad00) + QObject (0xb338f3c0) 0 + primary-for QWidget (0xb3391140) + QPaintDevice (0xb338f3fc) 8 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 252u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb33a65a0) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractSlider) +8 QAbstractSlider::metaObject +12 QAbstractSlider::qt_metacast +16 QAbstractSlider::qt_metacall +20 QAbstractSlider::~QAbstractSlider +24 QAbstractSlider::~QAbstractSlider +28 QAbstractSlider::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSlider::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI15QAbstractSlider) +236 QAbstractSlider::_ZThn8_N15QAbstractSliderD1Ev +240 QAbstractSlider::_ZThn8_N15QAbstractSliderD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=20 align=4 + base size=20 base align=4 +QAbstractSlider (0xb33ae080) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 8u) + QWidget (0xb33ac8c0) 0 + primary-for QAbstractSlider (0xb33ae080) + QObject (0xb33ba168) 0 + primary-for QWidget (0xb33ac8c0) + QPaintDevice (0xb33ba1a4) 8 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 236u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QSlider) +8 QSlider::metaObject +12 QSlider::qt_metacast +16 QSlider::qt_metacall +20 QSlider::~QSlider +24 QSlider::~QSlider +28 QSlider::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSlider::sizeHint +68 QSlider::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSlider::mousePressEvent +84 QSlider::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSlider::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSlider::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSlider::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI7QSlider) +236 QSlider::_ZThn8_N7QSliderD1Ev +240 QSlider::_ZThn8_N7QSliderD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=20 align=4 + base size=20 base align=4 +QSlider (0xb33ae600) 0 + vptr=((& QSlider::_ZTV7QSlider) + 8u) + QAbstractSlider (0xb33ae640) 0 + primary-for QSlider (0xb33ae600) + QWidget (0xb33cdfa0) 0 + primary-for QAbstractSlider (0xb33ae640) + QObject (0xb31da078) 0 + primary-for QWidget (0xb33cdfa0) + QPaintDevice (0xb31da0b4) 8 + vptr=((& QSlider::_ZTV7QSlider) + 236u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QStyle) +8 QStyle::metaObject +12 QStyle::qt_metacast +16 QStyle::qt_metacall +20 QStyle::~QStyle +24 QStyle::~QStyle +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyle::polish +60 QStyle::unpolish +64 QStyle::polish +68 QStyle::unpolish +72 QStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 __cxa_pure_virtual +120 __cxa_pure_virtual +124 __cxa_pure_virtual +128 __cxa_pure_virtual +132 __cxa_pure_virtual +136 __cxa_pure_virtual + +Class QStyle + size=8 align=4 + base size=8 base align=4 +QStyle (0xb33aea00) 0 + vptr=((& QStyle::_ZTV6QStyle) + 8u) + QObject (0xb31eaac8) 0 + primary-for QStyle (0xb33aea00) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3219438) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3233078) 0 + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QTabBar) +8 QTabBar::metaObject +12 QTabBar::qt_metacast +16 QTabBar::qt_metacall +20 QTabBar::~QTabBar +24 QTabBar::~QTabBar +28 QTabBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QTabBar::sizeHint +68 QTabBar::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTabBar::mousePressEvent +84 QTabBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QTabBar::mouseMoveEvent +96 QWidget::wheelEvent +100 QTabBar::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTabBar::paintEvent +128 QWidget::moveEvent +132 QTabBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QTabBar::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTabBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTabBar::tabSizeHint +228 QTabBar::tabInserted +232 QTabBar::tabRemoved +236 QTabBar::tabLayoutChange +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI7QTabBar) +248 QTabBar::_ZThn8_N7QTabBarD1Ev +252 QTabBar::_ZThn8_N7QTabBarD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=20 align=4 + base size=20 base align=4 +QTabBar (0xb33aee80) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 8u) + QWidget (0xb324a140) 0 + primary-for QTabBar (0xb33aee80) + QObject (0xb3233ce4) 0 + primary-for QWidget (0xb324a140) + QPaintDevice (0xb3233d20) 8 + vptr=((& QTabBar::_ZTV7QTabBar) + 248u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTabWidget) +8 QTabWidget::metaObject +12 QTabWidget::qt_metacast +16 QTabWidget::qt_metacall +20 QTabWidget::~QTabWidget +24 QTabWidget::~QTabWidget +28 QTabWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QTabWidget::sizeHint +68 QTabWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QTabWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTabWidget::paintEvent +128 QWidget::moveEvent +132 QTabWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QTabWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTabWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTabWidget::tabInserted +228 QTabWidget::tabRemoved +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI10QTabWidget) +240 QTabWidget::_ZThn8_N10QTabWidgetD1Ev +244 QTabWidget::_ZThn8_N10QTabWidgetD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=20 align=4 + base size=20 base align=4 +QTabWidget (0xb325b180) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 8u) + QWidget (0xb3255aa0) 0 + primary-for QTabWidget (0xb325b180) + QObject (0xb324dd98) 0 + primary-for QWidget (0xb3255aa0) + QPaintDevice (0xb324ddd4) 8 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 240u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QRubberBand) +8 QRubberBand::metaObject +12 QRubberBand::qt_metacast +16 QRubberBand::qt_metacall +20 QRubberBand::~QRubberBand +24 QRubberBand::~QRubberBand +28 QRubberBand::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QRubberBand::paintEvent +128 QRubberBand::moveEvent +132 QRubberBand::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QRubberBand::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QRubberBand::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QRubberBand) +232 QRubberBand::_ZThn8_N11QRubberBandD1Ev +236 QRubberBand::_ZThn8_N11QRubberBandD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=20 align=4 + base size=20 base align=4 +QRubberBand (0xb325b9c0) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 8u) + QWidget (0xb3271dc0) 0 + primary-for QRubberBand (0xb325b9c0) + QObject (0xb328a21c) 0 + primary-for QWidget (0xb3271dc0) + QPaintDevice (0xb328a258) 8 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 232u) + +Class QStyleOption + size=44 align=4 + base size=44 base align=4 +QStyleOption (0xb329c294) 0 + +Class QStyleOptionFocusRect + size=60 align=4 + base size=60 base align=4 +QStyleOptionFocusRect (0xb325be40) 0 + QStyleOption (0xb329c99c) 0 + +Class QStyleOptionFrame + size=52 align=4 + base size=52 base align=4 +QStyleOptionFrame (0xb32a7040) 0 + QStyleOption (0xb329cec4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb32a8654) 0 + +Class QStyleOptionFrameV2 + size=56 align=4 + base size=56 base align=4 +QStyleOptionFrameV2 (0xb32a7240) 0 + QStyleOptionFrame (0xb32a7280) 0 + QStyleOption (0xb32a83c0) 0 + +Class QStyleOptionTabWidgetFrame + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabWidgetFrame (0xb32a76c0) 0 + QStyleOption (0xb32bca14) 0 + +Class QStyleOptionTabBarBase + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabBarBase (0xb32a78c0) 0 + QStyleOption (0xb30d5000) 0 + +Class QStyleOptionHeader + size=80 align=4 + base size=80 base align=4 +QStyleOptionHeader (0xb32a7ac0) 0 + QStyleOption (0xb30d55dc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb30d53fc) 0 + +Class QStyleOptionButton + size=64 align=4 + base size=64 base align=4 +QStyleOptionButton (0xb32a7d80) 0 + QStyleOption (0xb30d5d20) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3106528) 0 + +Class QStyleOptionTab + size=72 align=4 + base size=72 base align=4 +QStyleOptionTab (0xb30f2080) 0 + QStyleOption (0xb3106000) 0 + +Class QStyleOptionTabV2 + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabV2 (0xb30f23c0) 0 + QStyleOptionTab (0xb30f2400) 0 + QStyleOption (0xb3121564) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb313121c) 0 + +Class QStyleOptionToolBar + size=68 align=4 + base size=68 base align=4 +QStyleOptionToolBar (0xb30f2740) 0 + QStyleOption (0xb3121d98) 0 + +Class QStyleOptionProgressBar + size=68 align=4 + base size=65 base align=4 +QStyleOptionProgressBar (0xb30f2a40) 0 + QStyleOption (0xb3149258) 0 + +Class QStyleOptionProgressBarV2 + size=76 align=4 + base size=74 base align=4 +QStyleOptionProgressBarV2 (0xb30f2c80) 0 + QStyleOptionProgressBar (0xb30f2cc0) 0 + QStyleOption (0xb31497bc) 0 + +Class QStyleOptionMenuItem + size=96 align=4 + base size=96 base align=4 +QStyleOptionMenuItem (0xb30f2d00) 0 + QStyleOption (0xb3149bf4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb315d564) 0 + +Class QStyleOptionQ3ListViewItem + size=64 align=4 + base size=64 base align=4 +QStyleOptionQ3ListViewItem (0xb30f2f40) 0 + QStyleOption (0xb315d258) 0 + +Class QStyleOptionQ3DockWindow + size=48 align=4 + base size=46 base align=4 +QStyleOptionQ3DockWindow (0xb316c240) 0 + QStyleOption (0xb317c564) 0 + +Class QStyleOptionDockWidget + size=52 align=4 + base size=51 base align=4 +QStyleOptionDockWidget (0xb316c440) 0 + QStyleOption (0xb317ca8c) 0 + +Class QStyleOptionDockWidgetV2 + size=52 align=4 + base size=52 base align=4 +QStyleOptionDockWidgetV2 (0xb316c640) 0 + QStyleOptionDockWidget (0xb316c680) 0 + QStyleOption (0xb317cfb4) 0 + +Class QStyleOptionViewItem + size=80 align=4 + base size=77 base align=4 +QStyleOptionViewItem (0xb316c9c0) 0 + QStyleOption (0xb3192780) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3192b7c) 0 + +Class QStyleOptionViewItemV2 + size=84 align=4 + base size=84 base align=4 +QStyleOptionViewItemV2 (0xb316cc40) 0 + QStyleOptionViewItem (0xb316cc80) 0 + QStyleOption (0xb3192d5c) 0 + +Class QStyleOptionViewItemV3 + size=92 align=4 + base size=92 base align=4 +QStyleOptionViewItemV3 (0xb31ae0c0) 0 + QStyleOptionViewItemV2 (0xb31ae100) 0 + QStyleOptionViewItem (0xb31ae140) 0 + QStyleOption (0xb31b93fc) 0 + +Class QStyleOptionViewItemV4 + size=128 align=4 + base size=128 base align=4 +QStyleOptionViewItemV4 (0xb31ae480) 0 + QStyleOptionViewItemV3 (0xb31ae4c0) 0 + QStyleOptionViewItemV2 (0xb31ae500) 0 + QStyleOptionViewItem (0xb31ae540) 0 + QStyleOption (0xb31b9bf4) 0 + +Class QStyleOptionToolBox + size=52 align=4 + base size=52 base align=4 +QStyleOptionToolBox (0xb31ae880) 0 + QStyleOption (0xb31cc4b0) 0 + +Class QStyleOptionToolBoxV2 + size=60 align=4 + base size=60 base align=4 +QStyleOptionToolBoxV2 (0xb31aea80) 0 + QStyleOptionToolBox (0xb31aeac0) 0 + QStyleOption (0xb31cc9d8) 0 + +Class QStyleOptionRubberBand + size=52 align=4 + base size=49 base align=4 +QStyleOptionRubberBand (0xb31aee00) 0 + QStyleOption (0xb2fe3348) 0 + +Class QStyleOptionComplex + size=52 align=4 + base size=52 base align=4 +QStyleOptionComplex (0xb2feb000) 0 + QStyleOption (0xb2fe3924) 0 + +Class QStyleOptionSlider + size=104 align=4 + base size=101 base align=4 +QStyleOptionSlider (0xb2feb280) 0 + QStyleOptionComplex (0xb2feb2c0) 0 + QStyleOption (0xb2ff00b4) 0 + +Class QStyleOptionSpinBox + size=64 align=4 + base size=61 base align=4 +QStyleOptionSpinBox (0xb2feb600) 0 + QStyleOptionComplex (0xb2feb640) 0 + QStyleOption (0xb2ff0834) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb2ff0654) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb2ff0fb4) 0 + +Class QStyleOptionQ3ListView + size=84 align=4 + base size=81 base align=4 +QStyleOptionQ3ListView (0xb2feb880) 0 + QStyleOptionComplex (0xb2feb8c0) 0 + QStyleOption (0xb2ff0ec4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3014870) 0 + +Class QStyleOptionToolButton + size=96 align=4 + base size=96 base align=4 +QStyleOptionToolButton (0xb2febb80) 0 + QStyleOptionComplex (0xb2febbc0) 0 + QStyleOption (0xb30144ec) 0 + +Class QStyleOptionComboBox + size=92 align=4 + base size=92 base align=4 +QStyleOptionComboBox (0xb2febec0) 0 + QStyleOptionComplex (0xb2febf00) 0 + QStyleOption (0xb302d870) 0 + +Class QStyleOptionTitleBar + size=68 align=4 + base size=68 base align=4 +QStyleOptionTitleBar (0xb3042100) 0 + QStyleOptionComplex (0xb3042140) 0 + QStyleOption (0xb302ddd4) 0 + +Class QStyleOptionGroupBox + size=88 align=4 + base size=88 base align=4 +QStyleOptionGroupBox (0xb3042380) 0 + QStyleOptionComplex (0xb30423c0) 0 + QStyleOption (0xb304e2d0) 0 + +Class QStyleOptionSizeGrip + size=56 align=4 + base size=56 base align=4 +QStyleOptionSizeGrip (0xb3042640) 0 + QStyleOptionComplex (0xb3042680) 0 + QStyleOption (0xb304e8e8) 0 + +Class QStyleOptionGraphicsItem + size=132 align=4 + base size=132 base align=4 +QStyleOptionGraphicsItem (0xb3042880) 0 + QStyleOption (0xb304ee10) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0xb305f30c) 0 + +Class QStyleHintReturnMask + size=12 align=4 + base size=12 base align=4 +QStyleHintReturnMask (0xb3042c80) 0 + QStyleHintReturn (0xb305f528) 0 + +Class QStyleHintReturnVariant + size=20 align=4 + base size=20 base align=4 +QStyleHintReturnVariant (0xb3042d00) 0 + QStyleHintReturn (0xb305f618) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +8 QAbstractItemDelegate::metaObject +12 QAbstractItemDelegate::qt_metacast +16 QAbstractItemDelegate::qt_metacall +20 QAbstractItemDelegate::~QAbstractItemDelegate +24 QAbstractItemDelegate::~QAbstractItemDelegate +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAbstractItemDelegate::createEditor +68 QAbstractItemDelegate::setEditorData +72 QAbstractItemDelegate::setModelData +76 QAbstractItemDelegate::updateEditorGeometry +80 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=8 align=4 + base size=8 base align=4 +QAbstractItemDelegate (0xb3042fc0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 8u) + QObject (0xb305f870) 0 + primary-for QAbstractItemDelegate (0xb3042fc0) + +Class QItemSelectionRange + size=8 align=4 + base size=8 base align=4 +QItemSelectionRange (0xb3083384) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb309ef3c) 0 empty + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QItemSelectionModel) +8 QItemSelectionModel::metaObject +12 QItemSelectionModel::qt_metacast +16 QItemSelectionModel::qt_metacall +20 QItemSelectionModel::~QItemSelectionModel +24 QItemSelectionModel::~QItemSelectionModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QItemSelectionModel::select +60 QItemSelectionModel::select +64 QItemSelectionModel::clear +68 QItemSelectionModel::reset + +Class QItemSelectionModel + size=8 align=4 + base size=8 base align=4 +QItemSelectionModel (0xb307abc0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 8u) + QObject (0xb30b93c0) 0 + primary-for QItemSelectionModel (0xb307abc0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb30c8654) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb2edd30c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb2edd294) 0 + +Class QItemSelection + size=4 align=4 + base size=4 base align=4 +QItemSelection (0xb2efa000) 0 + QList (0xb2edd348) 0 + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAbstractItemView) +8 QAbstractItemView::metaObject +12 QAbstractItemView::qt_metacast +16 QAbstractItemView::qt_metacall +20 QAbstractItemView::~QAbstractItemView +24 QAbstractItemView::~QAbstractItemView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QAbstractScrollArea::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 __cxa_pure_virtual +248 __cxa_pure_virtual +252 __cxa_pure_virtual +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QAbstractItemView::reset +268 QAbstractItemView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QAbstractItemView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QAbstractItemView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 __cxa_pure_virtual +344 __cxa_pure_virtual +348 __cxa_pure_virtual +352 __cxa_pure_virtual +356 __cxa_pure_virtual +360 __cxa_pure_virtual +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI17QAbstractItemView) +392 QAbstractItemView::_ZThn8_N17QAbstractItemViewD1Ev +396 QAbstractItemView::_ZThn8_N17QAbstractItemViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=20 align=4 + base size=20 base align=4 +QAbstractItemView (0xb2efa180) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 8u) + QAbstractScrollArea (0xb2efa1c0) 0 + primary-for QAbstractItemView (0xb2efa180) + QFrame (0xb2efa200) 0 + primary-for QAbstractScrollArea (0xb2efa1c0) + QWidget (0xb2efc3c0) 0 + primary-for QFrame (0xb2efa200) + QObject (0xb2edd654) 0 + primary-for QWidget (0xb2efc3c0) + QPaintDevice (0xb2edd690) 8 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 392u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb2f1f474) 0 + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractProxyModel) +8 QAbstractProxyModel::metaObject +12 QAbstractProxyModel::qt_metacast +16 QAbstractProxyModel::qt_metacall +20 QAbstractProxyModel::~QAbstractProxyModel +24 QAbstractProxyModel::~QAbstractProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 QAbstractProxyModel::data +80 QAbstractProxyModel::setData +84 QAbstractProxyModel::headerData +88 QAbstractProxyModel::setHeaderData +92 QAbstractProxyModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractProxyModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractProxyModel::submit +164 QAbstractProxyModel::revert +168 QAbstractProxyModel::setSourceModel +172 __cxa_pure_virtual +176 __cxa_pure_virtual +180 QAbstractProxyModel::mapSelectionToSource +184 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=8 align=4 + base size=8 base align=4 +QAbstractProxyModel (0xb2efa5c0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 8u) + QAbstractItemModel (0xb2efa600) 0 + primary-for QAbstractProxyModel (0xb2efa5c0) + QObject (0xb2f3d03c) 0 + primary-for QAbstractItemModel (0xb2efa600) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QColumnView) +8 QColumnView::metaObject +12 QColumnView::qt_metacast +16 QColumnView::qt_metacall +20 QColumnView::~QColumnView +24 QColumnView::~QColumnView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QColumnView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QColumnView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QColumnView::scrollContentsBy +232 QColumnView::setModel +236 QColumnView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QColumnView::visualRect +248 QColumnView::scrollTo +252 QColumnView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QAbstractItemView::reset +268 QColumnView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QColumnView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QColumnView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QAbstractItemView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QColumnView::moveCursor +344 QColumnView::horizontalOffset +348 QColumnView::verticalOffset +352 QColumnView::isIndexHidden +356 QColumnView::setSelection +360 QColumnView::visualRegionForSelection +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QColumnView::createColumn +388 (int (*)(...))-0x000000008 +392 (int (*)(...))(& _ZTI11QColumnView) +396 QColumnView::_ZThn8_N11QColumnViewD1Ev +400 QColumnView::_ZThn8_N11QColumnViewD0Ev +404 QWidget::_ZThn8_NK7QWidget7devTypeEv +408 QWidget::_ZThn8_NK7QWidget11paintEngineEv +412 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=20 align=4 + base size=20 base align=4 +QColumnView (0xb2efa8c0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 8u) + QAbstractItemView (0xb2efa900) 0 + primary-for QColumnView (0xb2efa8c0) + QAbstractScrollArea (0xb2efa940) 0 + primary-for QAbstractItemView (0xb2efa900) + QFrame (0xb2efa980) 0 + primary-for QAbstractScrollArea (0xb2efa940) + QWidget (0xb2f455f0) 0 + primary-for QFrame (0xb2efa980) + QObject (0xb2f3dd5c) 0 + primary-for QWidget (0xb2f455f0) + QPaintDevice (0xb2f3dd98) 8 + vptr=((& QColumnView::_ZTV11QColumnView) + 396u) + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QDataWidgetMapper) +8 QDataWidgetMapper::metaObject +12 QDataWidgetMapper::qt_metacast +16 QDataWidgetMapper::qt_metacall +20 QDataWidgetMapper::~QDataWidgetMapper +24 QDataWidgetMapper::~QDataWidgetMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=8 align=4 + base size=8 base align=4 +QDataWidgetMapper (0xb2efac40) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 8u) + QObject (0xb2f51d20) 0 + primary-for QDataWidgetMapper (0xb2efac40) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFileIconProvider) +8 QFileIconProvider::~QFileIconProvider +12 QFileIconProvider::~QFileIconProvider +16 QFileIconProvider::icon +20 QFileIconProvider::icon +24 QFileIconProvider::type + +Class QFileIconProvider + size=8 align=4 + base size=8 base align=4 +QFileIconProvider (0xb2f6999c) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 8u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QDirModel) +8 QDirModel::metaObject +12 QDirModel::qt_metacast +16 QDirModel::qt_metacall +20 QDirModel::~QDirModel +24 QDirModel::~QDirModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDirModel::index +60 QDirModel::parent +64 QDirModel::rowCount +68 QDirModel::columnCount +72 QDirModel::hasChildren +76 QDirModel::data +80 QDirModel::setData +84 QDirModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QDirModel::mimeTypes +104 QDirModel::mimeData +108 QDirModel::dropMimeData +112 QDirModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QDirModel::flags +144 QDirModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QDirModel + size=8 align=4 + base size=8 base align=4 +QDirModel (0xb2f72000) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 8u) + QAbstractItemModel (0xb2f72040) 0 + primary-for QDirModel (0xb2f72000) + QObject (0xb2f69f78) 0 + primary-for QAbstractItemModel (0xb2f72040) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHeaderView) +8 QHeaderView::metaObject +12 QHeaderView::qt_metacast +16 QHeaderView::qt_metacall +20 QHeaderView::~QHeaderView +24 QHeaderView::~QHeaderView +28 QHeaderView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QHeaderView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QHeaderView::mousePressEvent +84 QHeaderView::mouseReleaseEvent +88 QHeaderView::mouseDoubleClickEvent +92 QHeaderView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QHeaderView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QHeaderView::viewportEvent +228 QHeaderView::scrollContentsBy +232 QHeaderView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QHeaderView::visualRect +248 QHeaderView::scrollTo +252 QHeaderView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QHeaderView::reset +268 QAbstractItemView::setRootIndex +272 QHeaderView::doItemsLayout +276 QAbstractItemView::selectAll +280 QHeaderView::dataChanged +284 QHeaderView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QHeaderView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QHeaderView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QHeaderView::moveCursor +344 QHeaderView::horizontalOffset +348 QHeaderView::verticalOffset +352 QHeaderView::isIndexHidden +356 QHeaderView::setSelection +360 QHeaderView::visualRegionForSelection +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QHeaderView::paintSection +388 QHeaderView::sectionSizeFromContents +392 (int (*)(...))-0x000000008 +396 (int (*)(...))(& _ZTI11QHeaderView) +400 QHeaderView::_ZThn8_N11QHeaderViewD1Ev +404 QHeaderView::_ZThn8_N11QHeaderViewD0Ev +408 QWidget::_ZThn8_NK7QWidget7devTypeEv +412 QWidget::_ZThn8_NK7QWidget11paintEngineEv +416 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=20 align=4 + base size=20 base align=4 +QHeaderView (0xb2f72300) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 8u) + QAbstractItemView (0xb2f72340) 0 + primary-for QHeaderView (0xb2f72300) + QAbstractScrollArea (0xb2f72380) 0 + primary-for QAbstractItemView (0xb2f72340) + QFrame (0xb2f723c0) 0 + primary-for QAbstractScrollArea (0xb2f72380) + QWidget (0xb2f80af0) 0 + primary-for QFrame (0xb2f723c0) + QObject (0xb2f76fb4) 0 + primary-for QWidget (0xb2f80af0) + QPaintDevice (0xb2f76708) 8 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 400u) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QItemDelegate) +8 QItemDelegate::metaObject +12 QItemDelegate::qt_metacast +16 QItemDelegate::qt_metacall +20 QItemDelegate::~QItemDelegate +24 QItemDelegate::~QItemDelegate +28 QObject::event +32 QItemDelegate::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QItemDelegate::paint +60 QItemDelegate::sizeHint +64 QItemDelegate::createEditor +68 QItemDelegate::setEditorData +72 QItemDelegate::setModelData +76 QItemDelegate::updateEditorGeometry +80 QItemDelegate::editorEvent +84 QItemDelegate::drawDisplay +88 QItemDelegate::drawDecoration +92 QItemDelegate::drawFocus +96 QItemDelegate::drawCheck + +Class QItemDelegate + size=8 align=4 + base size=8 base align=4 +QItemDelegate (0xb2f72780) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 8u) + QAbstractItemDelegate (0xb2f727c0) 0 + primary-for QItemDelegate (0xb2f72780) + QObject (0xb2fa7438) 0 + primary-for QAbstractItemDelegate (0xb2f727c0) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +8 QItemEditorCreatorBase::~QItemEditorCreatorBase +12 QItemEditorCreatorBase::~QItemEditorCreatorBase +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=4 align=4 + base size=4 base align=4 +QItemEditorCreatorBase (0xb2fbb000) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 8u) + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb2fbbb04) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb2fbba8c) 0 + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QItemEditorFactory) +8 QItemEditorFactory::~QItemEditorFactory +12 QItemEditorFactory::~QItemEditorFactory +16 QItemEditorFactory::createEditor +20 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=8 align=4 + base size=8 base align=4 +QItemEditorFactory (0xb2fbb564) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 8u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QListView) +8 QListView::metaObject +12 QListView::qt_metacast +16 QListView::qt_metacall +20 QListView::~QListView +24 QListView::~QListView +28 QListView::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI9QListView) +392 QListView::_ZThn8_N9QListViewD1Ev +396 QListView::_ZThn8_N9QListViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=20 align=4 + base size=20 base align=4 +QListView (0xb2fc5140) 0 + vptr=((& QListView::_ZTV9QListView) + 8u) + QAbstractItemView (0xb2fc5180) 0 + primary-for QListView (0xb2fc5140) + QAbstractScrollArea (0xb2fc51c0) 0 + primary-for QAbstractItemView (0xb2fc5180) + QFrame (0xb2fc5200) 0 + primary-for QAbstractScrollArea (0xb2fc51c0) + QWidget (0xb2dcfe10) 0 + primary-for QFrame (0xb2fc5200) + QObject (0xb2fbbdd4) 0 + primary-for QWidget (0xb2dcfe10) + QPaintDevice (0xb2fbbe10) 8 + vptr=((& QListView::_ZTV9QListView) + 392u) + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb2df24ec) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb2df2474) 0 + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QListWidgetItem) +8 QListWidgetItem::~QListWidgetItem +12 QListWidgetItem::~QListWidgetItem +16 QListWidgetItem::clone +20 QListWidgetItem::setBackgroundColor +24 QListWidgetItem::data +28 QListWidgetItem::setData +32 QListWidgetItem::operator< +36 QListWidgetItem::read +40 QListWidgetItem::write + +Class QListWidgetItem + size=24 align=4 + base size=24 base align=4 +QListWidgetItem (0xb2ddc780) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 8u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QListWidget) +8 QListWidget::metaObject +12 QListWidget::qt_metacast +16 QListWidget::qt_metacall +20 QListWidget::~QListWidget +24 QListWidget::~QListWidget +28 QListWidget::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QListWidget::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 QListWidget::mimeTypes +388 QListWidget::mimeData +392 QListWidget::dropMimeData +396 QListWidget::supportedDropActions +400 (int (*)(...))-0x000000008 +404 (int (*)(...))(& _ZTI11QListWidget) +408 QListWidget::_ZThn8_N11QListWidgetD1Ev +412 QListWidget::_ZThn8_N11QListWidgetD0Ev +416 QWidget::_ZThn8_NK7QWidget7devTypeEv +420 QWidget::_ZThn8_NK7QWidget11paintEngineEv +424 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=20 align=4 + base size=20 base align=4 +QListWidget (0xb2fc5d40) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 8u) + QListView (0xb2fc5d80) 0 + primary-for QListWidget (0xb2fc5d40) + QAbstractItemView (0xb2fc5dc0) 0 + primary-for QListView (0xb2fc5d80) + QAbstractScrollArea (0xb2fc5e00) 0 + primary-for QAbstractItemView (0xb2fc5dc0) + QFrame (0xb2fc5e40) 0 + primary-for QAbstractScrollArea (0xb2fc5e00) + QWidget (0xb2e1faf0) 0 + primary-for QFrame (0xb2fc5e40) + QObject (0xb2e27960) 0 + primary-for QWidget (0xb2e1faf0) + QPaintDevice (0xb2e2799c) 8 + vptr=((& QListWidget::_ZTV11QListWidget) + 408u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QProxyModel) +8 QProxyModel::metaObject +12 QProxyModel::qt_metacast +16 QProxyModel::qt_metacall +20 QProxyModel::~QProxyModel +24 QProxyModel::~QProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProxyModel::index +60 QProxyModel::parent +64 QProxyModel::rowCount +68 QProxyModel::columnCount +72 QProxyModel::hasChildren +76 QProxyModel::data +80 QProxyModel::setData +84 QProxyModel::headerData +88 QProxyModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QProxyModel::mimeTypes +104 QProxyModel::mimeData +108 QProxyModel::dropMimeData +112 QProxyModel::supportedDropActions +116 QProxyModel::insertRows +120 QProxyModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QProxyModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QProxyModel::flags +144 QProxyModel::sort +148 QAbstractItemModel::buddy +152 QProxyModel::match +156 QProxyModel::span +160 QProxyModel::submit +164 QProxyModel::revert +168 QProxyModel::setModel + +Class QProxyModel + size=8 align=4 + base size=8 base align=4 +QProxyModel (0xb2e43480) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 8u) + QAbstractItemModel (0xb2e434c0) 0 + primary-for QProxyModel (0xb2e43480) + QObject (0xb2e497f8) 0 + primary-for QAbstractItemModel (0xb2e434c0) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +8 QSortFilterProxyModel::metaObject +12 QSortFilterProxyModel::qt_metacast +16 QSortFilterProxyModel::qt_metacall +20 QSortFilterProxyModel::~QSortFilterProxyModel +24 QSortFilterProxyModel::~QSortFilterProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QSortFilterProxyModel::index +60 QSortFilterProxyModel::parent +64 QSortFilterProxyModel::rowCount +68 QSortFilterProxyModel::columnCount +72 QSortFilterProxyModel::hasChildren +76 QSortFilterProxyModel::data +80 QSortFilterProxyModel::setData +84 QSortFilterProxyModel::headerData +88 QSortFilterProxyModel::setHeaderData +92 QAbstractProxyModel::itemData +96 QAbstractItemModel::setItemData +100 QSortFilterProxyModel::mimeTypes +104 QSortFilterProxyModel::mimeData +108 QSortFilterProxyModel::dropMimeData +112 QSortFilterProxyModel::supportedDropActions +116 QSortFilterProxyModel::insertRows +120 QSortFilterProxyModel::insertColumns +124 QSortFilterProxyModel::removeRows +128 QSortFilterProxyModel::removeColumns +132 QSortFilterProxyModel::fetchMore +136 QSortFilterProxyModel::canFetchMore +140 QSortFilterProxyModel::flags +144 QSortFilterProxyModel::sort +148 QSortFilterProxyModel::buddy +152 QSortFilterProxyModel::match +156 QSortFilterProxyModel::span +160 QAbstractProxyModel::submit +164 QAbstractProxyModel::revert +168 QSortFilterProxyModel::setSourceModel +172 QSortFilterProxyModel::mapToSource +176 QSortFilterProxyModel::mapFromSource +180 QSortFilterProxyModel::mapSelectionToSource +184 QSortFilterProxyModel::mapSelectionFromSource +188 QSortFilterProxyModel::filterAcceptsRow +192 QSortFilterProxyModel::filterAcceptsColumn +196 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=8 align=4 + base size=8 base align=4 +QSortFilterProxyModel (0xb2e43780) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 8u) + QAbstractProxyModel (0xb2e437c0) 0 + primary-for QSortFilterProxyModel (0xb2e43780) + QAbstractItemModel (0xb2e43800) 0 + primary-for QAbstractProxyModel (0xb2e437c0) + QObject (0xb2e58654) 0 + primary-for QAbstractItemModel (0xb2e43800) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QStandardItem) +8 QStandardItem::~QStandardItem +12 QStandardItem::~QStandardItem +16 QStandardItem::data +20 QStandardItem::setData +24 QStandardItem::clone +28 QStandardItem::type +32 QStandardItem::read +36 QStandardItem::write +40 QStandardItem::operator< + +Class QStandardItem + size=8 align=4 + base size=8 base align=4 +QStandardItem (0xb2e764b0) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb2cd1ec4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb2cd1e4c) 0 + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QStandardItemModel) +8 QStandardItemModel::metaObject +12 QStandardItemModel::qt_metacast +16 QStandardItemModel::qt_metacall +20 QStandardItemModel::~QStandardItemModel +24 QStandardItemModel::~QStandardItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStandardItemModel::index +60 QStandardItemModel::parent +64 QStandardItemModel::rowCount +68 QStandardItemModel::columnCount +72 QStandardItemModel::hasChildren +76 QStandardItemModel::data +80 QStandardItemModel::setData +84 QStandardItemModel::headerData +88 QStandardItemModel::setHeaderData +92 QStandardItemModel::itemData +96 QStandardItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QStandardItemModel::supportedDropActions +116 QStandardItemModel::insertRows +120 QStandardItemModel::insertColumns +124 QStandardItemModel::removeRows +128 QStandardItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QStandardItemModel::flags +144 QStandardItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QStandardItemModel + size=8 align=4 + base size=8 base align=4 +QStandardItemModel (0xb2ec9600) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 8u) + QAbstractItemModel (0xb2ec9640) 0 + primary-for QStandardItemModel (0xb2ec9600) + QObject (0xb2ceba14) 0 + primary-for QAbstractItemModel (0xb2ec9640) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QStringListModel) +8 QStringListModel::metaObject +12 QStringListModel::qt_metacast +16 QStringListModel::qt_metacall +20 QStringListModel::~QStringListModel +24 QStringListModel::~QStringListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 QStringListModel::rowCount +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 QStringListModel::data +80 QStringListModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QStringListModel::supportedDropActions +116 QStringListModel::insertRows +120 QAbstractItemModel::insertColumns +124 QStringListModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QStringListModel::flags +144 QStringListModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QStringListModel + size=12 align=4 + base size=12 base align=4 +QStringListModel (0xb2ec9a40) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 8u) + QAbstractListModel (0xb2ec9a80) 0 + primary-for QStringListModel (0xb2ec9a40) + QAbstractItemModel (0xb2ec9ac0) 0 + primary-for QAbstractListModel (0xb2ec9a80) + QObject (0xb2d03e4c) 0 + primary-for QAbstractItemModel (0xb2ec9ac0) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QStyledItemDelegate) +8 QStyledItemDelegate::metaObject +12 QStyledItemDelegate::qt_metacast +16 QStyledItemDelegate::qt_metacall +20 QStyledItemDelegate::~QStyledItemDelegate +24 QStyledItemDelegate::~QStyledItemDelegate +28 QObject::event +32 QStyledItemDelegate::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyledItemDelegate::paint +60 QStyledItemDelegate::sizeHint +64 QStyledItemDelegate::createEditor +68 QStyledItemDelegate::setEditorData +72 QStyledItemDelegate::setModelData +76 QStyledItemDelegate::updateEditorGeometry +80 QStyledItemDelegate::editorEvent +84 QStyledItemDelegate::displayText +88 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=8 align=4 + base size=8 base align=4 +QStyledItemDelegate (0xb2ec9d00) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 8u) + QAbstractItemDelegate (0xb2ec9d40) 0 + primary-for QStyledItemDelegate (0xb2ec9d00) + QObject (0xb2d1a924) 0 + primary-for QAbstractItemDelegate (0xb2ec9d40) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTableView) +8 QTableView::metaObject +12 QTableView::qt_metacast +16 QTableView::qt_metacall +20 QTableView::~QTableView +24 QTableView::~QTableView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QTableView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTableView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QTableView::scrollContentsBy +232 QTableView::setModel +236 QTableView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QTableView::visualRect +248 QTableView::scrollTo +252 QTableView::indexAt +256 QTableView::sizeHintForRow +260 QTableView::sizeHintForColumn +264 QAbstractItemView::reset +268 QTableView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QTableView::selectionChanged +296 QTableView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTableView::updateGeometries +312 QTableView::verticalScrollbarAction +316 QTableView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTableView::moveCursor +344 QTableView::horizontalOffset +348 QTableView::verticalOffset +352 QTableView::isIndexHidden +356 QTableView::setSelection +360 QTableView::visualRegionForSelection +364 QTableView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QTableView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI10QTableView) +392 QTableView::_ZThn8_N10QTableViewD1Ev +396 QTableView::_ZThn8_N10QTableViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=20 align=4 + base size=20 base align=4 +QTableView (0xb2d32000) 0 + vptr=((& QTableView::_ZTV10QTableView) + 8u) + QAbstractItemView (0xb2d32040) 0 + primary-for QTableView (0xb2d32000) + QAbstractScrollArea (0xb2d32080) 0 + primary-for QAbstractItemView (0xb2d32040) + QFrame (0xb2d320c0) 0 + primary-for QAbstractScrollArea (0xb2d32080) + QWidget (0xb2d2e370) 0 + primary-for QFrame (0xb2d320c0) + QObject (0xb2d304b0) 0 + primary-for QWidget (0xb2d2e370) + QPaintDevice (0xb2d304ec) 8 + vptr=((& QTableView::_ZTV10QTableView) + 392u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0xb2d4a294) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb2d4af3c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb2d4af78) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTableWidgetItem) +8 QTableWidgetItem::~QTableWidgetItem +12 QTableWidgetItem::~QTableWidgetItem +16 QTableWidgetItem::clone +20 QTableWidgetItem::data +24 QTableWidgetItem::setData +28 QTableWidgetItem::operator< +32 QTableWidgetItem::read +36 QTableWidgetItem::write + +Class QTableWidgetItem + size=24 align=4 + base size=24 base align=4 +QTableWidgetItem (0xb2d4aac8) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 8u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTableWidget) +8 QTableWidget::metaObject +12 QTableWidget::qt_metacast +16 QTableWidget::qt_metacall +20 QTableWidget::~QTableWidget +24 QTableWidget::~QTableWidget +28 QTableWidget::event +32 QObject::eventFilter +36 QTableView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTableView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QTableWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QTableView::scrollContentsBy +232 QTableWidget::setModel +236 QTableView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QTableView::visualRect +248 QTableView::scrollTo +252 QTableView::indexAt +256 QTableView::sizeHintForRow +260 QTableView::sizeHintForColumn +264 QAbstractItemView::reset +268 QTableView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QTableView::selectionChanged +296 QTableView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTableView::updateGeometries +312 QTableView::verticalScrollbarAction +316 QTableView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTableView::moveCursor +344 QTableView::horizontalOffset +348 QTableView::verticalOffset +352 QTableView::isIndexHidden +356 QTableView::setSelection +360 QTableView::visualRegionForSelection +364 QTableView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QTableView::viewOptions +384 QTableWidget::mimeTypes +388 QTableWidget::mimeData +392 QTableWidget::dropMimeData +396 QTableWidget::supportedDropActions +400 (int (*)(...))-0x000000008 +404 (int (*)(...))(& _ZTI12QTableWidget) +408 QTableWidget::_ZThn8_N12QTableWidgetD1Ev +412 QTableWidget::_ZThn8_N12QTableWidgetD0Ev +416 QWidget::_ZThn8_NK7QWidget7devTypeEv +420 QWidget::_ZThn8_NK7QWidget11paintEngineEv +424 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=20 align=4 + base size=20 base align=4 +QTableWidget (0xb2d32d80) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 8u) + QTableView (0xb2d32dc0) 0 + primary-for QTableWidget (0xb2d32d80) + QAbstractItemView (0xb2d32e00) 0 + primary-for QTableView (0xb2d32dc0) + QAbstractScrollArea (0xb2d32e40) 0 + primary-for QAbstractItemView (0xb2d32e00) + QFrame (0xb2d32e80) 0 + primary-for QAbstractScrollArea (0xb2d32e40) + QWidget (0xb2d76e60) 0 + primary-for QFrame (0xb2d32e80) + QObject (0xb2d893c0) 0 + primary-for QWidget (0xb2d76e60) + QPaintDevice (0xb2d893fc) 8 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 408u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTreeView) +8 QTreeView::metaObject +12 QTreeView::qt_metacast +16 QTreeView::qt_metacall +20 QTreeView::~QTreeView +24 QTreeView::~QTreeView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QTreeView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTreeView::mousePressEvent +84 QTreeView::mouseReleaseEvent +88 QTreeView::mouseDoubleClickEvent +92 QTreeView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QTreeView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTreeView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QTreeView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTreeView::viewportEvent +228 QTreeView::scrollContentsBy +232 QTreeView::setModel +236 QTreeView::setSelectionModel +240 QTreeView::keyboardSearch +244 QTreeView::visualRect +248 QTreeView::scrollTo +252 QTreeView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QTreeView::sizeHintForColumn +264 QTreeView::reset +268 QTreeView::setRootIndex +272 QTreeView::doItemsLayout +276 QTreeView::selectAll +280 QTreeView::dataChanged +284 QTreeView::rowsInserted +288 QTreeView::rowsAboutToBeRemoved +292 QTreeView::selectionChanged +296 QTreeView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTreeView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QTreeView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTreeView::moveCursor +344 QTreeView::horizontalOffset +348 QTreeView::verticalOffset +352 QTreeView::isIndexHidden +356 QTreeView::setSelection +360 QTreeView::visualRegionForSelection +364 QTreeView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QTreeView::drawRow +388 QTreeView::drawBranches +392 (int (*)(...))-0x000000008 +396 (int (*)(...))(& _ZTI9QTreeView) +400 QTreeView::_ZThn8_N9QTreeViewD1Ev +404 QTreeView::_ZThn8_N9QTreeViewD0Ev +408 QWidget::_ZThn8_NK7QWidget7devTypeEv +412 QWidget::_ZThn8_NK7QWidget11paintEngineEv +416 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=20 align=4 + base size=20 base align=4 +QTreeView (0xb2da4380) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 8u) + QAbstractItemView (0xb2da43c0) 0 + primary-for QTreeView (0xb2da4380) + QAbstractScrollArea (0xb2da4400) 0 + primary-for QAbstractItemView (0xb2da43c0) + QFrame (0xb2da4440) 0 + primary-for QAbstractScrollArea (0xb2da4400) + QWidget (0xb2dac0f0) 0 + primary-for QFrame (0xb2da4440) + QObject (0xb2da8f78) 0 + primary-for QWidget (0xb2dac0f0) + QPaintDevice (0xb2da8fb4) 8 + vptr=((& QTreeView::_ZTV9QTreeView) + 400u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb2bd0780) 0 + +Class QTreeWidgetItemIterator + size=12 align=4 + base size=12 base align=4 +QTreeWidgetItemIterator (0xb2db0d98) 0 + +Class QVector >:: + size=4 align=4 + base size=4 base align=4 +QVector >:: (0xb2c031e0) 0 + +Class QVector > + size=4 align=4 + base size=4 base align=4 +QVector > (0xb2c03168) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb2c03618) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb2c035a0) 0 + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QTreeWidgetItem) +8 QTreeWidgetItem::~QTreeWidgetItem +12 QTreeWidgetItem::~QTreeWidgetItem +16 QTreeWidgetItem::clone +20 QTreeWidgetItem::data +24 QTreeWidgetItem::setData +28 QTreeWidgetItem::operator< +32 QTreeWidgetItem::read +36 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=32 align=4 + base size=32 base align=4 +QTreeWidgetItem (0xb2bdde4c) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 8u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTreeWidget) +8 QTreeWidget::metaObject +12 QTreeWidget::qt_metacast +16 QTreeWidget::qt_metacall +20 QTreeWidget::~QTreeWidget +24 QTreeWidget::~QTreeWidget +28 QTreeWidget::event +32 QObject::eventFilter +36 QTreeView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTreeView::mousePressEvent +84 QTreeView::mouseReleaseEvent +88 QTreeView::mouseDoubleClickEvent +92 QTreeView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QTreeView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTreeView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QTreeView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QTreeWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTreeView::viewportEvent +228 QTreeView::scrollContentsBy +232 QTreeWidget::setModel +236 QTreeView::setSelectionModel +240 QTreeView::keyboardSearch +244 QTreeView::visualRect +248 QTreeView::scrollTo +252 QTreeView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QTreeView::sizeHintForColumn +264 QTreeView::reset +268 QTreeView::setRootIndex +272 QTreeView::doItemsLayout +276 QTreeView::selectAll +280 QTreeView::dataChanged +284 QTreeView::rowsInserted +288 QTreeView::rowsAboutToBeRemoved +292 QTreeView::selectionChanged +296 QTreeView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTreeView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QTreeView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTreeView::moveCursor +344 QTreeView::horizontalOffset +348 QTreeView::verticalOffset +352 QTreeView::isIndexHidden +356 QTreeView::setSelection +360 QTreeView::visualRegionForSelection +364 QTreeView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QTreeView::drawRow +388 QTreeView::drawBranches +392 QTreeWidget::mimeTypes +396 QTreeWidget::mimeData +400 QTreeWidget::dropMimeData +404 QTreeWidget::supportedDropActions +408 (int (*)(...))-0x000000008 +412 (int (*)(...))(& _ZTI11QTreeWidget) +416 QTreeWidget::_ZThn8_N11QTreeWidgetD1Ev +420 QTreeWidget::_ZThn8_N11QTreeWidgetD0Ev +424 QWidget::_ZThn8_NK7QWidget7devTypeEv +428 QWidget::_ZThn8_NK7QWidget11paintEngineEv +432 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=20 align=4 + base size=20 base align=4 +QTreeWidget (0xb2c425c0) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 8u) + QTreeView (0xb2c42600) 0 + primary-for QTreeWidget (0xb2c425c0) + QAbstractItemView (0xb2c42640) 0 + primary-for QTreeView (0xb2c42600) + QAbstractScrollArea (0xb2c42680) 0 + primary-for QAbstractItemView (0xb2c42640) + QFrame (0xb2c426c0) 0 + primary-for QAbstractScrollArea (0xb2c42680) + QWidget (0xb2c53190) 0 + primary-for QFrame (0xb2c426c0) + QObject (0xb2c50618) 0 + primary-for QWidget (0xb2c53190) + QPaintDevice (0xb2c50654) 8 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 416u) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QApplication) +8 QApplication::metaObject +12 QApplication::qt_metacast +16 QApplication::qt_metacall +20 QApplication::~QApplication +24 QApplication::~QApplication +28 QApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QApplication::notify +60 QApplication::compressEvent +64 QApplication::x11EventFilter +68 QApplication::x11ClientMessage +72 QApplication::commitData +76 QApplication::saveState + +Class QApplication + size=8 align=4 + base size=8 base align=4 +QApplication (0xb2c42f00) 0 + vptr=((& QApplication::_ZTV12QApplication) + 8u) + QCoreApplication (0xb2c42f40) 0 + primary-for QApplication (0xb2c42f00) + QObject (0xb2c831a4) 0 + primary-for QCoreApplication (0xb2c42f40) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QLayoutItem) +8 QLayoutItem::~QLayoutItem +12 QLayoutItem::~QLayoutItem +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 QLayoutItem::hasHeightForWidth +48 QLayoutItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QLayoutItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QLayoutItem + size=8 align=4 + base size=8 base align=4 +QLayoutItem (0xb2ca7348) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 8u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QSpacerItem) +8 QSpacerItem::~QSpacerItem +12 QSpacerItem::~QSpacerItem +16 QSpacerItem::sizeHint +20 QSpacerItem::minimumSize +24 QSpacerItem::maximumSize +28 QSpacerItem::expandingDirections +32 QSpacerItem::setGeometry +36 QSpacerItem::geometry +40 QSpacerItem::isEmpty +44 QLayoutItem::hasHeightForWidth +48 QLayoutItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QLayoutItem::widget +64 QLayoutItem::layout +68 QSpacerItem::spacerItem + +Class QSpacerItem + size=36 align=4 + base size=36 base align=4 +QSpacerItem (0xb2c9a840) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 8u) + QLayoutItem (0xb2ca7870) 0 + primary-for QSpacerItem (0xb2c9a840) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWidgetItem) +8 QWidgetItem::~QWidgetItem +12 QWidgetItem::~QWidgetItem +16 QWidgetItem::sizeHint +20 QWidgetItem::minimumSize +24 QWidgetItem::maximumSize +28 QWidgetItem::expandingDirections +32 QWidgetItem::setGeometry +36 QWidgetItem::geometry +40 QWidgetItem::isEmpty +44 QWidgetItem::hasHeightForWidth +48 QWidgetItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QWidgetItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QWidgetItem + size=12 align=4 + base size=12 base align=4 +QWidgetItem (0xb2c9a980) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 8u) + QLayoutItem (0xb2ca7f3c) 0 + primary-for QWidgetItem (0xb2c9a980) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWidgetItemV2) +8 QWidgetItemV2::~QWidgetItemV2 +12 QWidgetItemV2::~QWidgetItemV2 +16 QWidgetItemV2::sizeHint +20 QWidgetItemV2::minimumSize +24 QWidgetItemV2::maximumSize +28 QWidgetItem::expandingDirections +32 QWidgetItem::setGeometry +36 QWidgetItem::geometry +40 QWidgetItem::isEmpty +44 QWidgetItem::hasHeightForWidth +48 QWidgetItemV2::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QWidgetItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=68 align=4 + base size=68 base align=4 +QWidgetItemV2 (0xb2c9aac0) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 8u) + QWidgetItem (0xb2c9ab00) 0 + primary-for QWidgetItemV2 (0xb2c9aac0) + QLayoutItem (0xb2cbb3fc) 0 + primary-for QWidgetItem (0xb2c9ab00) + +Class QLayoutIterator + size=8 align=4 + base size=8 base align=4 +QLayoutIterator (0xb2cbbb7c) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QLayout) +8 QLayout::metaObject +12 QLayout::qt_metacast +16 QLayout::qt_metacall +20 QLayout::~QLayout +24 QLayout::~QLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLayout::invalidate +60 QLayout::geometry +64 __cxa_pure_virtual +68 QLayout::expandingDirections +72 QLayout::minimumSize +76 QLayout::maximumSize +80 QLayout::setGeometry +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 QLayout::indexOf +96 __cxa_pure_virtual +100 QLayout::isEmpty +104 QLayout::layout +108 (int (*)(...))-0x000000008 +112 (int (*)(...))(& _ZTI7QLayout) +116 QLayout::_ZThn8_N7QLayoutD1Ev +120 QLayout::_ZThn8_N7QLayoutD0Ev +124 __cxa_pure_virtual +128 QLayout::_ZThn8_NK7QLayout11minimumSizeEv +132 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +136 QLayout::_ZThn8_NK7QLayout19expandingDirectionsEv +140 QLayout::_ZThn8_N7QLayout11setGeometryERK5QRect +144 QLayout::_ZThn8_NK7QLayout8geometryEv +148 QLayout::_ZThn8_NK7QLayout7isEmptyEv +152 QLayoutItem::hasHeightForWidth +156 QLayoutItem::heightForWidth +160 QLayoutItem::minimumHeightForWidth +164 QLayout::_ZThn8_N7QLayout10invalidateEv +168 QLayoutItem::widget +172 QLayout::_ZThn8_N7QLayout6layoutEv +176 QLayoutItem::spacerItem + +Class QLayout + size=16 align=4 + base size=16 base align=4 +QLayout (0xb2cca280) 0 + vptr=((& QLayout::_ZTV7QLayout) + 8u) + QObject (0xb2cc85dc) 0 + primary-for QLayout (0xb2cca280) + QLayoutItem (0xb2cc8618) 8 + vptr=((& QLayout::_ZTV7QLayout) + 116u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QGridLayout) +8 QGridLayout::metaObject +12 QGridLayout::qt_metacast +16 QGridLayout::qt_metacall +20 QGridLayout::~QGridLayout +24 QGridLayout::~QGridLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGridLayout::invalidate +60 QLayout::geometry +64 QGridLayout::addItem +68 QGridLayout::expandingDirections +72 QGridLayout::minimumSize +76 QGridLayout::maximumSize +80 QGridLayout::setGeometry +84 QGridLayout::itemAt +88 QGridLayout::takeAt +92 QLayout::indexOf +96 QGridLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QGridLayout::sizeHint +112 QGridLayout::hasHeightForWidth +116 QGridLayout::heightForWidth +120 QGridLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QGridLayout) +132 QGridLayout::_ZThn8_N11QGridLayoutD1Ev +136 QGridLayout::_ZThn8_N11QGridLayoutD0Ev +140 QGridLayout::_ZThn8_NK11QGridLayout8sizeHintEv +144 QGridLayout::_ZThn8_NK11QGridLayout11minimumSizeEv +148 QGridLayout::_ZThn8_NK11QGridLayout11maximumSizeEv +152 QGridLayout::_ZThn8_NK11QGridLayout19expandingDirectionsEv +156 QGridLayout::_ZThn8_N11QGridLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QGridLayout::_ZThn8_NK11QGridLayout17hasHeightForWidthEv +172 QGridLayout::_ZThn8_NK11QGridLayout14heightForWidthEi +176 QGridLayout::_ZThn8_NK11QGridLayout21minimumHeightForWidthEi +180 QGridLayout::_ZThn8_N11QGridLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QGridLayout + size=16 align=4 + base size=16 base align=4 +QGridLayout (0xb2adb400) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 8u) + QLayout (0xb2ad4b40) 0 + primary-for QGridLayout (0xb2adb400) + QObject (0xb2adfa14) 0 + primary-for QLayout (0xb2ad4b40) + QLayoutItem (0xb2adfa50) 8 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 132u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QBoxLayout) +8 QBoxLayout::metaObject +12 QBoxLayout::qt_metacast +16 QBoxLayout::qt_metacall +20 QBoxLayout::~QBoxLayout +24 QBoxLayout::~QBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI10QBoxLayout) +132 QBoxLayout::_ZThn8_N10QBoxLayoutD1Ev +136 QBoxLayout::_ZThn8_N10QBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QBoxLayout + size=16 align=4 + base size=16 base align=4 +QBoxLayout (0xb2adbb00) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 8u) + QLayout (0xb2b039b0) 0 + primary-for QBoxLayout (0xb2adbb00) + QObject (0xb2b04f3c) 0 + primary-for QLayout (0xb2b039b0) + QLayoutItem (0xb2b04f78) 8 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 132u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHBoxLayout) +8 QHBoxLayout::metaObject +12 QHBoxLayout::qt_metacast +16 QHBoxLayout::qt_metacall +20 QHBoxLayout::~QHBoxLayout +24 QHBoxLayout::~QHBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QHBoxLayout) +132 QHBoxLayout::_ZThn8_N11QHBoxLayoutD1Ev +136 QHBoxLayout::_ZThn8_N11QHBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QHBoxLayout + size=16 align=4 + base size=16 base align=4 +QHBoxLayout (0xb2adbe00) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 8u) + QBoxLayout (0xb2adbe40) 0 + primary-for QHBoxLayout (0xb2adbe00) + QLayout (0xb2b1e280) 0 + primary-for QBoxLayout (0xb2adbe40) + QObject (0xb2b1f528) 0 + primary-for QLayout (0xb2b1e280) + QLayoutItem (0xb2b1f564) 8 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 132u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QVBoxLayout) +8 QVBoxLayout::metaObject +12 QVBoxLayout::qt_metacast +16 QVBoxLayout::qt_metacall +20 QVBoxLayout::~QVBoxLayout +24 QVBoxLayout::~QVBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QVBoxLayout) +132 QVBoxLayout::_ZThn8_N11QVBoxLayoutD1Ev +136 QVBoxLayout::_ZThn8_N11QVBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QVBoxLayout + size=16 align=4 + base size=16 base align=4 +QVBoxLayout (0xb2b2d080) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 8u) + QBoxLayout (0xb2b2d0c0) 0 + primary-for QVBoxLayout (0xb2b2d080) + QLayout (0xb2b26c80) 0 + primary-for QBoxLayout (0xb2b2d0c0) + QObject (0xb2b31078) 0 + primary-for QLayout (0xb2b26c80) + QLayoutItem (0xb2b310b4) 8 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 132u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QClipboard) +8 QClipboard::metaObject +12 QClipboard::qt_metacast +16 QClipboard::qt_metacall +20 QClipboard::~QClipboard +24 QClipboard::~QClipboard +28 QClipboard::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QClipboard::connectNotify +52 QObject::disconnectNotify + +Class QClipboard + size=8 align=4 + base size=8 base align=4 +QClipboard (0xb2b2d300) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 8u) + QObject (0xb2b31bf4) 0 + primary-for QClipboard (0xb2b2d300) + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDesktopWidget) +8 QDesktopWidget::metaObject +12 QDesktopWidget::qt_metacast +16 QDesktopWidget::qt_metacall +20 QDesktopWidget::~QDesktopWidget +24 QDesktopWidget::~QDesktopWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDesktopWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI14QDesktopWidget) +232 QDesktopWidget::_ZThn8_N14QDesktopWidgetD1Ev +236 QDesktopWidget::_ZThn8_N14QDesktopWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=20 align=4 + base size=20 base align=4 +QDesktopWidget (0xb2b2d5c0) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 8u) + QWidget (0xb2b45be0) 0 + primary-for QDesktopWidget (0xb2b2d5c0) + QObject (0xb2b4d21c) 0 + primary-for QWidget (0xb2b45be0) + QPaintDevice (0xb2b4d258) 8 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 232u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFormLayout) +8 QFormLayout::metaObject +12 QFormLayout::qt_metacast +16 QFormLayout::qt_metacall +20 QFormLayout::~QFormLayout +24 QFormLayout::~QFormLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFormLayout::invalidate +60 QLayout::geometry +64 QFormLayout::addItem +68 QFormLayout::expandingDirections +72 QFormLayout::minimumSize +76 QLayout::maximumSize +80 QFormLayout::setGeometry +84 QFormLayout::itemAt +88 QFormLayout::takeAt +92 QLayout::indexOf +96 QFormLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QFormLayout::sizeHint +112 QFormLayout::hasHeightForWidth +116 QFormLayout::heightForWidth +120 (int (*)(...))-0x000000008 +124 (int (*)(...))(& _ZTI11QFormLayout) +128 QFormLayout::_ZThn8_N11QFormLayoutD1Ev +132 QFormLayout::_ZThn8_N11QFormLayoutD0Ev +136 QFormLayout::_ZThn8_NK11QFormLayout8sizeHintEv +140 QFormLayout::_ZThn8_NK11QFormLayout11minimumSizeEv +144 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +148 QFormLayout::_ZThn8_NK11QFormLayout19expandingDirectionsEv +152 QFormLayout::_ZThn8_N11QFormLayout11setGeometryERK5QRect +156 QLayout::_ZThn8_NK7QLayout8geometryEv +160 QLayout::_ZThn8_NK7QLayout7isEmptyEv +164 QFormLayout::_ZThn8_NK11QFormLayout17hasHeightForWidthEv +168 QFormLayout::_ZThn8_NK11QFormLayout14heightForWidthEi +172 QLayoutItem::minimumHeightForWidth +176 QFormLayout::_ZThn8_N11QFormLayout10invalidateEv +180 QLayoutItem::widget +184 QLayout::_ZThn8_N7QLayout6layoutEv +188 QLayoutItem::spacerItem + +Class QFormLayout + size=16 align=4 + base size=16 base align=4 +QFormLayout (0xb2b2d980) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 8u) + QLayout (0xb2b53c30) 0 + primary-for QFormLayout (0xb2b2d980) + QObject (0xb2b5f1e0) 0 + primary-for QLayout (0xb2b53c30) + QLayoutItem (0xb2b5f21c) 8 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 128u) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSessionManager) +8 QSessionManager::metaObject +12 QSessionManager::qt_metacast +16 QSessionManager::qt_metacall +20 QSessionManager::~QSessionManager +24 QSessionManager::~QSessionManager +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSessionManager + size=8 align=4 + base size=8 base align=4 +QSessionManager (0xb2b2dc80) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 8u) + QObject (0xb2b715a0) 0 + primary-for QSessionManager (0xb2b2dc80) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QShortcut) +8 QShortcut::metaObject +12 QShortcut::qt_metacast +16 QShortcut::qt_metacall +20 QShortcut::~QShortcut +24 QShortcut::~QShortcut +28 QShortcut::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QShortcut + size=8 align=4 + base size=8 base align=4 +QShortcut (0xb2b2df40) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 8u) + QObject (0xb2b71f78) 0 + primary-for QShortcut (0xb2b2df40) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QSound) +8 QSound::metaObject +12 QSound::qt_metacast +16 QSound::qt_metacall +20 QSound::~QSound +24 QSound::~QSound +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSound + size=8 align=4 + base size=8 base align=4 +QSound (0xb2b89240) 0 + vptr=((& QSound::_ZTV6QSound) + 8u) + QObject (0xb2b849d8) 0 + primary-for QSound (0xb2b89240) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QStackedLayout) +8 QStackedLayout::metaObject +12 QStackedLayout::qt_metacast +16 QStackedLayout::qt_metacall +20 QStackedLayout::~QStackedLayout +24 QStackedLayout::~QStackedLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLayout::invalidate +60 QLayout::geometry +64 QStackedLayout::addItem +68 QLayout::expandingDirections +72 QStackedLayout::minimumSize +76 QLayout::maximumSize +80 QStackedLayout::setGeometry +84 QStackedLayout::itemAt +88 QStackedLayout::takeAt +92 QLayout::indexOf +96 QStackedLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QStackedLayout::sizeHint +112 (int (*)(...))-0x000000008 +116 (int (*)(...))(& _ZTI14QStackedLayout) +120 QStackedLayout::_ZThn8_N14QStackedLayoutD1Ev +124 QStackedLayout::_ZThn8_N14QStackedLayoutD0Ev +128 QStackedLayout::_ZThn8_NK14QStackedLayout8sizeHintEv +132 QStackedLayout::_ZThn8_NK14QStackedLayout11minimumSizeEv +136 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +140 QLayout::_ZThn8_NK7QLayout19expandingDirectionsEv +144 QStackedLayout::_ZThn8_N14QStackedLayout11setGeometryERK5QRect +148 QLayout::_ZThn8_NK7QLayout8geometryEv +152 QLayout::_ZThn8_NK7QLayout7isEmptyEv +156 QLayoutItem::hasHeightForWidth +160 QLayoutItem::heightForWidth +164 QLayoutItem::minimumHeightForWidth +168 QLayout::_ZThn8_N7QLayout10invalidateEv +172 QLayoutItem::widget +176 QLayout::_ZThn8_N7QLayout6layoutEv +180 QLayoutItem::spacerItem + +Class QStackedLayout + size=16 align=4 + base size=16 base align=4 +QStackedLayout (0xb2b89540) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 8u) + QLayout (0xb2b93e10) 0 + primary-for QStackedLayout (0xb2b89540) + QObject (0xb2b9a3fc) 0 + primary-for QLayout (0xb2b93e10) + QLayoutItem (0xb2b9a438) 8 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 120u) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0xb2ba8474) 0 empty + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0xb2ba8780) 0 empty + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWidgetAction) +8 QWidgetAction::metaObject +12 QWidgetAction::qt_metacast +16 QWidgetAction::qt_metacall +20 QWidgetAction::~QWidgetAction +24 QWidgetAction::~QWidgetAction +28 QWidgetAction::event +32 QWidgetAction::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidgetAction::createWidget +60 QWidgetAction::deleteWidget + +Class QWidgetAction + size=8 align=4 + base size=8 base align=4 +QWidgetAction (0xb2b89940) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 8u) + QAction (0xb2b89980) 0 + primary-for QWidgetAction (0xb2b89940) + QObject (0xb2ba87f8) 0 + primary-for QAction (0xb2b89980) + +Class QColormap + size=4 align=4 + base size=4 base align=4 +QColormap (0xb2bbb3c0) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0xb2bbb7f8) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2bbba50) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb29cd2d0) 0 + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPaintEngine) +8 QPaintEngine::~QPaintEngine +12 QPaintEngine::~QPaintEngine +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QPaintEngine::drawRects +32 QPaintEngine::drawRects +36 QPaintEngine::drawLines +40 QPaintEngine::drawLines +44 QPaintEngine::drawEllipse +48 QPaintEngine::drawEllipse +52 QPaintEngine::drawPath +56 QPaintEngine::drawPoints +60 QPaintEngine::drawPoints +64 QPaintEngine::drawPolygon +68 QPaintEngine::drawPolygon +72 __cxa_pure_virtual +76 QPaintEngine::drawTextItem +80 QPaintEngine::drawTiledPixmap +84 QPaintEngine::drawImage +88 QPaintEngine::coordinateOffset +92 __cxa_pure_virtual + +Class QPaintEngine + size=20 align=4 + base size=20 base align=4 +QPaintEngine (0xb2bbbb40) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb29e14b0) 0 + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0xb29e1168) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb29f81a4) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QPrinter) +8 QPrinter::~QPrinter +12 QPrinter::~QPrinter +16 QPrinter::devType +20 QPrinter::paintEngine +24 QPrinter::metric + +Class QPrinter + size=12 align=4 + base size=12 base align=4 +QPrinter (0xb29e34c0) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 8u) + QPaintDevice (0xb2a36564) 0 + primary-for QPrinter (0xb29e34c0) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPrintEngine) +8 QPrintEngine::~QPrintEngine +12 QPrintEngine::~QPrintEngine +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual + +Class QPrintEngine + size=4 align=4 + base size=4 base align=4 +QPrintEngine (0xb2a4cd5c) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 8u) + +Class QPrinterInfo + size=4 align=4 + base size=4 base align=4 +QPrinterInfo (0xb2a62258) 0 + +Class QStylePainter + size=12 align=4 + base size=12 base align=4 +QStylePainter (0xb29e3a40) 0 + QPainter (0xb2a62ce4) 0 + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCommonStyle) +8 QCommonStyle::metaObject +12 QCommonStyle::qt_metacast +16 QCommonStyle::qt_metacall +20 QCommonStyle::~QCommonStyle +24 QCommonStyle::~QCommonStyle +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyle::polish +60 QStyle::unpolish +64 QStyle::polish +68 QStyle::unpolish +72 QStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 QCommonStyle::drawPrimitive +100 QCommonStyle::drawControl +104 QCommonStyle::subElementRect +108 QCommonStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QCommonStyle::subControlRect +120 QCommonStyle::pixelMetric +124 QCommonStyle::sizeFromContents +128 QCommonStyle::styleHint +132 QCommonStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=8 align=4 + base size=8 base align=4 +QCommonStyle (0xb29e3f00) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 8u) + QStyle (0xb29e3f40) 0 + primary-for QCommonStyle (0xb29e3f00) + QObject (0xb2a73834) 0 + primary-for QStyle (0xb29e3f40) + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb2a83b40) 0 + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMotifStyle) +8 QMotifStyle::metaObject +12 QMotifStyle::qt_metacast +16 QMotifStyle::qt_metacall +20 QMotifStyle::~QMotifStyle +24 QMotifStyle::~QMotifStyle +28 QMotifStyle::event +32 QMotifStyle::eventFilter +36 QMotifStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMotifStyle::polish +60 QMotifStyle::unpolish +64 QMotifStyle::polish +68 QMotifStyle::unpolish +72 QMotifStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QMotifStyle::standardPalette +96 QMotifStyle::drawPrimitive +100 QMotifStyle::drawControl +104 QMotifStyle::subElementRect +108 QMotifStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QMotifStyle::subControlRect +120 QMotifStyle::pixelMetric +124 QMotifStyle::sizeFromContents +128 QMotifStyle::styleHint +132 QMotifStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=16 align=4 + base size=13 base align=4 +QMotifStyle (0xb2a87200) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 8u) + QCommonStyle (0xb2a87240) 0 + primary-for QMotifStyle (0xb2a87200) + QStyle (0xb2a87280) 0 + primary-for QCommonStyle (0xb2a87240) + QObject (0xb2a83780) 0 + primary-for QStyle (0xb2a87280) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QCDEStyle) +8 QCDEStyle::metaObject +12 QCDEStyle::qt_metacast +16 QCDEStyle::qt_metacall +20 QCDEStyle::~QCDEStyle +24 QCDEStyle::~QCDEStyle +28 QMotifStyle::event +32 QMotifStyle::eventFilter +36 QMotifStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMotifStyle::polish +60 QMotifStyle::unpolish +64 QMotifStyle::polish +68 QMotifStyle::unpolish +72 QMotifStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QCDEStyle::standardPalette +96 QCDEStyle::drawPrimitive +100 QCDEStyle::drawControl +104 QMotifStyle::subElementRect +108 QMotifStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QMotifStyle::subControlRect +120 QCDEStyle::pixelMetric +124 QMotifStyle::sizeFromContents +128 QMotifStyle::styleHint +132 QMotifStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=16 align=4 + base size=13 base align=4 +QCDEStyle (0xb2a87580) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 8u) + QMotifStyle (0xb2a875c0) 0 + primary-for QCDEStyle (0xb2a87580) + QCommonStyle (0xb2a87600) 0 + primary-for QMotifStyle (0xb2a875c0) + QStyle (0xb2a87640) 0 + primary-for QCommonStyle (0xb2a87600) + QObject (0xb2a9e5dc) 0 + primary-for QStyle (0xb2a87640) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWindowsStyle) +8 QWindowsStyle::metaObject +12 QWindowsStyle::qt_metacast +16 QWindowsStyle::qt_metacall +20 QWindowsStyle::~QWindowsStyle +24 QWindowsStyle::~QWindowsStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 QWindowsStyle::drawPrimitive +100 QWindowsStyle::drawControl +104 QWindowsStyle::subElementRect +108 QWindowsStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QCommonStyle::subControlRect +120 QWindowsStyle::pixelMetric +124 QWindowsStyle::sizeFromContents +128 QWindowsStyle::styleHint +132 QWindowsStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=12 align=4 + base size=12 base align=4 +QWindowsStyle (0xb2a87880) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 8u) + QCommonStyle (0xb2a878c0) 0 + primary-for QWindowsStyle (0xb2a87880) + QStyle (0xb2a87900) 0 + primary-for QCommonStyle (0xb2a878c0) + QObject (0xb2a9edd4) 0 + primary-for QStyle (0xb2a87900) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCleanlooksStyle) +8 QCleanlooksStyle::metaObject +12 QCleanlooksStyle::qt_metacast +16 QCleanlooksStyle::qt_metacall +20 QCleanlooksStyle::~QCleanlooksStyle +24 QCleanlooksStyle::~QCleanlooksStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCleanlooksStyle::polish +60 QCleanlooksStyle::unpolish +64 QCleanlooksStyle::polish +68 QCleanlooksStyle::unpolish +72 QCleanlooksStyle::polish +76 QStyle::itemTextRect +80 QCleanlooksStyle::itemPixmapRect +84 QCleanlooksStyle::drawItemText +88 QCleanlooksStyle::drawItemPixmap +92 QCleanlooksStyle::standardPalette +96 QCleanlooksStyle::drawPrimitive +100 QCleanlooksStyle::drawControl +104 QCleanlooksStyle::subElementRect +108 QCleanlooksStyle::drawComplexControl +112 QCleanlooksStyle::hitTestComplexControl +116 QCleanlooksStyle::subControlRect +120 QCleanlooksStyle::pixelMetric +124 QCleanlooksStyle::sizeFromContents +128 QCleanlooksStyle::styleHint +132 QCleanlooksStyle::standardPixmap +136 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=12 align=4 + base size=12 base align=4 +QCleanlooksStyle (0xb2a87bc0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 8u) + QWindowsStyle (0xb2a87c00) 0 + primary-for QCleanlooksStyle (0xb2a87bc0) + QCommonStyle (0xb2a87c40) 0 + primary-for QWindowsStyle (0xb2a87c00) + QStyle (0xb2a87c80) 0 + primary-for QCommonStyle (0xb2a87c40) + QObject (0xb2ab4b7c) 0 + primary-for QStyle (0xb2a87c80) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QPlastiqueStyle) +8 QPlastiqueStyle::metaObject +12 QPlastiqueStyle::qt_metacast +16 QPlastiqueStyle::qt_metacall +20 QPlastiqueStyle::~QPlastiqueStyle +24 QPlastiqueStyle::~QPlastiqueStyle +28 QObject::event +32 QPlastiqueStyle::eventFilter +36 QPlastiqueStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QPlastiqueStyle::polish +60 QPlastiqueStyle::unpolish +64 QPlastiqueStyle::polish +68 QPlastiqueStyle::unpolish +72 QPlastiqueStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QPlastiqueStyle::standardPalette +96 QPlastiqueStyle::drawPrimitive +100 QPlastiqueStyle::drawControl +104 QPlastiqueStyle::subElementRect +108 QPlastiqueStyle::drawComplexControl +112 QPlastiqueStyle::hitTestComplexControl +116 QPlastiqueStyle::subControlRect +120 QPlastiqueStyle::pixelMetric +124 QPlastiqueStyle::sizeFromContents +128 QPlastiqueStyle::styleHint +132 QPlastiqueStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=16 align=4 + base size=16 base align=4 +QPlastiqueStyle (0xb2a87f40) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 8u) + QWindowsStyle (0xb2a87f80) 0 + primary-for QPlastiqueStyle (0xb2a87f40) + QCommonStyle (0xb2a87fc0) 0 + primary-for QWindowsStyle (0xb2a87f80) + QStyle (0xb288d000) 0 + primary-for QCommonStyle (0xb2a87fc0) + QObject (0xb28868ac) 0 + primary-for QStyle (0xb288d000) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0xb289a7f8) 0 empty + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +8 QStyleFactoryInterface::~QStyleFactoryInterface +12 QStyleFactoryInterface::~QStyleFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=4 align=4 + base size=4 base align=4 +QStyleFactoryInterface (0xb288d2c0) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 8u) + QFactoryInterface (0xb289a834) 0 nearly-empty + primary-for QStyleFactoryInterface (0xb288d2c0) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QStylePlugin) +8 QStylePlugin::metaObject +12 QStylePlugin::qt_metacast +16 QStylePlugin::qt_metacall +20 QStylePlugin::~QStylePlugin +24 QStylePlugin::~QStylePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI12QStylePlugin) +72 QStylePlugin::_ZThn8_N12QStylePluginD1Ev +76 QStylePlugin::_ZThn8_N12QStylePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QStylePlugin + size=12 align=4 + base size=12 base align=4 +QStylePlugin (0xb2899d20) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 8u) + QObject (0xb289ab7c) 0 + primary-for QStylePlugin (0xb2899d20) + QStyleFactoryInterface (0xb288d480) 8 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 72u) + QFactoryInterface (0xb289abb8) 8 nearly-empty + primary-for QStyleFactoryInterface (0xb288d480) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QWindowsCEStyle) +8 QWindowsCEStyle::metaObject +12 QWindowsCEStyle::qt_metacast +16 QWindowsCEStyle::qt_metacall +20 QWindowsCEStyle::~QWindowsCEStyle +24 QWindowsCEStyle::~QWindowsCEStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsCEStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsCEStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsCEStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QWindowsCEStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsCEStyle::standardPalette +96 QWindowsCEStyle::drawPrimitive +100 QWindowsCEStyle::drawControl +104 QWindowsCEStyle::subElementRect +108 QWindowsCEStyle::drawComplexControl +112 QWindowsCEStyle::hitTestComplexControl +116 QWindowsCEStyle::subControlRect +120 QWindowsCEStyle::pixelMetric +124 QWindowsCEStyle::sizeFromContents +128 QWindowsCEStyle::styleHint +132 QWindowsCEStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=12 align=4 + base size=12 base align=4 +QWindowsCEStyle (0xb288d6c0) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 8u) + QWindowsStyle (0xb288d700) 0 + primary-for QWindowsCEStyle (0xb288d6c0) + QCommonStyle (0xb288d740) 0 + primary-for QWindowsStyle (0xb288d700) + QStyle (0xb288d780) 0 + primary-for QCommonStyle (0xb288d740) + QObject (0xb28ad30c) 0 + primary-for QStyle (0xb288d780) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +8 QWindowsMobileStyle::metaObject +12 QWindowsMobileStyle::qt_metacast +16 QWindowsMobileStyle::qt_metacall +20 QWindowsMobileStyle::~QWindowsMobileStyle +24 QWindowsMobileStyle::~QWindowsMobileStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsMobileStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsMobileStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsMobileStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsMobileStyle::standardPalette +96 QWindowsMobileStyle::drawPrimitive +100 QWindowsMobileStyle::drawControl +104 QWindowsMobileStyle::subElementRect +108 QWindowsMobileStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QWindowsMobileStyle::subControlRect +120 QWindowsMobileStyle::pixelMetric +124 QWindowsMobileStyle::sizeFromContents +128 QWindowsMobileStyle::styleHint +132 QWindowsMobileStyle::standardPixmap +136 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=12 align=4 + base size=12 base align=4 +QWindowsMobileStyle (0xb288d9c0) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 8u) + QWindowsStyle (0xb288da00) 0 + primary-for QWindowsMobileStyle (0xb288d9c0) + QCommonStyle (0xb288da40) 0 + primary-for QWindowsStyle (0xb288da00) + QStyle (0xb288da80) 0 + primary-for QCommonStyle (0xb288da40) + QObject (0xb28addd4) 0 + primary-for QStyle (0xb288da80) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QWindowsXPStyle) +8 QWindowsXPStyle::metaObject +12 QWindowsXPStyle::qt_metacast +16 QWindowsXPStyle::qt_metacall +20 QWindowsXPStyle::~QWindowsXPStyle +24 QWindowsXPStyle::~QWindowsXPStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsXPStyle::polish +60 QWindowsXPStyle::unpolish +64 QWindowsXPStyle::polish +68 QWindowsXPStyle::unpolish +72 QWindowsXPStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsXPStyle::standardPalette +96 QWindowsXPStyle::drawPrimitive +100 QWindowsXPStyle::drawControl +104 QWindowsXPStyle::subElementRect +108 QWindowsXPStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QWindowsXPStyle::subControlRect +120 QWindowsXPStyle::pixelMetric +124 QWindowsXPStyle::sizeFromContents +128 QWindowsXPStyle::styleHint +132 QWindowsXPStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=16 align=4 + base size=16 base align=4 +QWindowsXPStyle (0xb288dd40) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 8u) + QWindowsStyle (0xb288dd80) 0 + primary-for QWindowsXPStyle (0xb288dd40) + QCommonStyle (0xb288ddc0) 0 + primary-for QWindowsStyle (0xb288dd80) + QStyle (0xb288de00) 0 + primary-for QCommonStyle (0xb288ddc0) + QObject (0xb28c0924) 0 + primary-for QStyle (0xb288de00) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +8 QWindowsVistaStyle::metaObject +12 QWindowsVistaStyle::qt_metacast +16 QWindowsVistaStyle::qt_metacall +20 QWindowsVistaStyle::~QWindowsVistaStyle +24 QWindowsVistaStyle::~QWindowsVistaStyle +28 QWindowsVistaStyle::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsVistaStyle::polish +60 QWindowsVistaStyle::unpolish +64 QWindowsVistaStyle::polish +68 QWindowsVistaStyle::unpolish +72 QWindowsVistaStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsVistaStyle::standardPalette +96 QWindowsVistaStyle::drawPrimitive +100 QWindowsVistaStyle::drawControl +104 QWindowsVistaStyle::subElementRect +108 QWindowsVistaStyle::drawComplexControl +112 QWindowsVistaStyle::hitTestComplexControl +116 QWindowsVistaStyle::subControlRect +120 QWindowsVistaStyle::pixelMetric +124 QWindowsVistaStyle::sizeFromContents +128 QWindowsVistaStyle::styleHint +132 QWindowsVistaStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=16 align=4 + base size=16 base align=4 +QWindowsVistaStyle (0xb28d90c0) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 8u) + QWindowsXPStyle (0xb28d9100) 0 + primary-for QWindowsVistaStyle (0xb28d90c0) + QWindowsStyle (0xb28d9140) 0 + primary-for QWindowsXPStyle (0xb28d9100) + QCommonStyle (0xb28d9180) 0 + primary-for QWindowsStyle (0xb28d9140) + QStyle (0xb28d91c0) 0 + primary-for QCommonStyle (0xb28d9180) + QObject (0xb28d46cc) 0 + primary-for QStyle (0xb28d91c0) + +Class QTextLength + size=12 align=4 + base size=12 base align=4 +QTextLength (0xb28e8528) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb28f2fb4) 0 + +Class QTextFormat + size=8 align=4 + base size=8 base align=4 +QTextFormat (0xb28f2834) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb2927474) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb29273fc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb29431a4) 0 + +Class QTextCharFormat + size=8 align=4 + base size=8 base align=4 +QTextCharFormat (0xb28d9ec0) 0 + QTextFormat (0xb2943d5c) 0 + +Class QTextBlockFormat + size=8 align=4 + base size=8 base align=4 +QTextBlockFormat (0xb296cc80) 0 + QTextFormat (0xb2789654) 0 + +Class QTextListFormat + size=8 align=4 + base size=8 base align=4 +QTextListFormat (0xb279a240) 0 + QTextFormat (0xb279f3fc) 0 + +Class QTextImageFormat + size=8 align=4 + base size=8 base align=4 +QTextImageFormat (0xb279a400) 0 + QTextCharFormat (0xb279a440) 0 + QTextFormat (0xb279fce4) 0 + +Class QTextFrameFormat + size=8 align=4 + base size=8 base align=4 +QTextFrameFormat (0xb279a680) 0 + QTextFormat (0xb27ac5dc) 0 + +Class QTextTableFormat + size=8 align=4 + base size=8 base align=4 +QTextTableFormat (0xb279ad00) 0 + QTextFrameFormat (0xb279ad40) 0 + QTextFormat (0xb27c67f8) 0 + +Class QTextTableCellFormat + size=8 align=4 + base size=8 base align=4 +QTextTableCellFormat (0xb27d4240) 0 + QTextCharFormat (0xb27d4280) 0 + QTextFormat (0xb27d0ac8) 0 + +Class QTextInlineObject + size=8 align=4 + base size=8 base align=4 +QTextInlineObject (0xb27e1a8c) 0 + +Class QTextLayout::FormatRange + size=16 align=4 + base size=16 base align=4 +QTextLayout::FormatRange (0xb27ec168) 0 + +Class QTextLayout + size=4 align=4 + base size=4 base align=4 +QTextLayout (0xb27ec000) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb27ecd20) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb27ecca8) 0 + +Class QTextLine + size=8 align=4 + base size=8 base align=4 +QTextLine (0xb2808000) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAbstractUndoItem) +8 __cxa_pure_virtual +12 __cxa_pure_virtual +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAbstractUndoItem + size=4 align=4 + base size=4 base align=4 +QAbstractUndoItem (0xb2808960) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 8u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QTextDocument) +8 QTextDocument::metaObject +12 QTextDocument::qt_metacast +16 QTextDocument::qt_metacall +20 QTextDocument::~QTextDocument +24 QTextDocument::~QTextDocument +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextDocument::clear +60 QTextDocument::createObject +64 QTextDocument::loadResource + +Class QTextDocument + size=8 align=4 + base size=8 base align=4 +QTextDocument (0xb27d4d40) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 8u) + QObject (0xb2808ce4) 0 + primary-for QTextDocument (0xb27d4d40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb2819654) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb285a384) 0 + +Class QTextCursor + size=4 align=4 + base size=4 base align=4 +QTextCursor (0xb28359d8) 0 + +Class QAbstractTextDocumentLayout::Selection + size=12 align=4 + base size=12 base align=4 +QAbstractTextDocumentLayout::Selection (0xb285a618) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb285aa14) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb285a99c) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=48 align=4 + base size=48 base align=4 +QAbstractTextDocumentLayout::PaintContext (0xb285a654) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +8 QAbstractTextDocumentLayout::metaObject +12 QAbstractTextDocumentLayout::qt_metacast +16 QAbstractTextDocumentLayout::qt_metacall +20 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +24 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 QAbstractTextDocumentLayout::resizeInlineObject +88 QAbstractTextDocumentLayout::positionInlineObject +92 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=8 align=4 + base size=8 base align=4 +QAbstractTextDocumentLayout (0xb2834100) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 8u) + QObject (0xb285a528) 0 + primary-for QAbstractTextDocumentLayout (0xb2834100) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QTextObjectInterface) +8 QTextObjectInterface::~QTextObjectInterface +12 QTextObjectInterface::~QTextObjectInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextObjectInterface + size=4 align=4 + base size=4 base align=4 +QTextObjectInterface (0xb28804ec) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 8u) + +Class QFontDatabase + size=4 align=4 + base size=4 base align=4 +QFontDatabase (0xb2880a8c) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextObject) +8 QTextObject::metaObject +12 QTextObject::qt_metacast +16 QTextObject::qt_metacall +20 QTextObject::~QTextObject +24 QTextObject::~QTextObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextObject + size=8 align=4 + base size=8 base align=4 +QTextObject (0xb2834940) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 8u) + QObject (0xb268e2d0) 0 + primary-for QTextObject (0xb2834940) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QTextBlockGroup) +8 QTextBlockGroup::metaObject +12 QTextBlockGroup::qt_metacast +16 QTextBlockGroup::qt_metacall +20 QTextBlockGroup::~QTextBlockGroup +24 QTextBlockGroup::~QTextBlockGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextBlockGroup::blockInserted +60 QTextBlockGroup::blockRemoved +64 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=8 align=4 + base size=8 base align=4 +QTextBlockGroup (0xb2834c40) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 8u) + QTextObject (0xb2834c80) 0 + primary-for QTextBlockGroup (0xb2834c40) + QObject (0xb268ee4c) 0 + primary-for QTextObject (0xb2834c80) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +8 QTextFrameLayoutData::~QTextFrameLayoutData +12 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=4 align=4 + base size=4 base align=4 +QTextFrameLayoutData (0xb26a399c) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 8u) + +Class QTextFrame::iterator + size=20 align=4 + base size=20 base align=4 +QTextFrame::iterator (0xb26a3f3c) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextFrame) +8 QTextFrame::metaObject +12 QTextFrame::qt_metacast +16 QTextFrame::qt_metacall +20 QTextFrame::~QTextFrame +24 QTextFrame::~QTextFrame +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextFrame + size=8 align=4 + base size=8 base align=4 +QTextFrame (0xb2834f40) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 8u) + QTextObject (0xb2834f80) 0 + primary-for QTextFrame (0xb2834f40) + QObject (0xb26a3b04) 0 + primary-for QTextObject (0xb2834f80) + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb26c54b0) 0 empty + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QTextBlockUserData) +8 QTextBlockUserData::~QTextBlockUserData +12 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=4 align=4 + base size=4 base align=4 +QTextBlockUserData (0xb26c5834) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 8u) + +Class QTextBlock::iterator + size=16 align=4 + base size=16 base align=4 +QTextBlock::iterator (0xb26c5dd4) 0 + +Class QTextBlock + size=8 align=4 + base size=8 base align=4 +QTextBlock (0xb26c599c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb26e64b0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb26e65a0) 0 empty + +Class QTextFragment + size=12 align=4 + base size=12 base align=4 +QTextFragment (0xb26e6744) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb26f3b04) 0 empty + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +8 QSyntaxHighlighter::metaObject +12 QSyntaxHighlighter::qt_metacast +16 QSyntaxHighlighter::qt_metacall +20 QSyntaxHighlighter::~QSyntaxHighlighter +24 QSyntaxHighlighter::~QSyntaxHighlighter +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=8 align=4 + base size=8 base align=4 +QSyntaxHighlighter (0xb26dfb80) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 8u) + QObject (0xb26f3bf4) 0 + primary-for QSyntaxHighlighter (0xb26dfb80) + +Class QTextDocumentFragment + size=4 align=4 + base size=4 base align=4 +QTextDocumentFragment (0xb26ff834) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTextList) +8 QTextList::metaObject +12 QTextList::qt_metacast +16 QTextList::qt_metacall +20 QTextList::~QTextList +24 QTextList::~QTextList +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextBlockGroup::blockInserted +60 QTextBlockGroup::blockRemoved +64 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=8 align=4 + base size=8 base align=4 +QTextList (0xb26dfe40) 0 + vptr=((& QTextList::_ZTV9QTextList) + 8u) + QTextBlockGroup (0xb26dfe80) 0 + primary-for QTextList (0xb26dfe40) + QTextObject (0xb26dfec0) 0 + primary-for QTextBlockGroup (0xb26dfe80) + QObject (0xb26ffd98) 0 + primary-for QTextObject (0xb26dfec0) + +Class QTextTableCell + size=8 align=4 + base size=8 base align=4 +QTextTableCell (0xb2721000) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextTable) +8 QTextTable::metaObject +12 QTextTable::qt_metacast +16 QTextTable::qt_metacall +20 QTextTable::~QTextTable +24 QTextTable::~QTextTable +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextTable + size=8 align=4 + base size=8 base align=4 +QTextTable (0xb2715980) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 8u) + QTextFrame (0xb27159c0) 0 + primary-for QTextTable (0xb2715980) + QTextObject (0xb2715a00) 0 + primary-for QTextFrame (0xb27159c0) + QObject (0xb272a1e0) 0 + primary-for QTextObject (0xb2715a00) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QCompleter) +8 QCompleter::metaObject +12 QCompleter::qt_metacast +16 QCompleter::qt_metacall +20 QCompleter::~QCompleter +24 QCompleter::~QCompleter +28 QCompleter::event +32 QCompleter::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCompleter::pathFromIndex +60 QCompleter::splitPath + +Class QCompleter + size=8 align=4 + base size=8 base align=4 +QCompleter (0xb2715fc0) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 8u) + QObject (0xb273b1a4) 0 + primary-for QCompleter (0xb2715fc0) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0xb2750078) 0 empty + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSystemTrayIcon) +8 QSystemTrayIcon::metaObject +12 QSystemTrayIcon::qt_metacast +16 QSystemTrayIcon::qt_metacall +20 QSystemTrayIcon::~QSystemTrayIcon +24 QSystemTrayIcon::~QSystemTrayIcon +28 QSystemTrayIcon::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSystemTrayIcon + size=8 align=4 + base size=8 base align=4 +QSystemTrayIcon (0xb273e280) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 8u) + QObject (0xb2750168) 0 + primary-for QSystemTrayIcon (0xb273e280) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUndoGroup) +8 QUndoGroup::metaObject +12 QUndoGroup::qt_metacast +16 QUndoGroup::qt_metacall +20 QUndoGroup::~QUndoGroup +24 QUndoGroup::~QUndoGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QUndoGroup + size=8 align=4 + base size=8 base align=4 +QUndoGroup (0xb273e640) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 8u) + QObject (0xb275f1e0) 0 + primary-for QUndoGroup (0xb273e640) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QUndoCommand) +8 QUndoCommand::~QUndoCommand +12 QUndoCommand::~QUndoCommand +16 QUndoCommand::undo +20 QUndoCommand::redo +24 QUndoCommand::id +28 QUndoCommand::mergeWith + +Class QUndoCommand + size=8 align=4 + base size=8 base align=4 +QUndoCommand (0xb275fec4) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 8u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUndoStack) +8 QUndoStack::metaObject +12 QUndoStack::qt_metacast +16 QUndoStack::qt_metacall +20 QUndoStack::~QUndoStack +24 QUndoStack::~QUndoStack +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QUndoStack + size=8 align=4 + base size=8 base align=4 +QUndoStack (0xb273e900) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 8u) + QObject (0xb276f438) 0 + primary-for QUndoStack (0xb273e900) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QUndoView) +8 QUndoView::metaObject +12 QUndoView::qt_metacast +16 QUndoView::qt_metacall +20 QUndoView::~QUndoView +24 QUndoView::~QUndoView +28 QListView::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI9QUndoView) +392 QUndoView::_ZThn8_N9QUndoViewD1Ev +396 QUndoView::_ZThn8_N9QUndoViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=20 align=4 + base size=20 base align=4 +QUndoView (0xb273ec00) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 8u) + QListView (0xb273ec40) 0 + primary-for QUndoView (0xb273ec00) + QAbstractItemView (0xb273ec80) 0 + primary-for QListView (0xb273ec40) + QAbstractScrollArea (0xb273ecc0) 0 + primary-for QAbstractItemView (0xb273ec80) + QFrame (0xb273ed00) 0 + primary-for QAbstractScrollArea (0xb273ecc0) + QWidget (0xb2783050) 0 + primary-for QFrame (0xb273ed00) + QObject (0xb27820f0) 0 + primary-for QWidget (0xb2783050) + QPaintDevice (0xb278212c) 8 + vptr=((& QUndoView::_ZTV9QUndoView) + 392u) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractButton) +8 QAbstractButton::metaObject +12 QAbstractButton::qt_metacast +16 QAbstractButton::qt_metacall +20 QAbstractButton::~QAbstractButton +24 QAbstractButton::~QAbstractButton +28 QAbstractButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 __cxa_pure_virtual +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI15QAbstractButton) +244 QAbstractButton::_ZThn8_N15QAbstractButtonD1Ev +248 QAbstractButton::_ZThn8_N15QAbstractButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=20 align=4 + base size=20 base align=4 +QAbstractButton (0xb273efc0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 8u) + QWidget (0xb2588c30) 0 + primary-for QAbstractButton (0xb273efc0) + QObject (0xb2782e4c) 0 + primary-for QWidget (0xb2588c30) + QPaintDevice (0xb2782e88) 8 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 244u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QButtonGroup) +8 QButtonGroup::metaObject +12 QButtonGroup::qt_metacast +16 QButtonGroup::qt_metacall +20 QButtonGroup::~QButtonGroup +24 QButtonGroup::~QButtonGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QButtonGroup + size=8 align=4 + base size=8 base align=4 +QButtonGroup (0xb25934c0) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 8u) + QObject (0xb25aa708) 0 + primary-for QButtonGroup (0xb25934c0) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QCalendarWidget) +8 QCalendarWidget::metaObject +12 QCalendarWidget::qt_metacast +16 QCalendarWidget::qt_metacall +20 QCalendarWidget::~QCalendarWidget +24 QCalendarWidget::~QCalendarWidget +28 QCalendarWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCalendarWidget::sizeHint +68 QCalendarWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QCalendarWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QCalendarWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QCalendarWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QCalendarWidget::paintCell +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI15QCalendarWidget) +236 QCalendarWidget::_ZThn8_N15QCalendarWidgetD1Ev +240 QCalendarWidget::_ZThn8_N15QCalendarWidgetD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=20 align=4 + base size=20 base align=4 +QCalendarWidget (0xb2593800) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 8u) + QWidget (0xb25bc050) 0 + primary-for QCalendarWidget (0xb2593800) + QObject (0xb25b7474) 0 + primary-for QWidget (0xb25bc050) + QPaintDevice (0xb25b74b0) 8 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 236u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QCheckBox) +8 QCheckBox::metaObject +12 QCheckBox::qt_metacast +16 QCheckBox::qt_metacall +20 QCheckBox::~QCheckBox +24 QCheckBox::~QCheckBox +28 QCheckBox::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCheckBox::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QCheckBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QCheckBox::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QCheckBox::hitButton +228 QCheckBox::checkStateSet +232 QCheckBox::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI9QCheckBox) +244 QCheckBox::_ZThn8_N9QCheckBoxD1Ev +248 QCheckBox::_ZThn8_N9QCheckBoxD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=20 align=4 + base size=20 base align=4 +QCheckBox (0xb2593b40) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 8u) + QAbstractButton (0xb2593b80) 0 + primary-for QCheckBox (0xb2593b40) + QWidget (0xb25d2190) 0 + primary-for QAbstractButton (0xb2593b80) + QObject (0xb25d0474) 0 + primary-for QWidget (0xb25d2190) + QPaintDevice (0xb25d04b0) 8 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 244u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QComboBox) +8 QComboBox::metaObject +12 QComboBox::qt_metacast +16 QComboBox::qt_metacall +20 QComboBox::~QComboBox +24 QComboBox::~QComboBox +28 QComboBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QComboBox::sizeHint +68 QComboBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QComboBox::mousePressEvent +84 QComboBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QComboBox::wheelEvent +100 QComboBox::keyPressEvent +104 QComboBox::keyReleaseEvent +108 QComboBox::focusInEvent +112 QComboBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QComboBox::paintEvent +128 QWidget::moveEvent +132 QComboBox::resizeEvent +136 QWidget::closeEvent +140 QComboBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QComboBox::showEvent +172 QComboBox::hideEvent +176 QWidget::x11Event +180 QComboBox::changeEvent +184 QWidget::metric +188 QComboBox::inputMethodEvent +192 QComboBox::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QComboBox::showPopup +228 QComboBox::hidePopup +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI9QComboBox) +240 QComboBox::_ZThn8_N9QComboBoxD1Ev +244 QComboBox::_ZThn8_N9QComboBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=20 align=4 + base size=20 base align=4 +QComboBox (0xb2593f00) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 8u) + QWidget (0xb25db730) 0 + primary-for QComboBox (0xb2593f00) + QObject (0xb25e37f8) 0 + primary-for QWidget (0xb25db730) + QPaintDevice (0xb25e3834) 8 + vptr=((& QComboBox::_ZTV9QComboBox) + 240u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QPushButton) +8 QPushButton::metaObject +12 QPushButton::qt_metacast +16 QPushButton::qt_metacall +20 QPushButton::~QPushButton +24 QPushButton::~QPushButton +28 QPushButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QPushButton::sizeHint +68 QPushButton::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QPushButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QPushButton::focusInEvent +112 QPushButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QPushButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QPushButton) +244 QPushButton::_ZThn8_N11QPushButtonD1Ev +248 QPushButton::_ZThn8_N11QPushButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=20 align=4 + base size=20 base align=4 +QPushButton (0xb2603880) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 8u) + QAbstractButton (0xb26038c0) 0 + primary-for QPushButton (0xb2603880) + QWidget (0xb261b410) 0 + primary-for QAbstractButton (0xb26038c0) + QObject (0xb261a474) 0 + primary-for QWidget (0xb261b410) + QPaintDevice (0xb261a4b0) 8 + vptr=((& QPushButton::_ZTV11QPushButton) + 244u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QCommandLinkButton) +8 QCommandLinkButton::metaObject +12 QCommandLinkButton::qt_metacast +16 QCommandLinkButton::qt_metacall +20 QCommandLinkButton::~QCommandLinkButton +24 QCommandLinkButton::~QCommandLinkButton +28 QCommandLinkButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCommandLinkButton::sizeHint +68 QCommandLinkButton::minimumSizeHint +72 QCommandLinkButton::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QPushButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QPushButton::focusInEvent +112 QPushButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QCommandLinkButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI18QCommandLinkButton) +244 QCommandLinkButton::_ZThn8_N18QCommandLinkButtonD1Ev +248 QCommandLinkButton::_ZThn8_N18QCommandLinkButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=20 align=4 + base size=20 base align=4 +QCommandLinkButton (0xb2603c80) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 8u) + QPushButton (0xb2603cc0) 0 + primary-for QCommandLinkButton (0xb2603c80) + QAbstractButton (0xb2603d00) 0 + primary-for QPushButton (0xb2603cc0) + QWidget (0xb2626690) 0 + primary-for QAbstractButton (0xb2603d00) + QObject (0xb262e870) 0 + primary-for QWidget (0xb2626690) + QPaintDevice (0xb262e8ac) 8 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 244u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QDateTimeEdit) +8 QDateTimeEdit::metaObject +12 QDateTimeEdit::qt_metacast +16 QDateTimeEdit::qt_metacall +20 QDateTimeEdit::~QDateTimeEdit +24 QDateTimeEdit::~QDateTimeEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI13QDateTimeEdit) +260 QDateTimeEdit::_ZThn8_N13QDateTimeEditD1Ev +264 QDateTimeEdit::_ZThn8_N13QDateTimeEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=20 align=4 + base size=20 base align=4 +QDateTimeEdit (0xb2603fc0) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 8u) + QAbstractSpinBox (0xb2642000) 0 + primary-for QDateTimeEdit (0xb2603fc0) + QWidget (0xb263e230) 0 + primary-for QAbstractSpinBox (0xb2642000) + QObject (0xb263d564) 0 + primary-for QWidget (0xb263e230) + QPaintDevice (0xb263d5a0) 8 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 260u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeEdit) +8 QTimeEdit::metaObject +12 QTimeEdit::qt_metacast +16 QTimeEdit::qt_metacall +20 QTimeEdit::~QTimeEdit +24 QTimeEdit::~QTimeEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI9QTimeEdit) +260 QTimeEdit::_ZThn8_N9QTimeEditD1Ev +264 QTimeEdit::_ZThn8_N9QTimeEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=20 align=4 + base size=20 base align=4 +QTimeEdit (0xb26422c0) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 8u) + QDateTimeEdit (0xb2642300) 0 + primary-for QTimeEdit (0xb26422c0) + QAbstractSpinBox (0xb2642340) 0 + primary-for QDateTimeEdit (0xb2642300) + QWidget (0xb2651550) 0 + primary-for QAbstractSpinBox (0xb2642340) + QObject (0xb2649d20) 0 + primary-for QWidget (0xb2651550) + QPaintDevice (0xb2649d5c) 8 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 260u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QDateEdit) +8 QDateEdit::metaObject +12 QDateEdit::qt_metacast +16 QDateEdit::qt_metacall +20 QDateEdit::~QDateEdit +24 QDateEdit::~QDateEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI9QDateEdit) +260 QDateEdit::_ZThn8_N9QDateEditD1Ev +264 QDateEdit::_ZThn8_N9QDateEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=20 align=4 + base size=20 base align=4 +QDateEdit (0xb2642580) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 8u) + QDateTimeEdit (0xb26425c0) 0 + primary-for QDateEdit (0xb2642580) + QAbstractSpinBox (0xb2642600) 0 + primary-for QDateTimeEdit (0xb26425c0) + QWidget (0xb2660690) 0 + primary-for QAbstractSpinBox (0xb2642600) + QObject (0xb2663528) 0 + primary-for QWidget (0xb2660690) + QPaintDevice (0xb2663564) 8 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 260u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb2663e10) 0 + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QDial) +8 QDial::metaObject +12 QDial::qt_metacast +16 QDial::qt_metacall +20 QDial::~QDial +24 QDial::~QDial +28 QDial::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDial::sizeHint +68 QDial::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDial::mousePressEvent +84 QDial::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QDial::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDial::paintEvent +128 QWidget::moveEvent +132 QDial::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDial::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI5QDial) +236 QDial::_ZThn8_N5QDialD1Ev +240 QDial::_ZThn8_N5QDialD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=20 align=4 + base size=20 base align=4 +QDial (0xb2642900) 0 + vptr=((& QDial::_ZTV5QDial) + 8u) + QAbstractSlider (0xb2642940) 0 + primary-for QDial (0xb2642900) + QWidget (0xb2676cd0) 0 + primary-for QAbstractSlider (0xb2642940) + QObject (0xb267899c) 0 + primary-for QWidget (0xb2676cd0) + QPaintDevice (0xb26789d8) 8 + vptr=((& QDial::_ZTV5QDial) + 236u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QDialogButtonBox) +8 QDialogButtonBox::metaObject +12 QDialogButtonBox::qt_metacast +16 QDialogButtonBox::qt_metacall +20 QDialogButtonBox::~QDialogButtonBox +24 QDialogButtonBox::~QDialogButtonBox +28 QDialogButtonBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QDialogButtonBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI16QDialogButtonBox) +232 QDialogButtonBox::_ZThn8_N16QDialogButtonBoxD1Ev +236 QDialogButtonBox::_ZThn8_N16QDialogButtonBoxD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=20 align=4 + base size=20 base align=4 +QDialogButtonBox (0xb2642c00) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 8u) + QWidget (0xb249e280) 0 + primary-for QDialogButtonBox (0xb2642c00) + QObject (0xb249a744) 0 + primary-for QWidget (0xb249e280) + QPaintDevice (0xb249a780) 8 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb24a7bf4) 0 + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDockWidget) +8 QDockWidget::metaObject +12 QDockWidget::qt_metacast +16 QDockWidget::qt_metacall +20 QDockWidget::~QDockWidget +24 QDockWidget::~QDockWidget +28 QDockWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDockWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QDockWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QDockWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QDockWidget) +232 QDockWidget::_ZThn8_N11QDockWidgetD1Ev +236 QDockWidget::_ZThn8_N11QDockWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=20 align=4 + base size=20 base align=4 +QDockWidget (0xb2642f80) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 8u) + QWidget (0xb24ba7d0) 0 + primary-for QDockWidget (0xb2642f80) + QObject (0xb24bb780) 0 + primary-for QWidget (0xb24ba7d0) + QPaintDevice (0xb24bb7bc) 8 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb24dae88) 0 + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFocusFrame) +8 QFocusFrame::metaObject +12 QFocusFrame::qt_metacast +16 QFocusFrame::qt_metacall +20 QFocusFrame::~QFocusFrame +24 QFocusFrame::~QFocusFrame +28 QFocusFrame::event +32 QFocusFrame::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFocusFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QFocusFrame) +232 QFocusFrame::_ZThn8_N11QFocusFrameD1Ev +236 QFocusFrame::_ZThn8_N11QFocusFrameD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=20 align=4 + base size=20 base align=4 +QFocusFrame (0xb24d3380) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 8u) + QWidget (0xb24ef410) 0 + primary-for QFocusFrame (0xb24d3380) + QObject (0xb24f0a14) 0 + primary-for QWidget (0xb24ef410) + QPaintDevice (0xb24f0a50) 8 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 232u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFontComboBox) +8 QFontComboBox::metaObject +12 QFontComboBox::qt_metacast +16 QFontComboBox::qt_metacall +20 QFontComboBox::~QFontComboBox +24 QFontComboBox::~QFontComboBox +28 QFontComboBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFontComboBox::sizeHint +68 QComboBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QComboBox::mousePressEvent +84 QComboBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QComboBox::wheelEvent +100 QComboBox::keyPressEvent +104 QComboBox::keyReleaseEvent +108 QComboBox::focusInEvent +112 QComboBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QComboBox::paintEvent +128 QWidget::moveEvent +132 QComboBox::resizeEvent +136 QWidget::closeEvent +140 QComboBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QComboBox::showEvent +172 QComboBox::hideEvent +176 QWidget::x11Event +180 QComboBox::changeEvent +184 QWidget::metric +188 QComboBox::inputMethodEvent +192 QComboBox::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QComboBox::showPopup +228 QComboBox::hidePopup +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI13QFontComboBox) +240 QFontComboBox::_ZThn8_N13QFontComboBoxD1Ev +244 QFontComboBox::_ZThn8_N13QFontComboBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=20 align=4 + base size=20 base align=4 +QFontComboBox (0xb24d3640) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 8u) + QComboBox (0xb24d3680) 0 + primary-for QFontComboBox (0xb24d3640) + QWidget (0xb250caa0) 0 + primary-for QComboBox (0xb24d3680) + QObject (0xb250f780) 0 + primary-for QWidget (0xb250caa0) + QPaintDevice (0xb250f7bc) 8 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 240u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb2522780) 0 + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QGroupBox) +8 QGroupBox::metaObject +12 QGroupBox::qt_metacast +16 QGroupBox::qt_metacall +20 QGroupBox::~QGroupBox +24 QGroupBox::~QGroupBox +28 QGroupBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QGroupBox::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QGroupBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGroupBox::mousePressEvent +84 QGroupBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QGroupBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QGroupBox::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGroupBox::paintEvent +128 QWidget::moveEvent +132 QGroupBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QGroupBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QGroupBox) +232 QGroupBox::_ZThn8_N9QGroupBoxD1Ev +236 QGroupBox::_ZThn8_N9QGroupBoxD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=20 align=4 + base size=20 base align=4 +QGroupBox (0xb24d3a00) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 8u) + QWidget (0xb252c780) 0 + primary-for QGroupBox (0xb24d3a00) + QObject (0xb253b348) 0 + primary-for QWidget (0xb252c780) + QPaintDevice (0xb253b384) 8 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 232u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QLabel) +8 QLabel::metaObject +12 QLabel::qt_metacast +16 QLabel::qt_metacall +20 QLabel::~QLabel +24 QLabel::~QLabel +28 QLabel::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLabel::sizeHint +68 QLabel::minimumSizeHint +72 QLabel::heightForWidth +76 QWidget::paintEngine +80 QLabel::mousePressEvent +84 QLabel::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QLabel::mouseMoveEvent +96 QWidget::wheelEvent +100 QLabel::keyPressEvent +104 QWidget::keyReleaseEvent +108 QLabel::focusInEvent +112 QLabel::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLabel::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QLabel::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QLabel::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QLabel::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI6QLabel) +232 QLabel::_ZThn8_N6QLabelD1Ev +236 QLabel::_ZThn8_N6QLabelD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=20 align=4 + base size=20 base align=4 +QLabel (0xb24d3cc0) 0 + vptr=((& QLabel::_ZTV6QLabel) + 8u) + QFrame (0xb24d3d00) 0 + primary-for QLabel (0xb24d3cc0) + QWidget (0xb254dfa0) 0 + primary-for QFrame (0xb24d3d00) + QObject (0xb255612c) 0 + primary-for QWidget (0xb254dfa0) + QPaintDevice (0xb2556168) 8 + vptr=((& QLabel::_ZTV6QLabel) + 232u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QLCDNumber) +8 QLCDNumber::metaObject +12 QLCDNumber::qt_metacast +16 QLCDNumber::qt_metacall +20 QLCDNumber::~QLCDNumber +24 QLCDNumber::~QLCDNumber +28 QLCDNumber::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLCDNumber::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLCDNumber::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QLCDNumber) +232 QLCDNumber::_ZThn8_N10QLCDNumberD1Ev +236 QLCDNumber::_ZThn8_N10QLCDNumberD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=20 align=4 + base size=20 base align=4 +QLCDNumber (0xb256f000) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 8u) + QFrame (0xb256f040) 0 + primary-for QLCDNumber (0xb256f000) + QWidget (0xb2565dc0) 0 + primary-for QFrame (0xb256f040) + QObject (0xb256d168) 0 + primary-for QWidget (0xb2565dc0) + QPaintDevice (0xb256d1a4) 8 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 232u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMainWindow) +8 QMainWindow::metaObject +12 QMainWindow::qt_metacast +16 QMainWindow::qt_metacall +20 QMainWindow::~QMainWindow +24 QMainWindow::~QMainWindow +28 QMainWindow::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QMainWindow::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QMainWindow::createPopupMenu +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI11QMainWindow) +236 QMainWindow::_ZThn8_N11QMainWindowD1Ev +240 QMainWindow::_ZThn8_N11QMainWindowD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=20 align=4 + base size=20 base align=4 +QMainWindow (0xb256f380) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 8u) + QWidget (0xb2578960) 0 + primary-for QMainWindow (0xb256f380) + QObject (0xb257e654) 0 + primary-for QWidget (0xb2578960) + QPaintDevice (0xb257e690) 8 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 236u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb23927f8) 0 + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QMdiArea) +8 QMdiArea::metaObject +12 QMdiArea::qt_metacast +16 QMdiArea::qt_metacall +20 QMdiArea::~QMdiArea +24 QMdiArea::~QMdiArea +28 QMdiArea::event +32 QMdiArea::eventFilter +36 QMdiArea::timerEvent +40 QMdiArea::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMdiArea::sizeHint +68 QMdiArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QMdiArea::paintEvent +128 QWidget::moveEvent +132 QMdiArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QMdiArea::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QMdiArea::viewportEvent +228 QMdiArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI8QMdiArea) +240 QMdiArea::_ZThn8_N8QMdiAreaD1Ev +244 QMdiArea::_ZThn8_N8QMdiAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=20 align=4 + base size=20 base align=4 +QMdiArea (0xb256f700) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 8u) + QAbstractScrollArea (0xb256f740) 0 + primary-for QMdiArea (0xb256f700) + QFrame (0xb256f780) 0 + primary-for QAbstractScrollArea (0xb256f740) + QWidget (0xb239e460) 0 + primary-for QFrame (0xb256f780) + QObject (0xb23ac3c0) 0 + primary-for QWidget (0xb239e460) + QPaintDevice (0xb23ac3fc) 8 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 240u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb23c6834) 0 + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QMdiSubWindow) +8 QMdiSubWindow::metaObject +12 QMdiSubWindow::qt_metacast +16 QMdiSubWindow::qt_metacall +20 QMdiSubWindow::~QMdiSubWindow +24 QMdiSubWindow::~QMdiSubWindow +28 QMdiSubWindow::event +32 QMdiSubWindow::eventFilter +36 QMdiSubWindow::timerEvent +40 QMdiSubWindow::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMdiSubWindow::sizeHint +68 QMdiSubWindow::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QMdiSubWindow::mousePressEvent +84 QMdiSubWindow::mouseReleaseEvent +88 QMdiSubWindow::mouseDoubleClickEvent +92 QMdiSubWindow::mouseMoveEvent +96 QWidget::wheelEvent +100 QMdiSubWindow::keyPressEvent +104 QWidget::keyReleaseEvent +108 QMdiSubWindow::focusInEvent +112 QMdiSubWindow::focusOutEvent +116 QWidget::enterEvent +120 QMdiSubWindow::leaveEvent +124 QMdiSubWindow::paintEvent +128 QMdiSubWindow::moveEvent +132 QMdiSubWindow::resizeEvent +136 QMdiSubWindow::closeEvent +140 QMdiSubWindow::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QMdiSubWindow::showEvent +172 QMdiSubWindow::hideEvent +176 QWidget::x11Event +180 QMdiSubWindow::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI13QMdiSubWindow) +232 QMdiSubWindow::_ZThn8_N13QMdiSubWindowD1Ev +236 QMdiSubWindow::_ZThn8_N13QMdiSubWindowD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=20 align=4 + base size=20 base align=4 +QMdiSubWindow (0xb256fb00) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 8u) + QWidget (0xb23de1e0) 0 + primary-for QMdiSubWindow (0xb256fb00) + QObject (0xb23dd3fc) 0 + primary-for QWidget (0xb23de1e0) + QPaintDevice (0xb23dd438) 8 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb23f9528) 0 + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QMenu) +8 QMenu::metaObject +12 QMenu::qt_metacast +16 QMenu::qt_metacall +20 QMenu::~QMenu +24 QMenu::~QMenu +28 QMenu::event +32 QObject::eventFilter +36 QMenu::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMenu::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QMenu::mousePressEvent +84 QMenu::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QMenu::mouseMoveEvent +96 QMenu::wheelEvent +100 QMenu::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QMenu::enterEvent +120 QMenu::leaveEvent +124 QMenu::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QMenu::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QMenu::hideEvent +176 QWidget::x11Event +180 QMenu::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QMenu::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI5QMenu) +232 QMenu::_ZThn8_N5QMenuD1Ev +236 QMenu::_ZThn8_N5QMenuD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=20 align=4 + base size=20 base align=4 +QMenu (0xb256fec0) 0 + vptr=((& QMenu::_ZTV5QMenu) + 8u) + QWidget (0xb240e140) 0 + primary-for QMenu (0xb256fec0) + QObject (0xb240d0f0) 0 + primary-for QWidget (0xb240e140) + QPaintDevice (0xb240d12c) 8 + vptr=((& QMenu::_ZTV5QMenu) + 232u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QMenuBar) +8 QMenuBar::metaObject +12 QMenuBar::qt_metacast +16 QMenuBar::qt_metacall +20 QMenuBar::~QMenuBar +24 QMenuBar::~QMenuBar +28 QMenuBar::event +32 QMenuBar::eventFilter +36 QMenuBar::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QMenuBar::setVisible +64 QMenuBar::sizeHint +68 QMenuBar::minimumSizeHint +72 QMenuBar::heightForWidth +76 QWidget::paintEngine +80 QMenuBar::mousePressEvent +84 QMenuBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QMenuBar::mouseMoveEvent +96 QWidget::wheelEvent +100 QMenuBar::keyPressEvent +104 QWidget::keyReleaseEvent +108 QMenuBar::focusInEvent +112 QMenuBar::focusOutEvent +116 QWidget::enterEvent +120 QMenuBar::leaveEvent +124 QMenuBar::paintEvent +128 QWidget::moveEvent +132 QMenuBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QMenuBar::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QMenuBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI8QMenuBar) +232 QMenuBar::_ZThn8_N8QMenuBarD1Ev +236 QMenuBar::_ZThn8_N8QMenuBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=20 align=4 + base size=20 base align=4 +QMenuBar (0xb245ea00) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 8u) + QWidget (0xb2457a50) 0 + primary-for QMenuBar (0xb245ea00) + QObject (0xb246d5a0) 0 + primary-for QWidget (0xb2457a50) + QPaintDevice (0xb246d5dc) 8 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 232u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMenuItem) +8 QMenuItem::metaObject +12 QMenuItem::qt_metacast +16 QMenuItem::qt_metacall +20 QMenuItem::~QMenuItem +24 QMenuItem::~QMenuItem +28 QAction::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QMenuItem + size=8 align=4 + base size=8 base align=4 +QMenuItem (0xb22ba540) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 8u) + QAction (0xb22ba580) 0 + primary-for QMenuItem (0xb22ba540) + QObject (0xb22bda8c) 0 + primary-for QAction (0xb22ba580) + +Class QTextEdit::ExtraSelection + size=12 align=4 + base size=12 base align=4 +QTextEdit::ExtraSelection (0xb22ca8ac) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTextEdit) +8 QTextEdit::metaObject +12 QTextEdit::qt_metacast +16 QTextEdit::qt_metacall +20 QTextEdit::~QTextEdit +24 QTextEdit::~QTextEdit +28 QTextEdit::event +32 QObject::eventFilter +36 QTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTextEdit::mousePressEvent +84 QTextEdit::mouseReleaseEvent +88 QTextEdit::mouseDoubleClickEvent +92 QTextEdit::mouseMoveEvent +96 QTextEdit::wheelEvent +100 QTextEdit::keyPressEvent +104 QTextEdit::keyReleaseEvent +108 QTextEdit::focusInEvent +112 QTextEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTextEdit::paintEvent +128 QWidget::moveEvent +132 QTextEdit::resizeEvent +136 QWidget::closeEvent +140 QTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QTextEdit::dragEnterEvent +156 QTextEdit::dragMoveEvent +160 QTextEdit::dragLeaveEvent +164 QTextEdit::dropEvent +168 QTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTextEdit::changeEvent +184 QWidget::metric +188 QTextEdit::inputMethodEvent +192 QTextEdit::inputMethodQuery +196 QTextEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QTextEdit::scrollContentsBy +232 QTextEdit::loadResource +236 QTextEdit::createMimeDataFromSelection +240 QTextEdit::canInsertFromMimeData +244 QTextEdit::insertFromMimeData +248 (int (*)(...))-0x000000008 +252 (int (*)(...))(& _ZTI9QTextEdit) +256 QTextEdit::_ZThn8_N9QTextEditD1Ev +260 QTextEdit::_ZThn8_N9QTextEditD0Ev +264 QWidget::_ZThn8_NK7QWidget7devTypeEv +268 QWidget::_ZThn8_NK7QWidget11paintEngineEv +272 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=20 align=4 + base size=20 base align=4 +QTextEdit (0xb22ba7c0) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 8u) + QAbstractScrollArea (0xb22ba800) 0 + primary-for QTextEdit (0xb22ba7c0) + QFrame (0xb22ba840) 0 + primary-for QAbstractScrollArea (0xb22ba800) + QWidget (0xb22c3b90) 0 + primary-for QFrame (0xb22ba840) + QObject (0xb22ca12c) 0 + primary-for QWidget (0xb22c3b90) + QPaintDevice (0xb22ca168) 8 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 256u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb23080f0) 0 + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QPlainTextEdit) +8 QPlainTextEdit::metaObject +12 QPlainTextEdit::qt_metacast +16 QPlainTextEdit::qt_metacall +20 QPlainTextEdit::~QPlainTextEdit +24 QPlainTextEdit::~QPlainTextEdit +28 QPlainTextEdit::event +32 QObject::eventFilter +36 QPlainTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QPlainTextEdit::mousePressEvent +84 QPlainTextEdit::mouseReleaseEvent +88 QPlainTextEdit::mouseDoubleClickEvent +92 QPlainTextEdit::mouseMoveEvent +96 QPlainTextEdit::wheelEvent +100 QPlainTextEdit::keyPressEvent +104 QPlainTextEdit::keyReleaseEvent +108 QPlainTextEdit::focusInEvent +112 QPlainTextEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QPlainTextEdit::paintEvent +128 QWidget::moveEvent +132 QPlainTextEdit::resizeEvent +136 QWidget::closeEvent +140 QPlainTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QPlainTextEdit::dragEnterEvent +156 QPlainTextEdit::dragMoveEvent +160 QPlainTextEdit::dragLeaveEvent +164 QPlainTextEdit::dropEvent +168 QPlainTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QPlainTextEdit::changeEvent +184 QWidget::metric +188 QPlainTextEdit::inputMethodEvent +192 QPlainTextEdit::inputMethodQuery +196 QPlainTextEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QPlainTextEdit::scrollContentsBy +232 QPlainTextEdit::loadResource +236 QPlainTextEdit::createMimeDataFromSelection +240 QPlainTextEdit::canInsertFromMimeData +244 QPlainTextEdit::insertFromMimeData +248 (int (*)(...))-0x000000008 +252 (int (*)(...))(& _ZTI14QPlainTextEdit) +256 QPlainTextEdit::_ZThn8_N14QPlainTextEditD1Ev +260 QPlainTextEdit::_ZThn8_N14QPlainTextEditD0Ev +264 QWidget::_ZThn8_NK7QWidget7devTypeEv +268 QWidget::_ZThn8_NK7QWidget11paintEngineEv +272 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=20 align=4 + base size=20 base align=4 +QPlainTextEdit (0xb22ff440) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 8u) + QAbstractScrollArea (0xb22ff480) 0 + primary-for QPlainTextEdit (0xb22ff440) + QFrame (0xb22ff4c0) 0 + primary-for QAbstractScrollArea (0xb22ff480) + QWidget (0xb230ec80) 0 + primary-for QFrame (0xb22ff4c0) + QObject (0xb2308ca8) 0 + primary-for QWidget (0xb230ec80) + QPaintDevice (0xb2308ce4) 8 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 256u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +8 QPlainTextDocumentLayout::metaObject +12 QPlainTextDocumentLayout::qt_metacast +16 QPlainTextDocumentLayout::qt_metacall +20 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +24 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QPlainTextDocumentLayout::draw +60 QPlainTextDocumentLayout::hitTest +64 QPlainTextDocumentLayout::pageCount +68 QPlainTextDocumentLayout::documentSize +72 QPlainTextDocumentLayout::frameBoundingRect +76 QPlainTextDocumentLayout::blockBoundingRect +80 QPlainTextDocumentLayout::documentChanged +84 QAbstractTextDocumentLayout::resizeInlineObject +88 QAbstractTextDocumentLayout::positionInlineObject +92 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=8 align=4 + base size=8 base align=4 +QPlainTextDocumentLayout (0xb22ff940) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 8u) + QAbstractTextDocumentLayout (0xb22ff980) 0 + primary-for QPlainTextDocumentLayout (0xb22ff940) + QObject (0xb2346a8c) 0 + primary-for QAbstractTextDocumentLayout (0xb22ff980) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +8 QPrintPreviewWidget::metaObject +12 QPrintPreviewWidget::qt_metacast +16 QPrintPreviewWidget::qt_metacall +20 QPrintPreviewWidget::~QPrintPreviewWidget +24 QPrintPreviewWidget::~QPrintPreviewWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QPrintPreviewWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +232 QPrintPreviewWidget::_ZThn8_N19QPrintPreviewWidgetD1Ev +236 QPrintPreviewWidget::_ZThn8_N19QPrintPreviewWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=24 align=4 + base size=24 base align=4 +QPrintPreviewWidget (0xb22ffc40) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 8u) + QWidget (0xb2352550) 0 + primary-for QPrintPreviewWidget (0xb22ffc40) + QObject (0xb23583c0) 0 + primary-for QWidget (0xb2352550) + QPaintDevice (0xb23583fc) 8 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 232u) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QProgressBar) +8 QProgressBar::metaObject +12 QProgressBar::qt_metacast +16 QProgressBar::qt_metacall +20 QProgressBar::~QProgressBar +24 QProgressBar::~QProgressBar +28 QProgressBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QProgressBar::sizeHint +68 QProgressBar::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QProgressBar::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QProgressBar::text +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI12QProgressBar) +236 QProgressBar::_ZThn8_N12QProgressBarD1Ev +240 QProgressBar::_ZThn8_N12QProgressBarD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=20 align=4 + base size=20 base align=4 +QProgressBar (0xb22fff00) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 8u) + QWidget (0xb23615f0) 0 + primary-for QProgressBar (0xb22fff00) + QObject (0xb236a12c) 0 + primary-for QWidget (0xb23615f0) + QPaintDevice (0xb236a168) 8 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 236u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QRadioButton) +8 QRadioButton::metaObject +12 QRadioButton::qt_metacast +16 QRadioButton::qt_metacall +20 QRadioButton::~QRadioButton +24 QRadioButton::~QRadioButton +28 QRadioButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QRadioButton::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QRadioButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QRadioButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QRadioButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QRadioButton) +244 QRadioButton::_ZThn8_N12QRadioButtonD1Ev +248 QRadioButton::_ZThn8_N12QRadioButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=20 align=4 + base size=20 base align=4 +QRadioButton (0xb23751c0) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 8u) + QAbstractButton (0xb2375200) 0 + primary-for QRadioButton (0xb23751c0) + QWidget (0xb23735f0) 0 + primary-for QAbstractButton (0xb2375200) + QObject (0xb237b000) 0 + primary-for QWidget (0xb23735f0) + QPaintDevice (0xb237b03c) 8 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 244u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QScrollBar) +8 QScrollBar::metaObject +12 QScrollBar::qt_metacast +16 QScrollBar::qt_metacall +20 QScrollBar::~QScrollBar +24 QScrollBar::~QScrollBar +28 QScrollBar::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QScrollBar::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QScrollBar::mousePressEvent +84 QScrollBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QScrollBar::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QScrollBar::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QScrollBar::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QScrollBar::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QScrollBar::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI10QScrollBar) +236 QScrollBar::_ZThn8_N10QScrollBarD1Ev +240 QScrollBar::_ZThn8_N10QScrollBarD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=20 align=4 + base size=20 base align=4 +QScrollBar (0xb23754c0) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 8u) + QAbstractSlider (0xb2375500) 0 + primary-for QScrollBar (0xb23754c0) + QWidget (0xb23824b0) 0 + primary-for QAbstractSlider (0xb2375500) + QObject (0xb237bdd4) 0 + primary-for QWidget (0xb23824b0) + QPaintDevice (0xb237be10) 8 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 236u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSizeGrip) +8 QSizeGrip::metaObject +12 QSizeGrip::qt_metacast +16 QSizeGrip::qt_metacall +20 QSizeGrip::~QSizeGrip +24 QSizeGrip::~QSizeGrip +28 QSizeGrip::event +32 QSizeGrip::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QSizeGrip::setVisible +64 QSizeGrip::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSizeGrip::mousePressEvent +84 QSizeGrip::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSizeGrip::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSizeGrip::paintEvent +128 QSizeGrip::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QSizeGrip::showEvent +172 QSizeGrip::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QSizeGrip) +232 QSizeGrip::_ZThn8_N9QSizeGripD1Ev +236 QSizeGrip::_ZThn8_N9QSizeGripD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=20 align=4 + base size=20 base align=4 +QSizeGrip (0xb2375800) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 8u) + QWidget (0xb2191b40) 0 + primary-for QSizeGrip (0xb2375800) + QObject (0xb2190dd4) 0 + primary-for QWidget (0xb2191b40) + QPaintDevice (0xb2190e10) 8 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 232u) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QSpinBox) +8 QSpinBox::metaObject +12 QSpinBox::qt_metacast +16 QSpinBox::qt_metacall +20 QSpinBox::~QSpinBox +24 QSpinBox::~QSpinBox +28 QSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSpinBox::validate +228 QSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 QSpinBox::valueFromText +248 QSpinBox::textFromValue +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI8QSpinBox) +260 QSpinBox::_ZThn8_N8QSpinBoxD1Ev +264 QSpinBox::_ZThn8_N8QSpinBoxD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=20 align=4 + base size=20 base align=4 +QSpinBox (0xb2375ac0) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 8u) + QAbstractSpinBox (0xb2375b00) 0 + primary-for QSpinBox (0xb2375ac0) + QWidget (0xb21a1be0) 0 + primary-for QAbstractSpinBox (0xb2375b00) + QObject (0xb21a0ac8) 0 + primary-for QWidget (0xb21a1be0) + QPaintDevice (0xb21a0b04) 8 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 260u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDoubleSpinBox) +8 QDoubleSpinBox::metaObject +12 QDoubleSpinBox::qt_metacast +16 QDoubleSpinBox::qt_metacall +20 QDoubleSpinBox::~QDoubleSpinBox +24 QDoubleSpinBox::~QDoubleSpinBox +28 QAbstractSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDoubleSpinBox::validate +228 QDoubleSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 QDoubleSpinBox::valueFromText +248 QDoubleSpinBox::textFromValue +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI14QDoubleSpinBox) +260 QDoubleSpinBox::_ZThn8_N14QDoubleSpinBoxD1Ev +264 QDoubleSpinBox::_ZThn8_N14QDoubleSpinBoxD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=20 align=4 + base size=20 base align=4 +QDoubleSpinBox (0xb2375f00) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 8u) + QAbstractSpinBox (0xb2375f40) 0 + primary-for QDoubleSpinBox (0xb2375f00) + QWidget (0xb21b4640) 0 + primary-for QAbstractSpinBox (0xb2375f40) + QObject (0xb21b2ec4) 0 + primary-for QWidget (0xb21b4640) + QPaintDevice (0xb21b2f00) 8 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 260u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSplashScreen) +8 QSplashScreen::metaObject +12 QSplashScreen::qt_metacast +16 QSplashScreen::qt_metacall +20 QSplashScreen::~QSplashScreen +24 QSplashScreen::~QSplashScreen +28 QSplashScreen::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSplashScreen::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSplashScreen::drawContents +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI13QSplashScreen) +236 QSplashScreen::_ZThn8_N13QSplashScreenD1Ev +240 QSplashScreen::_ZThn8_N13QSplashScreenD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=20 align=4 + base size=20 base align=4 +QSplashScreen (0xb21cb200) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 8u) + QWidget (0xb21c9460) 0 + primary-for QSplashScreen (0xb21cb200) + QObject (0xb21c4b7c) 0 + primary-for QWidget (0xb21c9460) + QPaintDevice (0xb21c4bb8) 8 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 236u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSplitter) +8 QSplitter::metaObject +12 QSplitter::qt_metacast +16 QSplitter::qt_metacall +20 QSplitter::~QSplitter +24 QSplitter::~QSplitter +28 QSplitter::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QSplitter::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSplitter::sizeHint +68 QSplitter::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QSplitter::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QSplitter::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSplitter::createHandle +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI9QSplitter) +236 QSplitter::_ZThn8_N9QSplitterD1Ev +240 QSplitter::_ZThn8_N9QSplitterD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=20 align=4 + base size=20 base align=4 +QSplitter (0xb21cb540) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 8u) + QFrame (0xb21cb580) 0 + primary-for QSplitter (0xb21cb540) + QWidget (0xb21e0370) 0 + primary-for QFrame (0xb21cb580) + QObject (0xb21dabb8) 0 + primary-for QWidget (0xb21e0370) + QPaintDevice (0xb21dabf4) 8 + vptr=((& QSplitter::_ZTV9QSplitter) + 236u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSplitterHandle) +8 QSplitterHandle::metaObject +12 QSplitterHandle::qt_metacast +16 QSplitterHandle::qt_metacall +20 QSplitterHandle::~QSplitterHandle +24 QSplitterHandle::~QSplitterHandle +28 QSplitterHandle::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSplitterHandle::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSplitterHandle::mousePressEvent +84 QSplitterHandle::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSplitterHandle::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSplitterHandle::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI15QSplitterHandle) +232 QSplitterHandle::_ZThn8_N15QSplitterHandleD1Ev +236 QSplitterHandle::_ZThn8_N15QSplitterHandleD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=20 align=4 + base size=20 base align=4 +QSplitterHandle (0xb21cb980) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 8u) + QWidget (0xb21eeb90) 0 + primary-for QSplitterHandle (0xb21cb980) + QObject (0xb21f930c) 0 + primary-for QWidget (0xb21eeb90) + QPaintDevice (0xb21f9348) 8 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 232u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QStackedWidget) +8 QStackedWidget::metaObject +12 QStackedWidget::qt_metacast +16 QStackedWidget::qt_metacall +20 QStackedWidget::~QStackedWidget +24 QStackedWidget::~QStackedWidget +28 QStackedWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI14QStackedWidget) +232 QStackedWidget::_ZThn8_N14QStackedWidgetD1Ev +236 QStackedWidget::_ZThn8_N14QStackedWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=20 align=4 + base size=20 base align=4 +QStackedWidget (0xb21cbc40) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 8u) + QFrame (0xb21cbc80) 0 + primary-for QStackedWidget (0xb21cbc40) + QWidget (0xb2201500) 0 + primary-for QFrame (0xb21cbc80) + QObject (0xb21f9ec4) 0 + primary-for QWidget (0xb2201500) + QPaintDevice (0xb21f9f00) 8 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 232u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QStatusBar) +8 QStatusBar::metaObject +12 QStatusBar::qt_metacast +16 QStatusBar::qt_metacall +20 QStatusBar::~QStatusBar +24 QStatusBar::~QStatusBar +28 QStatusBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QStatusBar::paintEvent +128 QWidget::moveEvent +132 QStatusBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QStatusBar::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QStatusBar) +232 QStatusBar::_ZThn8_N10QStatusBarD1Ev +236 QStatusBar::_ZThn8_N10QStatusBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=20 align=4 + base size=20 base align=4 +QStatusBar (0xb21cbf40) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 8u) + QWidget (0xb220beb0) 0 + primary-for QStatusBar (0xb21cbf40) + QObject (0xb220ad98) 0 + primary-for QWidget (0xb220beb0) + QPaintDevice (0xb220add4) 8 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 232u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextBrowser) +8 QTextBrowser::metaObject +12 QTextBrowser::qt_metacast +16 QTextBrowser::qt_metacall +20 QTextBrowser::~QTextBrowser +24 QTextBrowser::~QTextBrowser +28 QTextBrowser::event +32 QObject::eventFilter +36 QTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTextBrowser::mousePressEvent +84 QTextBrowser::mouseReleaseEvent +88 QTextEdit::mouseDoubleClickEvent +92 QTextBrowser::mouseMoveEvent +96 QTextEdit::wheelEvent +100 QTextBrowser::keyPressEvent +104 QTextEdit::keyReleaseEvent +108 QTextEdit::focusInEvent +112 QTextBrowser::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTextBrowser::paintEvent +128 QWidget::moveEvent +132 QTextEdit::resizeEvent +136 QWidget::closeEvent +140 QTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QTextEdit::dragEnterEvent +156 QTextEdit::dragMoveEvent +160 QTextEdit::dragLeaveEvent +164 QTextEdit::dropEvent +168 QTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTextEdit::changeEvent +184 QWidget::metric +188 QTextEdit::inputMethodEvent +192 QTextEdit::inputMethodQuery +196 QTextBrowser::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QTextEdit::scrollContentsBy +232 QTextBrowser::loadResource +236 QTextEdit::createMimeDataFromSelection +240 QTextEdit::canInsertFromMimeData +244 QTextEdit::insertFromMimeData +248 QTextBrowser::setSource +252 QTextBrowser::backward +256 QTextBrowser::forward +260 QTextBrowser::home +264 QTextBrowser::reload +268 (int (*)(...))-0x000000008 +272 (int (*)(...))(& _ZTI12QTextBrowser) +276 QTextBrowser::_ZThn8_N12QTextBrowserD1Ev +280 QTextBrowser::_ZThn8_N12QTextBrowserD0Ev +284 QWidget::_ZThn8_NK7QWidget7devTypeEv +288 QWidget::_ZThn8_NK7QWidget11paintEngineEv +292 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=20 align=4 + base size=20 base align=4 +QTextBrowser (0xb2221340) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 8u) + QTextEdit (0xb2221380) 0 + primary-for QTextBrowser (0xb2221340) + QAbstractScrollArea (0xb22213c0) 0 + primary-for QTextEdit (0xb2221380) + QFrame (0xb2221400) 0 + primary-for QAbstractScrollArea (0xb22213c0) + QWidget (0xb22251e0) 0 + primary-for QFrame (0xb2221400) + QObject (0xb222a000) 0 + primary-for QWidget (0xb22251e0) + QPaintDevice (0xb222a03c) 8 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 276u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QToolBar) +8 QToolBar::metaObject +12 QToolBar::qt_metacast +16 QToolBar::qt_metacall +20 QToolBar::~QToolBar +24 QToolBar::~QToolBar +28 QToolBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QToolBar::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QToolBar::paintEvent +128 QWidget::moveEvent +132 QToolBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QToolBar::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI8QToolBar) +232 QToolBar::_ZThn8_N8QToolBarD1Ev +236 QToolBar::_ZThn8_N8QToolBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=20 align=4 + base size=20 base align=4 +QToolBar (0xb22216c0) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 8u) + QWidget (0xb22318c0) 0 + primary-for QToolBar (0xb22216c0) + QObject (0xb222ad20) 0 + primary-for QWidget (0xb22318c0) + QPaintDevice (0xb222ad5c) 8 + vptr=((& QToolBar::_ZTV8QToolBar) + 232u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QToolBox) +8 QToolBox::metaObject +12 QToolBox::qt_metacast +16 QToolBox::qt_metacall +20 QToolBox::~QToolBox +24 QToolBox::~QToolBox +28 QToolBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QToolBox::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QToolBox::itemInserted +228 QToolBox::itemRemoved +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI8QToolBox) +240 QToolBox::_ZThn8_N8QToolBoxD1Ev +244 QToolBox::_ZThn8_N8QToolBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=20 align=4 + base size=20 base align=4 +QToolBox (0xb2221a80) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 8u) + QFrame (0xb2221ac0) 0 + primary-for QToolBox (0xb2221a80) + QWidget (0xb2247dc0) 0 + primary-for QFrame (0xb2221ac0) + QObject (0xb225730c) 0 + primary-for QWidget (0xb2247dc0) + QPaintDevice (0xb2257348) 8 + vptr=((& QToolBox::_ZTV8QToolBox) + 240u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QToolButton) +8 QToolButton::metaObject +12 QToolButton::qt_metacast +16 QToolButton::qt_metacall +20 QToolButton::~QToolButton +24 QToolButton::~QToolButton +28 QToolButton::event +32 QObject::eventFilter +36 QToolButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QToolButton::sizeHint +68 QToolButton::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QToolButton::mousePressEvent +84 QToolButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QToolButton::enterEvent +120 QToolButton::leaveEvent +124 QToolButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QToolButton::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QToolButton::hitButton +228 QAbstractButton::checkStateSet +232 QToolButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QToolButton) +244 QToolButton::_ZThn8_N11QToolButtonD1Ev +248 QToolButton::_ZThn8_N11QToolButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=20 align=4 + base size=20 base align=4 +QToolButton (0xb22760c0) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 8u) + QAbstractButton (0xb2276100) 0 + primary-for QToolButton (0xb22760c0) + QWidget (0xb2272550) 0 + primary-for QAbstractButton (0xb2276100) + QObject (0xb2273780) 0 + primary-for QWidget (0xb2272550) + QPaintDevice (0xb22737bc) 8 + vptr=((& QToolButton::_ZTV11QToolButton) + 244u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QWorkspace) +8 QWorkspace::metaObject +12 QWorkspace::qt_metacast +16 QWorkspace::qt_metacall +20 QWorkspace::~QWorkspace +24 QWorkspace::~QWorkspace +28 QWorkspace::event +32 QWorkspace::eventFilter +36 QObject::timerEvent +40 QWorkspace::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWorkspace::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWorkspace::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWorkspace::paintEvent +128 QWidget::moveEvent +132 QWorkspace::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWorkspace::showEvent +172 QWorkspace::hideEvent +176 QWidget::x11Event +180 QWorkspace::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QWorkspace) +232 QWorkspace::_ZThn8_N10QWorkspaceD1Ev +236 QWorkspace::_ZThn8_N10QWorkspaceD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=20 align=4 + base size=20 base align=4 +QWorkspace (0xb22767c0) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 8u) + QWidget (0xb2087a00) 0 + primary-for QWorkspace (0xb22767c0) + QObject (0xb2094e10) 0 + primary-for QWidget (0xb2087a00) + QPaintDevice (0xb2094e4c) 8 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 232u) + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QUrlInfo) +8 QUrlInfo::~QUrlInfo +12 QUrlInfo::~QUrlInfo +16 QUrlInfo::setName +20 QUrlInfo::setDir +24 QUrlInfo::setFile +28 QUrlInfo::setSymLink +32 QUrlInfo::setOwner +36 QUrlInfo::setGroup +40 QUrlInfo::setSize +44 QUrlInfo::setWritable +48 QUrlInfo::setReadable +52 QUrlInfo::setPermissions +56 QUrlInfo::setLastModified + +Class QUrlInfo + size=8 align=4 + base size=8 base align=4 +QUrlInfo (0xb209ee88) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 8u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI4QFtp) +8 QFtp::metaObject +12 QFtp::qt_metacast +16 QFtp::qt_metacall +20 QFtp::~QFtp +24 QFtp::~QFtp +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFtp + size=8 align=4 + base size=8 base align=4 +QFtp (0xb2276b00) 0 + vptr=((& QFtp::_ZTV4QFtp) + 8u) + QObject (0xb20ae744) 0 + primary-for QFtp (0xb2276b00) + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHttpHeader) +8 QHttpHeader::~QHttpHeader +12 QHttpHeader::~QHttpHeader +16 QHttpHeader::toString +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QHttpHeader::parseLine + +Class QHttpHeader + size=8 align=4 + base size=8 base align=4 +QHttpHeader (0xb20c599c) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 8u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QHttpResponseHeader) +8 QHttpResponseHeader::~QHttpResponseHeader +12 QHttpResponseHeader::~QHttpResponseHeader +16 QHttpResponseHeader::toString +20 QHttpResponseHeader::majorVersion +24 QHttpResponseHeader::minorVersion +28 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=8 align=4 + base size=8 base align=4 +QHttpResponseHeader (0xb2276f00) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 8u) + QHttpHeader (0xb20d4078) 0 + primary-for QHttpResponseHeader (0xb2276f00) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QHttpRequestHeader) +8 QHttpRequestHeader::~QHttpRequestHeader +12 QHttpRequestHeader::~QHttpRequestHeader +16 QHttpRequestHeader::toString +20 QHttpRequestHeader::majorVersion +24 QHttpRequestHeader::minorVersion +28 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=8 align=4 + base size=8 base align=4 +QHttpRequestHeader (0xb20db000) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 8u) + QHttpHeader (0xb20d46cc) 0 + primary-for QHttpRequestHeader (0xb20db000) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QHttp) +8 QHttp::metaObject +12 QHttp::qt_metacast +16 QHttp::qt_metacall +20 QHttp::~QHttp +24 QHttp::~QHttp +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QHttp + size=8 align=4 + base size=8 base align=4 +QHttp (0xb20db100) 0 + vptr=((& QHttp::_ZTV5QHttp) + 8u) + QObject (0xb20d4ca8) 0 + primary-for QHttp (0xb20db100) + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QNetworkAccessManager) +8 QNetworkAccessManager::metaObject +12 QNetworkAccessManager::qt_metacast +16 QNetworkAccessManager::qt_metacall +20 QNetworkAccessManager::~QNetworkAccessManager +24 QNetworkAccessManager::~QNetworkAccessManager +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=8 align=4 + base size=8 base align=4 +QNetworkAccessManager (0xb20db400) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 8u) + QObject (0xb20ebca8) 0 + primary-for QNetworkAccessManager (0xb20db400) + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb2105c6c) 0 + +Class QNetworkCookie + size=4 align=4 + base size=4 base align=4 +QNetworkCookie (0xb2105618) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2105e88) 0 empty + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QNetworkCookieJar) +8 QNetworkCookieJar::metaObject +12 QNetworkCookieJar::qt_metacast +16 QNetworkCookieJar::qt_metacall +20 QNetworkCookieJar::~QNetworkCookieJar +24 QNetworkCookieJar::~QNetworkCookieJar +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QNetworkCookieJar::cookiesForUrl +60 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=8 align=4 + base size=8 base align=4 +QNetworkCookieJar (0xb20db840) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 8u) + QObject (0xb2105f78) 0 + primary-for QNetworkCookieJar (0xb20db840) + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb2119b04) 0 empty + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb2119ca8) 0 empty + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb212830c) 0 + +Class QNetworkRequest + size=4 align=4 + base size=4 base align=4 +QNetworkRequest (0xb2119e4c) 0 + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb21284ec) 0 empty + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QNetworkReply) +8 QNetworkReply::metaObject +12 QNetworkReply::qt_metacast +16 QNetworkReply::qt_metacall +20 QNetworkReply::~QNetworkReply +24 QNetworkReply::~QNetworkReply +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QNetworkReply::isSequential +60 QIODevice::open +64 QNetworkReply::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 QNetworkReply::writeData +120 __cxa_pure_virtual +124 QNetworkReply::setReadBufferSize +128 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=8 align=4 + base size=8 base align=4 +QNetworkReply (0xb20dbf80) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 8u) + QIODevice (0xb20dbfc0) 0 + primary-for QNetworkReply (0xb20dbf80) + QObject (0xb2128690) 0 + primary-for QIODevice (0xb20dbfc0) + +Class QAuthenticator + size=4 align=4 + base size=4 base align=4 +QAuthenticator (0xb2142384) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractSocket) +8 QAbstractSocket::metaObject +12 QAbstractSocket::qt_metacast +16 QAbstractSocket::qt_metacall +20 QAbstractSocket::~QAbstractSocket +24 QAbstractSocket::~QAbstractSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QAbstractSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QAbstractSocket::atEnd +84 QIODevice::reset +88 QAbstractSocket::bytesAvailable +92 QAbstractSocket::bytesToWrite +96 QAbstractSocket::canReadLine +100 QAbstractSocket::waitForReadyRead +104 QAbstractSocket::waitForBytesWritten +108 QAbstractSocket::readData +112 QAbstractSocket::readLineData +116 QAbstractSocket::writeData + +Class QAbstractSocket + size=8 align=4 + base size=8 base align=4 +QAbstractSocket (0xb2135300) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 8u) + QIODevice (0xb2135340) 0 + primary-for QAbstractSocket (0xb2135300) + QObject (0xb21427f8) 0 + primary-for QIODevice (0xb2135340) + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0xb215f870) 0 + +Class QHostAddress + size=4 align=4 + base size=4 base align=4 +QHostAddress (0xb215fb40) 0 + +Class QHostInfo + size=4 align=4 + base size=4 base align=4 +QHostInfo (0xb2167d20) 0 + +Class QNetworkAddressEntry + size=4 align=4 + base size=4 base align=4 +QNetworkAddressEntry (0xb21801a4) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb2180d20) 0 + +Class QNetworkInterface + size=4 align=4 + base size=4 base align=4 +QNetworkInterface (0xb2180474) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb2180e4c) 0 + +Class QNetworkProxy + size=4 align=4 + base size=4 base align=4 +QNetworkProxy (0xb1f949d8) 0 + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QLocalServer) +8 QLocalServer::metaObject +12 QLocalServer::qt_metacast +16 QLocalServer::qt_metacall +20 QLocalServer::~QLocalServer +24 QLocalServer::~QLocalServer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLocalServer::hasPendingConnections +60 QLocalServer::nextPendingConnection +64 QLocalServer::incomingConnection + +Class QLocalServer + size=8 align=4 + base size=8 base align=4 +QLocalServer (0xb2135d40) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 8u) + QObject (0xb1fb2564) 0 + primary-for QLocalServer (0xb2135d40) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QLocalSocket) +8 QLocalSocket::metaObject +12 QLocalSocket::qt_metacast +16 QLocalSocket::qt_metacall +20 QLocalSocket::~QLocalSocket +24 QLocalSocket::~QLocalSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLocalSocket::isSequential +60 QIODevice::open +64 QLocalSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QLocalSocket::bytesAvailable +92 QLocalSocket::bytesToWrite +96 QLocalSocket::canReadLine +100 QLocalSocket::waitForReadyRead +104 QLocalSocket::waitForBytesWritten +108 QLocalSocket::readData +112 QIODevice::readLineData +116 QLocalSocket::writeData + +Class QLocalSocket + size=8 align=4 + base size=8 base align=4 +QLocalSocket (0xb1fc3000) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 8u) + QIODevice (0xb1fc3040) 0 + primary-for QLocalSocket (0xb1fc3000) + QObject (0xb1fc21a4) 0 + primary-for QIODevice (0xb1fc3040) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTcpServer) +8 QTcpServer::metaObject +12 QTcpServer::qt_metacast +16 QTcpServer::qt_metacall +20 QTcpServer::~QTcpServer +24 QTcpServer::~QTcpServer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTcpServer::hasPendingConnections +60 QTcpServer::nextPendingConnection +64 QTcpServer::incomingConnection + +Class QTcpServer + size=8 align=4 + base size=8 base align=4 +QTcpServer (0xb1fc3300) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 8u) + QObject (0xb1fcea50) 0 + primary-for QTcpServer (0xb1fc3300) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTcpSocket) +8 QTcpSocket::metaObject +12 QTcpSocket::qt_metacast +16 QTcpSocket::qt_metacall +20 QTcpSocket::~QTcpSocket +24 QTcpSocket::~QTcpSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QAbstractSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QAbstractSocket::atEnd +84 QIODevice::reset +88 QAbstractSocket::bytesAvailable +92 QAbstractSocket::bytesToWrite +96 QAbstractSocket::canReadLine +100 QAbstractSocket::waitForReadyRead +104 QAbstractSocket::waitForBytesWritten +108 QAbstractSocket::readData +112 QAbstractSocket::readLineData +116 QAbstractSocket::writeData + +Class QTcpSocket + size=8 align=4 + base size=8 base align=4 +QTcpSocket (0xb1fc35c0) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 8u) + QAbstractSocket (0xb1fc3600) 0 + primary-for QTcpSocket (0xb1fc35c0) + QIODevice (0xb1fc3640) 0 + primary-for QAbstractSocket (0xb1fc3600) + QObject (0xb1fde6cc) 0 + primary-for QIODevice (0xb1fc3640) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUdpSocket) +8 QUdpSocket::metaObject +12 QUdpSocket::qt_metacast +16 QUdpSocket::qt_metacall +20 QUdpSocket::~QUdpSocket +24 QUdpSocket::~QUdpSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QAbstractSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QAbstractSocket::atEnd +84 QIODevice::reset +88 QAbstractSocket::bytesAvailable +92 QAbstractSocket::bytesToWrite +96 QAbstractSocket::canReadLine +100 QAbstractSocket::waitForReadyRead +104 QAbstractSocket::waitForBytesWritten +108 QAbstractSocket::readData +112 QAbstractSocket::readLineData +116 QAbstractSocket::writeData + +Class QUdpSocket + size=8 align=4 + base size=8 base align=4 +QUdpSocket (0xb1fc3900) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 8u) + QAbstractSocket (0xb1fc3940) 0 + primary-for QUdpSocket (0xb1fc3900) + QIODevice (0xb1fc3980) 0 + primary-for QAbstractSocket (0xb1fc3940) + QObject (0xb1fed2d0) 0 + primary-for QIODevice (0xb1fc3980) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb1ffe1a4) 0 + +Class QSslCertificate + size=4 align=4 + base size=4 base align=4 +QSslCertificate (0xb1ffed5c) 0 + +Class QSslCipher + size=4 align=4 + base size=4 base align=4 +QSslCipher (0xb2023b40) 0 + +Class QSslError + size=4 align=4 + base size=4 base align=4 +QSslError (0xb202d000) 0 + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QSslSocket) +8 QSslSocket::metaObject +12 QSslSocket::qt_metacast +16 QSslSocket::qt_metacall +20 QSslSocket::~QSslSocket +24 QSslSocket::~QSslSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QSslSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QSslSocket::atEnd +84 QIODevice::reset +88 QSslSocket::bytesAvailable +92 QSslSocket::bytesToWrite +96 QSslSocket::canReadLine +100 QSslSocket::waitForReadyRead +104 QSslSocket::waitForBytesWritten +108 QSslSocket::readData +112 QAbstractSocket::readLineData +116 QSslSocket::writeData + +Class QSslSocket + size=8 align=4 + base size=8 base align=4 +QSslSocket (0xb1fc3f00) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 8u) + QTcpSocket (0xb1fc3f40) 0 + primary-for QSslSocket (0xb1fc3f00) + QAbstractSocket (0xb1fc3f80) 0 + primary-for QTcpSocket (0xb1fc3f40) + QIODevice (0xb1fc3fc0) 0 + primary-for QAbstractSocket (0xb1fc3f80) + QObject (0xb202d708) 0 + primary-for QIODevice (0xb1fc3fc0) + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb2044b40) 0 empty + +Class QSslConfiguration + size=4 align=4 + base size=4 base align=4 +QSslConfiguration (0xb2044ce4) 0 + +Class QSslKey + size=4 align=4 + base size=4 base align=4 +QSslKey (0xb2050348) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb2050924) 0 + +Class QSqlRecord + size=4 align=4 + base size=4 base align=4 +QSqlRecord (0xb2071258) 0 + +Vtable for QSqlDriverCreatorBase +QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QSqlDriverCreatorBase) +8 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +12 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +16 __cxa_pure_virtual + +Class QSqlDriverCreatorBase + size=4 align=4 + base size=4 base align=4 +QSqlDriverCreatorBase (0xb2071870) 0 nearly-empty + vptr=((& QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase) + 8u) + +Class QSqlDatabase + size=4 align=4 + base size=4 base align=4 +QSqlDatabase (0xb2071c30) 0 + +Class QSqlQuery + size=4 align=4 + base size=4 base align=4 +QSqlQuery (0xb1e93654) 0 + +Vtable for QSqlDriver +QSqlDriver::_ZTV10QSqlDriver: 32u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QSqlDriver) +8 QSqlDriver::metaObject +12 QSqlDriver::qt_metacast +16 QSqlDriver::qt_metacall +20 QSqlDriver::~QSqlDriver +24 QSqlDriver::~QSqlDriver +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QSqlDriver::isOpen +60 QSqlDriver::beginTransaction +64 QSqlDriver::commitTransaction +68 QSqlDriver::rollbackTransaction +72 QSqlDriver::tables +76 QSqlDriver::primaryIndex +80 QSqlDriver::record +84 QSqlDriver::formatValue +88 QSqlDriver::escapeIdentifier +92 QSqlDriver::sqlStatement +96 QSqlDriver::handle +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 QSqlDriver::setOpen +120 QSqlDriver::setOpenError +124 QSqlDriver::setLastError + +Class QSqlDriver + size=8 align=4 + base size=8 base align=4 +QSqlDriver (0xb2035980) 0 + vptr=((& QSqlDriver::_ZTV10QSqlDriver) + 8u) + QObject (0xb1e93bb8) 0 + primary-for QSqlDriver (0xb2035980) + +Vtable for QSqlDriverFactoryInterface +QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QSqlDriverFactoryInterface) +8 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +12 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QSqlDriverFactoryInterface + size=4 align=4 + base size=4 base align=4 +QSqlDriverFactoryInterface (0xb2035d80) 0 nearly-empty + vptr=((& QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface) + 8u) + QFactoryInterface (0xb1eaabf4) 0 nearly-empty + primary-for QSqlDriverFactoryInterface (0xb2035d80) + +Vtable for QSqlDriverPlugin +QSqlDriverPlugin::_ZTV16QSqlDriverPlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +8 QSqlDriverPlugin::metaObject +12 QSqlDriverPlugin::qt_metacast +16 QSqlDriverPlugin::qt_metacall +20 QSqlDriverPlugin::~QSqlDriverPlugin +24 QSqlDriverPlugin::~QSqlDriverPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +72 QSqlDriverPlugin::_ZThn8_N16QSqlDriverPluginD1Ev +76 QSqlDriverPlugin::_ZThn8_N16QSqlDriverPluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QSqlDriverPlugin + size=12 align=4 + base size=12 base align=4 +QSqlDriverPlugin (0xb1eb8370) 0 + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 8u) + QObject (0xb1eaaf3c) 0 + primary-for QSqlDriverPlugin (0xb1eb8370) + QSqlDriverFactoryInterface (0xb2035f00) 8 nearly-empty + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 72u) + QFactoryInterface (0xb1eaaf78) 8 nearly-empty + primary-for QSqlDriverFactoryInterface (0xb2035f00) + +Class QSqlError + size=16 align=4 + base size=16 base align=4 +QSqlError (0xb1ebe708) 0 + +Class QSqlField + size=16 align=4 + base size=16 base align=4 +QSqlField (0xb1ebef00) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb1ecbec4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb1ecbe4c) 0 + +Class QSqlIndex + size=16 align=4 + base size=16 base align=4 +QSqlIndex (0xb1ec12c0) 0 + QSqlRecord (0xb1ecbb04) 0 + +Vtable for QSqlResult +QSqlResult::_ZTV10QSqlResult: 29u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QSqlResult) +8 QSqlResult::~QSqlResult +12 QSqlResult::~QSqlResult +16 QSqlResult::handle +20 QSqlResult::setAt +24 QSqlResult::setActive +28 QSqlResult::setLastError +32 QSqlResult::setQuery +36 QSqlResult::setSelect +40 QSqlResult::setForwardOnly +44 QSqlResult::exec +48 QSqlResult::prepare +52 QSqlResult::savePrepare +56 QSqlResult::bindValue +60 QSqlResult::bindValue +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 QSqlResult::fetchNext +84 QSqlResult::fetchPrevious +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 QSqlResult::record +108 QSqlResult::lastInsertId +112 QSqlResult::virtual_hook + +Class QSqlResult + size=8 align=4 + base size=8 base align=4 +QSqlResult (0xb1eed1e0) 0 + vptr=((& QSqlResult::_ZTV10QSqlResult) + 8u) + +Vtable for QSqlQueryModel +QSqlQueryModel::_ZTV14QSqlQueryModel: 44u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QSqlQueryModel) +8 QSqlQueryModel::metaObject +12 QSqlQueryModel::qt_metacast +16 QSqlQueryModel::qt_metacall +20 QSqlQueryModel::~QSqlQueryModel +24 QSqlQueryModel::~QSqlQueryModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 QSqlQueryModel::rowCount +68 QSqlQueryModel::columnCount +72 QAbstractTableModel::hasChildren +76 QSqlQueryModel::data +80 QAbstractItemModel::setData +84 QSqlQueryModel::headerData +88 QSqlQueryModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QSqlQueryModel::insertColumns +124 QAbstractItemModel::removeRows +128 QSqlQueryModel::removeColumns +132 QSqlQueryModel::fetchMore +136 QSqlQueryModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert +168 QSqlQueryModel::clear +172 QSqlQueryModel::queryChange + +Class QSqlQueryModel + size=8 align=4 + base size=8 base align=4 +QSqlQueryModel (0xb1ec1480) 0 + vptr=((& QSqlQueryModel::_ZTV14QSqlQueryModel) + 8u) + QAbstractTableModel (0xb1ec14c0) 0 + primary-for QSqlQueryModel (0xb1ec1480) + QAbstractItemModel (0xb1ec1500) 0 + primary-for QAbstractTableModel (0xb1ec14c0) + QObject (0xb1eed780) 0 + primary-for QAbstractItemModel (0xb1ec1500) + +Vtable for QSqlTableModel +QSqlTableModel::_ZTV14QSqlTableModel: 55u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QSqlTableModel) +8 QSqlTableModel::metaObject +12 QSqlTableModel::qt_metacast +16 QSqlTableModel::qt_metacall +20 QSqlTableModel::~QSqlTableModel +24 QSqlTableModel::~QSqlTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 QSqlTableModel::rowCount +68 QSqlQueryModel::columnCount +72 QAbstractTableModel::hasChildren +76 QSqlTableModel::data +80 QSqlTableModel::setData +84 QSqlTableModel::headerData +88 QSqlQueryModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QSqlTableModel::insertRows +120 QSqlQueryModel::insertColumns +124 QSqlTableModel::removeRows +128 QSqlTableModel::removeColumns +132 QSqlQueryModel::fetchMore +136 QSqlQueryModel::canFetchMore +140 QSqlTableModel::flags +144 QSqlTableModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QSqlTableModel::submit +164 QSqlTableModel::revert +168 QSqlTableModel::clear +172 QSqlQueryModel::queryChange +176 QSqlTableModel::select +180 QSqlTableModel::setTable +184 QSqlTableModel::setEditStrategy +188 QSqlTableModel::setSort +192 QSqlTableModel::setFilter +196 QSqlTableModel::revertRow +200 QSqlTableModel::updateRowInTable +204 QSqlTableModel::insertRowIntoTable +208 QSqlTableModel::deleteRowFromTable +212 QSqlTableModel::orderByClause +216 QSqlTableModel::selectStatement + +Class QSqlTableModel + size=8 align=4 + base size=8 base align=4 +QSqlTableModel (0xb1ec1800) 0 + vptr=((& QSqlTableModel::_ZTV14QSqlTableModel) + 8u) + QSqlQueryModel (0xb1ec1840) 0 + primary-for QSqlTableModel (0xb1ec1800) + QAbstractTableModel (0xb1ec1880) 0 + primary-for QSqlQueryModel (0xb1ec1840) + QAbstractItemModel (0xb1ec18c0) 0 + primary-for QAbstractTableModel (0xb1ec1880) + QObject (0xb1f08294) 0 + primary-for QAbstractItemModel (0xb1ec18c0) + +Class QSqlRelation + size=12 align=4 + base size=12 base align=4 +QSqlRelation (0xb1f08ec4) 0 + +Vtable for QSqlRelationalTableModel +QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel: 57u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QSqlRelationalTableModel) +8 QSqlRelationalTableModel::metaObject +12 QSqlRelationalTableModel::qt_metacast +16 QSqlRelationalTableModel::qt_metacall +20 QSqlRelationalTableModel::~QSqlRelationalTableModel +24 QSqlRelationalTableModel::~QSqlRelationalTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 QSqlTableModel::rowCount +68 QSqlQueryModel::columnCount +72 QAbstractTableModel::hasChildren +76 QSqlRelationalTableModel::data +80 QSqlRelationalTableModel::setData +84 QSqlTableModel::headerData +88 QSqlQueryModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QSqlTableModel::insertRows +120 QSqlQueryModel::insertColumns +124 QSqlTableModel::removeRows +128 QSqlRelationalTableModel::removeColumns +132 QSqlQueryModel::fetchMore +136 QSqlQueryModel::canFetchMore +140 QSqlTableModel::flags +144 QSqlTableModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QSqlTableModel::submit +164 QSqlTableModel::revert +168 QSqlRelationalTableModel::clear +172 QSqlQueryModel::queryChange +176 QSqlRelationalTableModel::select +180 QSqlRelationalTableModel::setTable +184 QSqlTableModel::setEditStrategy +188 QSqlTableModel::setSort +192 QSqlTableModel::setFilter +196 QSqlRelationalTableModel::revertRow +200 QSqlRelationalTableModel::updateRowInTable +204 QSqlRelationalTableModel::insertRowIntoTable +208 QSqlTableModel::deleteRowFromTable +212 QSqlRelationalTableModel::orderByClause +216 QSqlRelationalTableModel::selectStatement +220 QSqlRelationalTableModel::setRelation +224 QSqlRelationalTableModel::relationModel + +Class QSqlRelationalTableModel + size=8 align=4 + base size=8 base align=4 +QSqlRelationalTableModel (0xb1ec1e40) 0 + vptr=((& QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel) + 8u) + QSqlTableModel (0xb1ec1e80) 0 + primary-for QSqlRelationalTableModel (0xb1ec1e40) + QSqlQueryModel (0xb1ec1ec0) 0 + primary-for QSqlTableModel (0xb1ec1e80) + QAbstractTableModel (0xb1ec1f00) 0 + primary-for QSqlQueryModel (0xb1ec1ec0) + QAbstractItemModel (0xb1ec1f40) 0 + primary-for QAbstractTableModel (0xb1ec1f00) + QObject (0xb1f228ac) 0 + primary-for QAbstractItemModel (0xb1ec1f40) + +Vtable for Q3Frame +Q3Frame::_ZTV7Q3Frame: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7Q3Frame) +8 Q3Frame::metaObject +12 Q3Frame::qt_metacast +16 Q3Frame::qt_metacall +20 Q3Frame::~Q3Frame +24 Q3Frame::~Q3Frame +28 QFrame::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3Frame::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3Frame::frameChanged +228 Q3Frame::drawFrame +232 Q3Frame::drawContents +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI7Q3Frame) +244 Q3Frame::_ZThn8_N7Q3FrameD1Ev +248 Q3Frame::_ZThn8_N7Q3FrameD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Frame + size=24 align=4 + base size=24 base align=4 +Q3Frame (0xb1f35200) 0 + vptr=((& Q3Frame::_ZTV7Q3Frame) + 8u) + QFrame (0xb1f35240) 0 + primary-for Q3Frame (0xb1f35200) + QWidget (0xb1f31aa0) 0 + primary-for QFrame (0xb1f35240) + QObject (0xb1f3a30c) 0 + primary-for QWidget (0xb1f31aa0) + QPaintDevice (0xb1f3a348) 8 + vptr=((& Q3Frame::_ZTV7Q3Frame) + 244u) + +Vtable for Q3ScrollView +Q3ScrollView::_ZTV12Q3ScrollView: 102u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3ScrollView) +8 Q3ScrollView::metaObject +12 Q3ScrollView::qt_metacast +16 Q3ScrollView::qt_metacall +20 Q3ScrollView::~Q3ScrollView +24 Q3ScrollView::~Q3ScrollView +28 QFrame::event +32 Q3ScrollView::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3ScrollView::sizeHint +68 Q3ScrollView::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3ScrollView::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 Q3ScrollView::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3ScrollView::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ScrollView::setContentsPos +272 Q3ScrollView::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3ScrollView::contentsMousePressEvent +284 Q3ScrollView::contentsMouseReleaseEvent +288 Q3ScrollView::contentsMouseDoubleClickEvent +292 Q3ScrollView::contentsMouseMoveEvent +296 Q3ScrollView::contentsDragEnterEvent +300 Q3ScrollView::contentsDragMoveEvent +304 Q3ScrollView::contentsDragLeaveEvent +308 Q3ScrollView::contentsDropEvent +312 Q3ScrollView::contentsWheelEvent +316 Q3ScrollView::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3ScrollView::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 (int (*)(...))-0x000000008 +384 (int (*)(...))(& _ZTI12Q3ScrollView) +388 Q3ScrollView::_ZThn8_N12Q3ScrollViewD1Ev +392 Q3ScrollView::_ZThn8_N12Q3ScrollViewD0Ev +396 QWidget::_ZThn8_NK7QWidget7devTypeEv +400 QWidget::_ZThn8_NK7QWidget11paintEngineEv +404 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ScrollView + size=28 align=4 + base size=28 base align=4 +Q3ScrollView (0xb1f35500) 0 + vptr=((& Q3ScrollView::_ZTV12Q3ScrollView) + 8u) + Q3Frame (0xb1f35540) 0 + primary-for Q3ScrollView (0xb1f35500) + QFrame (0xb1f35580) 0 + primary-for Q3Frame (0xb1f35540) + QWidget (0xb1f47280) 0 + primary-for QFrame (0xb1f35580) + QObject (0xb1f3af00) 0 + primary-for QWidget (0xb1f47280) + QPaintDevice (0xb1f3af3c) 8 + vptr=((& Q3ScrollView::_ZTV12Q3ScrollView) + 388u) + +Vtable for Q3PtrCollection +Q3PtrCollection::_ZTV15Q3PtrCollection: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15Q3PtrCollection) +8 __cxa_pure_virtual +12 __cxa_pure_virtual +16 Q3PtrCollection::~Q3PtrCollection +20 Q3PtrCollection::~Q3PtrCollection +24 Q3PtrCollection::newItem +28 __cxa_pure_virtual + +Class Q3PtrCollection + size=8 align=4 + base size=5 base align=4 +Q3PtrCollection (0xb1f6a1a4) 0 + vptr=((& Q3PtrCollection::_ZTV15Q3PtrCollection) + 8u) + +Class Q3LNode + size=12 align=4 + base size=12 base align=4 +Q3LNode (0xb1f6ae10) 0 + +Vtable for Q3GList +Q3GList::_ZTV7Q3GList: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7Q3GList) +8 Q3GList::count +12 Q3GList::clear +16 Q3GList::~Q3GList +20 Q3GList::~Q3GList +24 Q3PtrCollection::newItem +28 __cxa_pure_virtual +32 Q3GList::compareItems +36 Q3GList::read +40 Q3GList::write + +Class Q3GList + size=32 align=4 + base size=32 base align=4 +Q3GList (0xb1f35c80) 0 + vptr=((& Q3GList::_ZTV7Q3GList) + 8u) + Q3PtrCollection (0xb1f744ec) 0 + primary-for Q3GList (0xb1f35c80) + +Class Q3GListIterator + size=8 align=4 + base size=8 base align=4 +Q3GListIterator (0xb1d8a258) 0 + +Class Q3GListStdIterator + size=4 align=4 + base size=4 base align=4 +Q3GListStdIterator (0xb1d9203c) 0 + +Vtable for Q3PtrList +Q3PtrList::_ZTV9Q3PtrListIvE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3PtrListIvE) +8 Q3PtrList::count [with type = void] +12 Q3PtrList::clear [with type = void] +16 Q3PtrList::~Q3PtrList [with type = void] +20 Q3PtrList::~Q3PtrList [with type = void] +24 Q3PtrCollection::newItem +28 Q3PtrList::deleteItem [with type = void] +32 Q3GList::compareItems +36 Q3GList::read +40 Q3GList::write + +Class Q3PtrList + size=32 align=4 + base size=32 base align=4 +Q3PtrList (0xb1db12c0) 0 + vptr=((& Q3PtrList::_ZTV9Q3PtrListIvE) + 8u) + Q3GList (0xb1db1300) 0 + primary-for Q3PtrList (0xb1db12c0) + Q3PtrCollection (0xb1db21e0) 0 + primary-for Q3GList (0xb1db1300) + +Class Q3PointArray + size=4 align=4 + base size=4 base align=4 +Q3PointArray (0xb1dcfc00) 0 + QPolygon (0xb1dcfc40) 0 + QVector (0xb1dde294) 0 + +Class QLinkedList:: + size=4 align=4 + base size=4 base align=4 +QLinkedList:: (0xb1ddef78) 0 + +Class QLinkedList + size=4 align=4 + base size=4 base align=4 +QLinkedList (0xb1ddef00) 0 + +Class Q3ValueList + size=4 align=4 + base size=4 base align=4 +Q3ValueList (0xb1ded2c0) 0 + QLinkedList (0xb1ddefb4) 0 + +Class Q3CanvasItemList + size=4 align=4 + base size=4 base align=4 +Q3CanvasItemList (0xb1ded340) 0 + Q3ValueList (0xb1ded380) 0 + QLinkedList (0xb1e02078) 0 + +Vtable for Q3CanvasItem +Q3CanvasItem::_ZTV12Q3CanvasItem: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3CanvasItem) +8 Q3CanvasItem::~Q3CanvasItem +12 Q3CanvasItem::~Q3CanvasItem +16 Q3CanvasItem::moveBy +20 Q3CanvasItem::setAnimated +24 Q3CanvasItem::setVelocity +28 Q3CanvasItem::advance +32 __cxa_pure_virtual +36 Q3CanvasItem::setCanvas +40 __cxa_pure_virtual +44 Q3CanvasItem::setVisible +48 Q3CanvasItem::setSelected +52 Q3CanvasItem::setEnabled +56 Q3CanvasItem::setActive +60 Q3CanvasItem::rtti +64 __cxa_pure_virtual +68 Q3CanvasItem::boundingRectAdvanced +72 Q3CanvasItem::chunks +76 Q3CanvasItem::addToChunks +80 Q3CanvasItem::removeFromChunks +84 Q3CanvasItem::changeChunks +88 __cxa_pure_virtual + +Class Q3CanvasItem + size=40 align=4 + base size=37 base align=4 +Q3CanvasItem (0xb1e0221c) 0 + vptr=((& Q3CanvasItem::_ZTV12Q3CanvasItem) + 8u) + +Vtable for Q3Canvas +Q3Canvas::_ZTV8Q3Canvas: 38u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8Q3Canvas) +8 Q3Canvas::metaObject +12 Q3Canvas::qt_metacast +16 Q3Canvas::qt_metacall +20 Q3Canvas::~Q3Canvas +24 Q3Canvas::~Q3Canvas +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3Canvas::setTiles +60 Q3Canvas::setBackgroundPixmap +64 Q3Canvas::setBackgroundColor +68 Q3Canvas::setTile +72 Q3Canvas::resize +76 Q3Canvas::retune +80 Q3Canvas::setChangedChunk +84 Q3Canvas::setChangedChunkContaining +88 Q3Canvas::setAllChanged +92 Q3Canvas::setChanged +96 Q3Canvas::setUnchanged +100 Q3Canvas::addView +104 Q3Canvas::removeView +108 Q3Canvas::addItem +112 Q3Canvas::addAnimation +116 Q3Canvas::removeItem +120 Q3Canvas::removeAnimation +124 Q3Canvas::setAdvancePeriod +128 Q3Canvas::setUpdatePeriod +132 Q3Canvas::setDoubleBuffering +136 Q3Canvas::advance +140 Q3Canvas::update +144 Q3Canvas::drawBackground +148 Q3Canvas::drawForeground + +Class Q3Canvas + size=104 align=4 + base size=102 base align=4 +Q3Canvas (0xb1ded900) 0 + vptr=((& Q3Canvas::_ZTV8Q3Canvas) + 8u) + QObject (0xb1e18c6c) 0 + primary-for Q3Canvas (0xb1ded900) + +Vtable for Q3CanvasView +Q3CanvasView::_ZTV12Q3CanvasView: 102u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3CanvasView) +8 Q3CanvasView::metaObject +12 Q3CanvasView::qt_metacast +16 Q3CanvasView::qt_metacall +20 Q3CanvasView::~Q3CanvasView +24 Q3CanvasView::~Q3CanvasView +28 QFrame::event +32 Q3ScrollView::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3CanvasView::sizeHint +68 Q3ScrollView::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3ScrollView::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 Q3ScrollView::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3CanvasView::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ScrollView::setContentsPos +272 Q3CanvasView::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3ScrollView::contentsMousePressEvent +284 Q3ScrollView::contentsMouseReleaseEvent +288 Q3ScrollView::contentsMouseDoubleClickEvent +292 Q3ScrollView::contentsMouseMoveEvent +296 Q3ScrollView::contentsDragEnterEvent +300 Q3ScrollView::contentsDragMoveEvent +304 Q3ScrollView::contentsDragLeaveEvent +308 Q3ScrollView::contentsDropEvent +312 Q3ScrollView::contentsWheelEvent +316 Q3ScrollView::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3ScrollView::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 (int (*)(...))-0x000000008 +384 (int (*)(...))(& _ZTI12Q3CanvasView) +388 Q3CanvasView::_ZThn8_N12Q3CanvasViewD1Ev +392 Q3CanvasView::_ZThn8_N12Q3CanvasViewD0Ev +396 QWidget::_ZThn8_NK7QWidget7devTypeEv +400 QWidget::_ZThn8_NK7QWidget11paintEngineEv +404 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3CanvasView + size=36 align=4 + base size=36 base align=4 +Q3CanvasView (0xb1dedf00) 0 + vptr=((& Q3CanvasView::_ZTV12Q3CanvasView) + 8u) + Q3ScrollView (0xb1dedf40) 0 + primary-for Q3CanvasView (0xb1dedf00) + Q3Frame (0xb1dedf80) 0 + primary-for Q3ScrollView (0xb1dedf40) + QFrame (0xb1dedfc0) 0 + primary-for Q3Frame (0xb1dedf80) + QWidget (0xb1e3a500) 0 + primary-for QFrame (0xb1dedfc0) + QObject (0xb1e3b99c) 0 + primary-for QWidget (0xb1e3a500) + QPaintDevice (0xb1e3b9d8) 8 + vptr=((& Q3CanvasView::_ZTV12Q3CanvasView) + 388u) + +Vtable for Q3CanvasPixmap +Q3CanvasPixmap::_ZTV14Q3CanvasPixmap: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3CanvasPixmap) +8 Q3CanvasPixmap::~Q3CanvasPixmap +12 Q3CanvasPixmap::~Q3CanvasPixmap +16 QPixmap::devType +20 QPixmap::paintEngine +24 QPixmap::metric + +Class Q3CanvasPixmap + size=24 align=4 + base size=24 base align=4 +Q3CanvasPixmap (0xb1e41240) 0 + vptr=((& Q3CanvasPixmap::_ZTV14Q3CanvasPixmap) + 8u) + QPixmap (0xb1e41280) 0 + primary-for Q3CanvasPixmap (0xb1e41240) + QPaintDevice (0xb1e4e564) 0 + primary-for QPixmap (0xb1e41280) + +Class Q3CanvasPixmapArray + size=8 align=4 + base size=8 base align=4 +Q3CanvasPixmapArray (0xb1e4eec4) 0 + +Vtable for Q3CanvasSprite +Q3CanvasSprite::_ZTV14Q3CanvasSprite: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3CanvasSprite) +8 Q3CanvasSprite::~Q3CanvasSprite +12 Q3CanvasSprite::~Q3CanvasSprite +16 Q3CanvasItem::moveBy +20 Q3CanvasItem::setAnimated +24 Q3CanvasItem::setVelocity +28 Q3CanvasSprite::advance +32 Q3CanvasSprite::collidesWith +36 Q3CanvasItem::setCanvas +40 Q3CanvasSprite::draw +44 Q3CanvasItem::setVisible +48 Q3CanvasItem::setSelected +52 Q3CanvasItem::setEnabled +56 Q3CanvasItem::setActive +60 Q3CanvasSprite::rtti +64 Q3CanvasSprite::boundingRect +68 Q3CanvasItem::boundingRectAdvanced +72 Q3CanvasItem::chunks +76 Q3CanvasSprite::addToChunks +80 Q3CanvasSprite::removeFromChunks +84 Q3CanvasSprite::changeChunks +88 Q3CanvasSprite::collidesWith +92 Q3CanvasSprite::move +96 Q3CanvasSprite::setFrameAnimation +100 Q3CanvasSprite::imageAdvanced + +Class Q3CanvasSprite + size=52 align=4 + base size=52 base align=4 +Q3CanvasSprite (0xb1e414c0) 0 + vptr=((& Q3CanvasSprite::_ZTV14Q3CanvasSprite) + 8u) + Q3CanvasItem (0xb1e5b528) 0 + primary-for Q3CanvasSprite (0xb1e414c0) + +Vtable for Q3CanvasPolygonalItem +Q3CanvasPolygonalItem::_ZTV21Q3CanvasPolygonalItem: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21Q3CanvasPolygonalItem) +8 Q3CanvasPolygonalItem::~Q3CanvasPolygonalItem +12 Q3CanvasPolygonalItem::~Q3CanvasPolygonalItem +16 Q3CanvasItem::moveBy +20 Q3CanvasItem::setAnimated +24 Q3CanvasItem::setVelocity +28 Q3CanvasItem::advance +32 Q3CanvasPolygonalItem::collidesWith +36 Q3CanvasItem::setCanvas +40 Q3CanvasPolygonalItem::draw +44 Q3CanvasItem::setVisible +48 Q3CanvasItem::setSelected +52 Q3CanvasItem::setEnabled +56 Q3CanvasItem::setActive +60 Q3CanvasPolygonalItem::rtti +64 Q3CanvasPolygonalItem::boundingRect +68 Q3CanvasItem::boundingRectAdvanced +72 Q3CanvasPolygonalItem::chunks +76 Q3CanvasItem::addToChunks +80 Q3CanvasItem::removeFromChunks +84 Q3CanvasItem::changeChunks +88 Q3CanvasPolygonalItem::collidesWith +92 Q3CanvasPolygonalItem::setPen +96 Q3CanvasPolygonalItem::setBrush +100 __cxa_pure_virtual +104 Q3CanvasPolygonalItem::areaPointsAdvanced +108 __cxa_pure_virtual + +Class Q3CanvasPolygonalItem + size=52 align=4 + base size=49 base align=4 +Q3CanvasPolygonalItem (0xb1e41640) 0 + vptr=((& Q3CanvasPolygonalItem::_ZTV21Q3CanvasPolygonalItem) + 8u) + Q3CanvasItem (0xb1e5ba50) 0 + primary-for Q3CanvasPolygonalItem (0xb1e41640) + +Vtable for Q3CanvasRectangle +Q3CanvasRectangle::_ZTV17Q3CanvasRectangle: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17Q3CanvasRectangle) +8 Q3CanvasRectangle::~Q3CanvasRectangle +12 Q3CanvasRectangle::~Q3CanvasRectangle +16 Q3CanvasItem::moveBy +20 Q3CanvasItem::setAnimated +24 Q3CanvasItem::setVelocity +28 Q3CanvasItem::advance +32 Q3CanvasRectangle::collidesWith +36 Q3CanvasItem::setCanvas +40 Q3CanvasPolygonalItem::draw +44 Q3CanvasItem::setVisible +48 Q3CanvasItem::setSelected +52 Q3CanvasItem::setEnabled +56 Q3CanvasItem::setActive +60 Q3CanvasRectangle::rtti +64 Q3CanvasPolygonalItem::boundingRect +68 Q3CanvasItem::boundingRectAdvanced +72 Q3CanvasRectangle::chunks +76 Q3CanvasItem::addToChunks +80 Q3CanvasItem::removeFromChunks +84 Q3CanvasItem::changeChunks +88 Q3CanvasRectangle::collidesWith +92 Q3CanvasPolygonalItem::setPen +96 Q3CanvasPolygonalItem::setBrush +100 Q3CanvasRectangle::areaPoints +104 Q3CanvasPolygonalItem::areaPointsAdvanced +108 Q3CanvasRectangle::drawShape + +Class Q3CanvasRectangle + size=60 align=4 + base size=60 base align=4 +Q3CanvasRectangle (0xb1e41780) 0 + vptr=((& Q3CanvasRectangle::_ZTV17Q3CanvasRectangle) + 8u) + Q3CanvasPolygonalItem (0xb1e417c0) 0 + primary-for Q3CanvasRectangle (0xb1e41780) + Q3CanvasItem (0xb1e6b4ec) 0 + primary-for Q3CanvasPolygonalItem (0xb1e417c0) + +Vtable for Q3CanvasPolygon +Q3CanvasPolygon::_ZTV15Q3CanvasPolygon: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15Q3CanvasPolygon) +8 Q3CanvasPolygon::~Q3CanvasPolygon +12 Q3CanvasPolygon::~Q3CanvasPolygon +16 Q3CanvasPolygon::moveBy +20 Q3CanvasItem::setAnimated +24 Q3CanvasItem::setVelocity +28 Q3CanvasItem::advance +32 Q3CanvasPolygonalItem::collidesWith +36 Q3CanvasItem::setCanvas +40 Q3CanvasPolygonalItem::draw +44 Q3CanvasItem::setVisible +48 Q3CanvasItem::setSelected +52 Q3CanvasItem::setEnabled +56 Q3CanvasItem::setActive +60 Q3CanvasPolygon::rtti +64 Q3CanvasPolygonalItem::boundingRect +68 Q3CanvasItem::boundingRectAdvanced +72 Q3CanvasPolygonalItem::chunks +76 Q3CanvasItem::addToChunks +80 Q3CanvasItem::removeFromChunks +84 Q3CanvasItem::changeChunks +88 Q3CanvasPolygonalItem::collidesWith +92 Q3CanvasPolygonalItem::setPen +96 Q3CanvasPolygonalItem::setBrush +100 Q3CanvasPolygon::areaPoints +104 Q3CanvasPolygonalItem::areaPointsAdvanced +108 Q3CanvasPolygon::drawShape + +Class Q3CanvasPolygon + size=56 align=4 + base size=56 base align=4 +Q3CanvasPolygon (0xb1e418c0) 0 + vptr=((& Q3CanvasPolygon::_ZTV15Q3CanvasPolygon) + 8u) + Q3CanvasPolygonalItem (0xb1e41900) 0 + primary-for Q3CanvasPolygon (0xb1e418c0) + Q3CanvasItem (0xb1e6bd98) 0 + primary-for Q3CanvasPolygonalItem (0xb1e41900) + +Vtable for Q3CanvasSpline +Q3CanvasSpline::_ZTV14Q3CanvasSpline: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3CanvasSpline) +8 Q3CanvasSpline::~Q3CanvasSpline +12 Q3CanvasSpline::~Q3CanvasSpline +16 Q3CanvasPolygon::moveBy +20 Q3CanvasItem::setAnimated +24 Q3CanvasItem::setVelocity +28 Q3CanvasItem::advance +32 Q3CanvasPolygonalItem::collidesWith +36 Q3CanvasItem::setCanvas +40 Q3CanvasPolygonalItem::draw +44 Q3CanvasItem::setVisible +48 Q3CanvasItem::setSelected +52 Q3CanvasItem::setEnabled +56 Q3CanvasItem::setActive +60 Q3CanvasSpline::rtti +64 Q3CanvasPolygonalItem::boundingRect +68 Q3CanvasItem::boundingRectAdvanced +72 Q3CanvasPolygonalItem::chunks +76 Q3CanvasItem::addToChunks +80 Q3CanvasItem::removeFromChunks +84 Q3CanvasItem::changeChunks +88 Q3CanvasPolygonalItem::collidesWith +92 Q3CanvasPolygonalItem::setPen +96 Q3CanvasPolygonalItem::setBrush +100 Q3CanvasPolygon::areaPoints +104 Q3CanvasPolygonalItem::areaPointsAdvanced +108 Q3CanvasPolygon::drawShape + +Class Q3CanvasSpline + size=64 align=4 + base size=61 base align=4 +Q3CanvasSpline (0xb1e41940) 0 + vptr=((& Q3CanvasSpline::_ZTV14Q3CanvasSpline) + 8u) + Q3CanvasPolygon (0xb1e41980) 0 + primary-for Q3CanvasSpline (0xb1e41940) + Q3CanvasPolygonalItem (0xb1e419c0) 0 + primary-for Q3CanvasPolygon (0xb1e41980) + Q3CanvasItem (0xb1e6bf00) 0 + primary-for Q3CanvasPolygonalItem (0xb1e419c0) + +Vtable for Q3CanvasLine +Q3CanvasLine::_ZTV12Q3CanvasLine: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3CanvasLine) +8 Q3CanvasLine::~Q3CanvasLine +12 Q3CanvasLine::~Q3CanvasLine +16 Q3CanvasLine::moveBy +20 Q3CanvasItem::setAnimated +24 Q3CanvasItem::setVelocity +28 Q3CanvasItem::advance +32 Q3CanvasPolygonalItem::collidesWith +36 Q3CanvasItem::setCanvas +40 Q3CanvasPolygonalItem::draw +44 Q3CanvasItem::setVisible +48 Q3CanvasItem::setSelected +52 Q3CanvasItem::setEnabled +56 Q3CanvasItem::setActive +60 Q3CanvasLine::rtti +64 Q3CanvasPolygonalItem::boundingRect +68 Q3CanvasItem::boundingRectAdvanced +72 Q3CanvasPolygonalItem::chunks +76 Q3CanvasItem::addToChunks +80 Q3CanvasItem::removeFromChunks +84 Q3CanvasItem::changeChunks +88 Q3CanvasPolygonalItem::collidesWith +92 Q3CanvasLine::setPen +96 Q3CanvasPolygonalItem::setBrush +100 Q3CanvasLine::areaPoints +104 Q3CanvasPolygonalItem::areaPointsAdvanced +108 Q3CanvasLine::drawShape + +Class Q3CanvasLine + size=68 align=4 + base size=68 base align=4 +Q3CanvasLine (0xb1e41a40) 0 + vptr=((& Q3CanvasLine::_ZTV12Q3CanvasLine) + 8u) + Q3CanvasPolygonalItem (0xb1e41a80) 0 + primary-for Q3CanvasLine (0xb1e41a40) + Q3CanvasItem (0xb1e6b7f8) 0 + primary-for Q3CanvasPolygonalItem (0xb1e41a80) + +Vtable for Q3CanvasEllipse +Q3CanvasEllipse::_ZTV15Q3CanvasEllipse: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15Q3CanvasEllipse) +8 Q3CanvasEllipse::~Q3CanvasEllipse +12 Q3CanvasEllipse::~Q3CanvasEllipse +16 Q3CanvasItem::moveBy +20 Q3CanvasItem::setAnimated +24 Q3CanvasItem::setVelocity +28 Q3CanvasItem::advance +32 Q3CanvasEllipse::collidesWith +36 Q3CanvasItem::setCanvas +40 Q3CanvasPolygonalItem::draw +44 Q3CanvasItem::setVisible +48 Q3CanvasItem::setSelected +52 Q3CanvasItem::setEnabled +56 Q3CanvasItem::setActive +60 Q3CanvasEllipse::rtti +64 Q3CanvasPolygonalItem::boundingRect +68 Q3CanvasItem::boundingRectAdvanced +72 Q3CanvasPolygonalItem::chunks +76 Q3CanvasItem::addToChunks +80 Q3CanvasItem::removeFromChunks +84 Q3CanvasItem::changeChunks +88 Q3CanvasEllipse::collidesWith +92 Q3CanvasPolygonalItem::setPen +96 Q3CanvasPolygonalItem::setBrush +100 Q3CanvasEllipse::areaPoints +104 Q3CanvasPolygonalItem::areaPointsAdvanced +108 Q3CanvasEllipse::drawShape + +Class Q3CanvasEllipse + size=68 align=4 + base size=68 base align=4 +Q3CanvasEllipse (0xb1e41bc0) 0 + vptr=((& Q3CanvasEllipse::_ZTV15Q3CanvasEllipse) + 8u) + Q3CanvasPolygonalItem (0xb1e41c00) 0 + primary-for Q3CanvasEllipse (0xb1e41bc0) + Q3CanvasItem (0xb1e823fc) 0 + primary-for Q3CanvasPolygonalItem (0xb1e41c00) + +Vtable for Q3CanvasText +Q3CanvasText::_ZTV12Q3CanvasText: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3CanvasText) +8 Q3CanvasText::~Q3CanvasText +12 Q3CanvasText::~Q3CanvasText +16 Q3CanvasText::moveBy +20 Q3CanvasItem::setAnimated +24 Q3CanvasItem::setVelocity +28 Q3CanvasItem::advance +32 Q3CanvasText::collidesWith +36 Q3CanvasItem::setCanvas +40 Q3CanvasText::draw +44 Q3CanvasItem::setVisible +48 Q3CanvasItem::setSelected +52 Q3CanvasItem::setEnabled +56 Q3CanvasItem::setActive +60 Q3CanvasText::rtti +64 Q3CanvasText::boundingRect +68 Q3CanvasItem::boundingRectAdvanced +72 Q3CanvasItem::chunks +76 Q3CanvasText::addToChunks +80 Q3CanvasText::removeFromChunks +84 Q3CanvasText::changeChunks +88 Q3CanvasText::collidesWith + +Class Q3CanvasText + size=92 align=4 + base size=92 base align=4 +Q3CanvasText (0xb1e41d00) 0 + vptr=((& Q3CanvasText::_ZTV12Q3CanvasText) + 8u) + Q3CanvasItem (0xb1e82924) 0 + primary-for Q3CanvasText (0xb1e41d00) + +Vtable for Q3Url +Q3Url::_ZTV5Q3Url: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5Q3Url) +8 Q3Url::~Q3Url +12 Q3Url::~Q3Url +16 Q3Url::setProtocol +20 Q3Url::setUser +24 Q3Url::setPassword +28 Q3Url::setHost +32 Q3Url::setPort +36 Q3Url::setPath +40 Q3Url::setEncodedPathAndQuery +44 Q3Url::setQuery +48 Q3Url::setRef +52 Q3Url::addPath +56 Q3Url::setFileName +60 Q3Url::toString +64 Q3Url::cdUp +68 Q3Url::reset +72 Q3Url::parse + +Class Q3Url + size=8 align=4 + base size=8 base align=4 +Q3Url (0xb1e82f3c) 0 + vptr=((& Q3Url::_ZTV5Q3Url) + 8u) + +Class Q3BaseBucket + size=8 align=4 + base size=8 base align=4 +Q3BaseBucket (0xb1c944ec) 0 + +Class Q3StringBucket + size=12 align=4 + base size=12 base align=4 +Q3StringBucket (0xb1ca1000) 0 + Q3BaseBucket (0xb1ca2000) 0 + +Class Q3AsciiBucket + size=12 align=4 + base size=12 base align=4 +Q3AsciiBucket (0xb1ca1180) 0 + Q3BaseBucket (0xb1ca23c0) 0 + +Class Q3IntBucket + size=12 align=4 + base size=12 base align=4 +Q3IntBucket (0xb1ca1300) 0 + Q3BaseBucket (0xb1ca2780) 0 + +Class Q3PtrBucket + size=12 align=4 + base size=12 base align=4 +Q3PtrBucket (0xb1ca1480) 0 + Q3BaseBucket (0xb1ca2b40) 0 + +Vtable for Q3GDict +Q3GDict::_ZTV7Q3GDict: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7Q3GDict) +8 Q3GDict::count +12 Q3GDict::clear +16 Q3GDict::~Q3GDict +20 Q3GDict::~Q3GDict +24 Q3PtrCollection::newItem +28 __cxa_pure_virtual +32 Q3GDict::read +36 Q3GDict::write + +Class Q3GDict + size=28 align=4 + base size=28 base align=4 +Q3GDict (0xb1ca1600) 0 + vptr=((& Q3GDict::_ZTV7Q3GDict) + 8u) + Q3PtrCollection (0xb1ca2f00) 0 + primary-for Q3GDict (0xb1ca1600) + +Class Q3GDictIterator + size=12 align=4 + base size=12 base align=4 +Q3GDictIterator (0xb1cbb12c) 0 + +Vtable for Q3Dict +Q3Dict::_ZTV6Q3DictIvE: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6Q3DictIvE) +8 Q3Dict::count [with type = void] +12 Q3Dict::clear [with type = void] +16 Q3Dict::~Q3Dict [with type = void] +20 Q3Dict::~Q3Dict [with type = void] +24 Q3PtrCollection::newItem +28 Q3Dict::deleteItem [with type = void] +32 Q3GDict::read +36 Q3GDict::write + +Class Q3Dict + size=28 align=4 + base size=28 base align=4 +Q3Dict (0xb1ca1e80) 0 + vptr=((& Q3Dict::_ZTV6Q3DictIvE) + 8u) + Q3GDict (0xb1ca1ec0) 0 + primary-for Q3Dict (0xb1ca1e80) + Q3PtrCollection (0xb1cc6618) 0 + primary-for Q3GDict (0xb1ca1ec0) + +Vtable for Q3NetworkProtocolFactoryBase +Q3NetworkProtocolFactoryBase::_ZTV28Q3NetworkProtocolFactoryBase: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI28Q3NetworkProtocolFactoryBase) +8 Q3NetworkProtocolFactoryBase::~Q3NetworkProtocolFactoryBase +12 Q3NetworkProtocolFactoryBase::~Q3NetworkProtocolFactoryBase +16 __cxa_pure_virtual + +Class Q3NetworkProtocolFactoryBase + size=4 align=4 + base size=4 base align=4 +Q3NetworkProtocolFactoryBase (0xb1cc6bb8) 0 nearly-empty + vptr=((& Q3NetworkProtocolFactoryBase::_ZTV28Q3NetworkProtocolFactoryBase) + 8u) + +Vtable for Q3NetworkProtocol +Q3NetworkProtocol::_ZTV17Q3NetworkProtocol: 29u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17Q3NetworkProtocol) +8 Q3NetworkProtocol::metaObject +12 Q3NetworkProtocol::qt_metacast +16 Q3NetworkProtocol::qt_metacall +20 Q3NetworkProtocol::~Q3NetworkProtocol +24 Q3NetworkProtocol::~Q3NetworkProtocol +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3NetworkProtocol::setUrl +60 Q3NetworkProtocol::setAutoDelete +64 Q3NetworkProtocol::supportedOperations +68 Q3NetworkProtocol::addOperation +72 Q3NetworkProtocol::clearOperationQueue +76 Q3NetworkProtocol::stop +80 Q3NetworkProtocol::processOperation +84 Q3NetworkProtocol::operationListChildren +88 Q3NetworkProtocol::operationMkDir +92 Q3NetworkProtocol::operationRemove +96 Q3NetworkProtocol::operationRename +100 Q3NetworkProtocol::operationGet +104 Q3NetworkProtocol::operationPut +108 Q3NetworkProtocol::operationPutChunk +112 Q3NetworkProtocol::checkConnection + +Class Q3NetworkProtocol + size=12 align=4 + base size=12 base align=4 +Q3NetworkProtocol (0xb1cd7780) 0 + vptr=((& Q3NetworkProtocol::_ZTV17Q3NetworkProtocol) + 8u) + QObject (0xb1cc6f78) 0 + primary-for Q3NetworkProtocol (0xb1cd7780) + +Vtable for Q3NetworkOperation +Q3NetworkOperation::_ZTV18Q3NetworkOperation: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18Q3NetworkOperation) +8 Q3NetworkOperation::metaObject +12 Q3NetworkOperation::qt_metacast +16 Q3NetworkOperation::qt_metacall +20 Q3NetworkOperation::~Q3NetworkOperation +24 Q3NetworkOperation::~Q3NetworkOperation +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class Q3NetworkOperation + size=12 align=4 + base size=12 base align=4 +Q3NetworkOperation (0xb1cd79c0) 0 + vptr=((& Q3NetworkOperation::_ZTV18Q3NetworkOperation) + 8u) + QObject (0xb1ce5a8c) 0 + primary-for Q3NetworkOperation (0xb1cd79c0) + +Vtable for Q3UrlOperator +Q3UrlOperator::_ZTV13Q3UrlOperator: 51u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13Q3UrlOperator) +8 Q3UrlOperator::metaObject +12 Q3UrlOperator::qt_metacast +16 Q3UrlOperator::qt_metacall +20 Q3UrlOperator::~Q3UrlOperator +24 Q3UrlOperator::~Q3UrlOperator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3UrlOperator::setPath +60 Q3UrlOperator::cdUp +64 Q3UrlOperator::listChildren +68 Q3UrlOperator::mkdir +72 Q3UrlOperator::remove +76 Q3UrlOperator::rename +80 Q3UrlOperator::get +84 Q3UrlOperator::put +88 Q3UrlOperator::copy +92 Q3UrlOperator::copy +96 Q3UrlOperator::isDir +100 Q3UrlOperator::setNameFilter +104 Q3UrlOperator::info +108 Q3UrlOperator::stop +112 Q3UrlOperator::reset +116 Q3UrlOperator::parse +120 Q3UrlOperator::checkValid +124 Q3UrlOperator::clearEntries +128 (int (*)(...))-0x000000008 +132 (int (*)(...))(& _ZTI13Q3UrlOperator) +136 Q3UrlOperator::_ZThn8_N13Q3UrlOperatorD1Ev +140 Q3UrlOperator::_ZThn8_N13Q3UrlOperatorD0Ev +144 Q3Url::setProtocol +148 Q3Url::setUser +152 Q3Url::setPassword +156 Q3Url::setHost +160 Q3Url::setPort +164 Q3UrlOperator::_ZThn8_N13Q3UrlOperator7setPathERK7QString +168 Q3Url::setEncodedPathAndQuery +172 Q3Url::setQuery +176 Q3Url::setRef +180 Q3Url::addPath +184 Q3Url::setFileName +188 Q3Url::toString +192 Q3UrlOperator::_ZThn8_N13Q3UrlOperator4cdUpEv +196 Q3UrlOperator::_ZThn8_N13Q3UrlOperator5resetEv +200 Q3UrlOperator::_ZThn8_N13Q3UrlOperator5parseERK7QString + +Class Q3UrlOperator + size=20 align=4 + base size=20 base align=4 +Q3UrlOperator (0xb1cf99b0) 0 + vptr=((& Q3UrlOperator::_ZTV13Q3UrlOperator) + 8u) + QObject (0xb1cf8690) 0 + primary-for Q3UrlOperator (0xb1cf99b0) + Q3Url (0xb1cf86cc) 8 + vptr=((& Q3UrlOperator::_ZTV13Q3UrlOperator) + 136u) + +Vtable for Q3FileIconProvider +Q3FileIconProvider::_ZTV18Q3FileIconProvider: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18Q3FileIconProvider) +8 Q3FileIconProvider::metaObject +12 Q3FileIconProvider::qt_metacast +16 Q3FileIconProvider::qt_metacall +20 Q3FileIconProvider::~Q3FileIconProvider +24 Q3FileIconProvider::~Q3FileIconProvider +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3FileIconProvider::pixmap + +Class Q3FileIconProvider + size=8 align=4 + base size=8 base align=4 +Q3FileIconProvider (0xb1cd7e00) 0 + vptr=((& Q3FileIconProvider::_ZTV18Q3FileIconProvider) + 8u) + QObject (0xb1d11348) 0 + primary-for Q3FileIconProvider (0xb1cd7e00) + +Vtable for Q3FilePreview +Q3FilePreview::_ZTV13Q3FilePreview: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13Q3FilePreview) +8 Q3FilePreview::~Q3FilePreview +12 Q3FilePreview::~Q3FilePreview +16 __cxa_pure_virtual + +Class Q3FilePreview + size=4 align=4 + base size=4 base align=4 +Q3FilePreview (0xb1d11ce4) 0 nearly-empty + vptr=((& Q3FilePreview::_ZTV13Q3FilePreview) + 8u) + +Vtable for Q3FileDialog +Q3FileDialog::_ZTV12Q3FileDialog: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3FileDialog) +8 Q3FileDialog::metaObject +12 Q3FileDialog::qt_metacast +16 Q3FileDialog::qt_metacall +20 Q3FileDialog::~Q3FileDialog +24 Q3FileDialog::~Q3FileDialog +28 QWidget::event +32 Q3FileDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 Q3FileDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 Q3FileDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3FileDialog::done +228 QDialog::accept +232 QDialog::reject +236 Q3FileDialog::setSelectedFilter +240 Q3FileDialog::setSelectedFilter +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI12Q3FileDialog) +252 Q3FileDialog::_ZThn8_N12Q3FileDialogD1Ev +256 Q3FileDialog::_ZThn8_N12Q3FileDialogD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3FileDialog + size=44 align=4 + base size=44 base align=4 +Q3FileDialog (0xb1d1b140) 0 + vptr=((& Q3FileDialog::_ZTV12Q3FileDialog) + 8u) + QDialog (0xb1d1b180) 0 + primary-for Q3FileDialog (0xb1d1b140) + QWidget (0xb1d1e4b0) 0 + primary-for QDialog (0xb1d1b180) + QObject (0xb1d22000) 0 + primary-for QWidget (0xb1d1e4b0) + QPaintDevice (0xb1d2203c) 8 + vptr=((& Q3FileDialog::_ZTV12Q3FileDialog) + 252u) + +Vtable for Q3ProgressDialog +Q3ProgressDialog::_ZTV16Q3ProgressDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16Q3ProgressDialog) +8 Q3ProgressDialog::metaObject +12 Q3ProgressDialog::qt_metacast +16 Q3ProgressDialog::qt_metacall +20 Q3ProgressDialog::~Q3ProgressDialog +24 Q3ProgressDialog::~Q3ProgressDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 Q3ProgressDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 Q3ProgressDialog::resizeEvent +136 Q3ProgressDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 Q3ProgressDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3ProgressDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI16Q3ProgressDialog) +244 Q3ProgressDialog::_ZThn8_N16Q3ProgressDialogD1Ev +248 Q3ProgressDialog::_ZThn8_N16Q3ProgressDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ProgressDialog + size=28 align=4 + base size=28 base align=4 +Q3ProgressDialog (0xb1d1b3c0) 0 + vptr=((& Q3ProgressDialog::_ZTV16Q3ProgressDialog) + 8u) + QDialog (0xb1d1b400) 0 + primary-for Q3ProgressDialog (0xb1d1b3c0) + QWidget (0xb1d34f50) 0 + primary-for QDialog (0xb1d1b400) + QObject (0xb1d3c30c) 0 + primary-for QWidget (0xb1d34f50) + QPaintDevice (0xb1d3c348) 8 + vptr=((& Q3ProgressDialog::_ZTV16Q3ProgressDialog) + 244u) + +Vtable for Q3TabDialog +Q3TabDialog::_ZTV11Q3TabDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3TabDialog) +8 Q3TabDialog::metaObject +12 Q3TabDialog::qt_metacast +16 Q3TabDialog::qt_metacall +20 Q3TabDialog::~Q3TabDialog +24 Q3TabDialog::~Q3TabDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3TabDialog::paintEvent +128 QWidget::moveEvent +132 Q3TabDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 Q3TabDialog::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11Q3TabDialog) +244 Q3TabDialog::_ZThn8_N11Q3TabDialogD1Ev +248 Q3TabDialog::_ZThn8_N11Q3TabDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TabDialog + size=24 align=4 + base size=24 base align=4 +Q3TabDialog (0xb1d1b640) 0 + vptr=((& Q3TabDialog::_ZTV11Q3TabDialog) + 8u) + QDialog (0xb1d1b680) 0 + primary-for Q3TabDialog (0xb1d1b640) + QWidget (0xb1d49370) 0 + primary-for QDialog (0xb1d1b680) + QObject (0xb1d3cf78) 0 + primary-for QWidget (0xb1d49370) + QPaintDevice (0xb1d3cfb4) 8 + vptr=((& Q3TabDialog::_ZTV11Q3TabDialog) + 244u) + +Vtable for Q3Wizard +Q3Wizard::_ZTV8Q3Wizard: 82u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8Q3Wizard) +8 Q3Wizard::metaObject +12 Q3Wizard::qt_metacast +16 Q3Wizard::qt_metacall +20 Q3Wizard::~Q3Wizard +24 Q3Wizard::~Q3Wizard +28 QWidget::event +32 Q3Wizard::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3Wizard::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 Q3Wizard::addPage +240 Q3Wizard::insertPage +244 Q3Wizard::removePage +248 Q3Wizard::showPage +252 Q3Wizard::appropriate +256 Q3Wizard::setAppropriate +260 Q3Wizard::setBackEnabled +264 Q3Wizard::setNextEnabled +268 Q3Wizard::setFinishEnabled +272 Q3Wizard::setHelpEnabled +276 Q3Wizard::setFinish +280 Q3Wizard::back +284 Q3Wizard::next +288 Q3Wizard::help +292 Q3Wizard::layOutButtonRow +296 Q3Wizard::layOutTitleRow +300 (int (*)(...))-0x000000008 +304 (int (*)(...))(& _ZTI8Q3Wizard) +308 Q3Wizard::_ZThn8_N8Q3WizardD1Ev +312 Q3Wizard::_ZThn8_N8Q3WizardD0Ev +316 QWidget::_ZThn8_NK7QWidget7devTypeEv +320 QWidget::_ZThn8_NK7QWidget11paintEngineEv +324 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Wizard + size=24 align=4 + base size=24 base align=4 +Q3Wizard (0xb1d1b8c0) 0 + vptr=((& Q3Wizard::_ZTV8Q3Wizard) + 8u) + QDialog (0xb1d1b900) 0 + primary-for Q3Wizard (0xb1d1b8c0) + QWidget (0xb1d63190) 0 + primary-for QDialog (0xb1d1b900) + QObject (0xb1d52d98) 0 + primary-for QWidget (0xb1d63190) + QPaintDevice (0xb1d52dd4) 8 + vptr=((& Q3Wizard::_ZTV8Q3Wizard) + 308u) + +Vtable for Q3PtrList +Q3PtrList::_ZTV9Q3PtrListIcE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3PtrListIcE) +8 Q3PtrList::count [with type = char] +12 Q3PtrList::clear [with type = char] +16 Q3PtrList::~Q3PtrList [with type = char] +20 Q3PtrList::~Q3PtrList [with type = char] +24 Q3PtrCollection::newItem +28 Q3PtrList::deleteItem [with type = char] +32 Q3GList::compareItems +36 Q3GList::read +40 Q3GList::write + +Class Q3PtrList + size=32 align=4 + base size=32 base align=4 +Q3PtrList (0xb1d1bb80) 0 + vptr=((& Q3PtrList::_ZTV9Q3PtrListIcE) + 8u) + Q3GList (0xb1d1bbc0) 0 + primary-for Q3PtrList (0xb1d1bb80) + Q3PtrCollection (0xb1d68d98) 0 + primary-for Q3GList (0xb1d1bbc0) + +Vtable for Q3StrList +Q3StrList::_ZTV9Q3StrList: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3StrList) +8 Q3PtrList::count [with type = char] +12 Q3PtrList::clear [with type = char] +16 Q3StrList::~Q3StrList +20 Q3StrList::~Q3StrList +24 Q3StrList::newItem +28 Q3StrList::deleteItem +32 Q3StrList::compareItems +36 Q3StrList::read +40 Q3StrList::write + +Class Q3StrList + size=36 align=4 + base size=33 base align=4 +Q3StrList (0xb1d1bc00) 0 + vptr=((& Q3StrList::_ZTV9Q3StrList) + 8u) + Q3PtrList (0xb1d1bc40) 0 + primary-for Q3StrList (0xb1d1bc00) + Q3GList (0xb1d1bc80) 0 + primary-for Q3PtrList (0xb1d1bc40) + Q3PtrCollection (0xb1d68e88) 0 + primary-for Q3GList (0xb1d1bc80) + +Class Q3PtrListStdIterator + size=4 align=4 + base size=4 base align=4 +Q3PtrListStdIterator (0xb1b94140) 0 + Q3GListStdIterator (0xb1b8f5a0) 0 + +Vtable for Q3StrIList +Q3StrIList::_ZTV10Q3StrIList: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3StrIList) +8 Q3PtrList::count [with type = char] +12 Q3PtrList::clear [with type = char] +16 Q3StrIList::~Q3StrIList +20 Q3StrIList::~Q3StrIList +24 Q3StrList::newItem +28 Q3StrList::deleteItem +32 Q3StrIList::compareItems +36 Q3StrList::read +40 Q3StrList::write + +Class Q3StrIList + size=36 align=4 + base size=33 base align=4 +Q3StrIList (0xb1b943c0) 0 + vptr=((& Q3StrIList::_ZTV10Q3StrIList) + 8u) + Q3StrList (0xb1b94400) 0 + primary-for Q3StrIList (0xb1b943c0) + Q3PtrList (0xb1b94440) 0 + primary-for Q3StrList (0xb1b94400) + Q3GList (0xb1b94480) 0 + primary-for Q3PtrList (0xb1b94440) + Q3PtrCollection (0xb1b8fca8) 0 + primary-for Q3GList (0xb1b94480) + +Vtable for Q3DragObject +Q3DragObject::_ZTV12Q3DragObject: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3DragObject) +8 Q3DragObject::metaObject +12 Q3DragObject::qt_metacast +16 Q3DragObject::qt_metacall +20 Q3DragObject::~Q3DragObject +24 Q3DragObject::~Q3DragObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3DragObject::setPixmap +60 Q3DragObject::setPixmap +64 Q3DragObject::drag +68 (int (*)(...))-0x000000008 +72 (int (*)(...))(& _ZTI12Q3DragObject) +76 Q3DragObject::_ZThn8_N12Q3DragObjectD1Ev +80 Q3DragObject::_ZThn8_N12Q3DragObjectD0Ev +84 __cxa_pure_virtual +88 QMimeSource::provides +92 __cxa_pure_virtual + +Class Q3DragObject + size=12 align=4 + base size=12 base align=4 +Q3DragObject (0xb1bb3410) 0 + vptr=((& Q3DragObject::_ZTV12Q3DragObject) + 8u) + QObject (0xb1babce4) 0 + primary-for Q3DragObject (0xb1bb3410) + QMimeSource (0xb1babd20) 8 nearly-empty + vptr=((& Q3DragObject::_ZTV12Q3DragObject) + 76u) + +Vtable for Q3StoredDrag +Q3StoredDrag::_ZTV12Q3StoredDrag: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3StoredDrag) +8 Q3StoredDrag::metaObject +12 Q3StoredDrag::qt_metacast +16 Q3StoredDrag::qt_metacall +20 Q3StoredDrag::~Q3StoredDrag +24 Q3StoredDrag::~Q3StoredDrag +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3DragObject::setPixmap +60 Q3DragObject::setPixmap +64 Q3DragObject::drag +68 Q3StoredDrag::setEncodedData +72 Q3StoredDrag::format +76 Q3StoredDrag::encodedData +80 (int (*)(...))-0x000000008 +84 (int (*)(...))(& _ZTI12Q3StoredDrag) +88 Q3StoredDrag::_ZThn8_N12Q3StoredDragD1Ev +92 Q3StoredDrag::_ZThn8_N12Q3StoredDragD0Ev +96 Q3StoredDrag::_ZThn8_NK12Q3StoredDrag6formatEi +100 QMimeSource::provides +104 Q3StoredDrag::_ZThn8_NK12Q3StoredDrag11encodedDataEPKc + +Class Q3StoredDrag + size=12 align=4 + base size=12 base align=4 +Q3StoredDrag (0xb1b94a80) 0 + vptr=((& Q3StoredDrag::_ZTV12Q3StoredDrag) + 8u) + Q3DragObject (0xb1bc10a0) 0 + primary-for Q3StoredDrag (0xb1b94a80) + QObject (0xb1bbc924) 0 + primary-for Q3DragObject (0xb1bc10a0) + QMimeSource (0xb1bbc960) 8 nearly-empty + vptr=((& Q3StoredDrag::_ZTV12Q3StoredDrag) + 88u) + +Vtable for Q3TextDrag +Q3TextDrag::_ZTV10Q3TextDrag: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3TextDrag) +8 Q3TextDrag::metaObject +12 Q3TextDrag::qt_metacast +16 Q3TextDrag::qt_metacall +20 Q3TextDrag::~Q3TextDrag +24 Q3TextDrag::~Q3TextDrag +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3DragObject::setPixmap +60 Q3DragObject::setPixmap +64 Q3DragObject::drag +68 Q3TextDrag::setText +72 Q3TextDrag::setSubtype +76 Q3TextDrag::format +80 Q3TextDrag::encodedData +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI10Q3TextDrag) +92 Q3TextDrag::_ZThn8_N10Q3TextDragD1Ev +96 Q3TextDrag::_ZThn8_N10Q3TextDragD0Ev +100 Q3TextDrag::_ZThn8_NK10Q3TextDrag6formatEi +104 QMimeSource::provides +108 Q3TextDrag::_ZThn8_NK10Q3TextDrag11encodedDataEPKc + +Class Q3TextDrag + size=12 align=4 + base size=12 base align=4 +Q3TextDrag (0xb1b94d40) 0 + vptr=((& Q3TextDrag::_ZTV10Q3TextDrag) + 8u) + Q3DragObject (0xb1bc6a50) 0 + primary-for Q3TextDrag (0xb1b94d40) + QObject (0xb1bcc564) 0 + primary-for Q3DragObject (0xb1bc6a50) + QMimeSource (0xb1bcc5a0) 8 nearly-empty + vptr=((& Q3TextDrag::_ZTV10Q3TextDrag) + 92u) + +Vtable for Q3ImageDrag +Q3ImageDrag::_ZTV11Q3ImageDrag: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3ImageDrag) +8 Q3ImageDrag::metaObject +12 Q3ImageDrag::qt_metacast +16 Q3ImageDrag::qt_metacall +20 Q3ImageDrag::~Q3ImageDrag +24 Q3ImageDrag::~Q3ImageDrag +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3DragObject::setPixmap +60 Q3DragObject::setPixmap +64 Q3DragObject::drag +68 Q3ImageDrag::setImage +72 Q3ImageDrag::format +76 Q3ImageDrag::encodedData +80 (int (*)(...))-0x000000008 +84 (int (*)(...))(& _ZTI11Q3ImageDrag) +88 Q3ImageDrag::_ZThn8_N11Q3ImageDragD1Ev +92 Q3ImageDrag::_ZThn8_N11Q3ImageDragD0Ev +96 Q3ImageDrag::_ZThn8_NK11Q3ImageDrag6formatEi +100 QMimeSource::provides +104 Q3ImageDrag::_ZThn8_NK11Q3ImageDrag11encodedDataEPKc + +Class Q3ImageDrag + size=12 align=4 + base size=12 base align=4 +Q3ImageDrag (0xb1bdf000) 0 + vptr=((& Q3ImageDrag::_ZTV11Q3ImageDrag) + 8u) + Q3DragObject (0xb1bd6780) 0 + primary-for Q3ImageDrag (0xb1bdf000) + QObject (0xb1bdb384) 0 + primary-for Q3DragObject (0xb1bd6780) + QMimeSource (0xb1bdb3c0) 8 nearly-empty + vptr=((& Q3ImageDrag::_ZTV11Q3ImageDrag) + 88u) + +Vtable for Q3UriDrag +Q3UriDrag::_ZTV9Q3UriDrag: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3UriDrag) +8 Q3UriDrag::metaObject +12 Q3UriDrag::qt_metacast +16 Q3UriDrag::qt_metacall +20 Q3UriDrag::~Q3UriDrag +24 Q3UriDrag::~Q3UriDrag +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3DragObject::setPixmap +60 Q3DragObject::setPixmap +64 Q3DragObject::drag +68 Q3StoredDrag::setEncodedData +72 Q3StoredDrag::format +76 Q3StoredDrag::encodedData +80 Q3UriDrag::setUris +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI9Q3UriDrag) +92 Q3UriDrag::_ZThn8_N9Q3UriDragD1Ev +96 Q3UriDrag::_ZThn8_N9Q3UriDragD0Ev +100 Q3StoredDrag::_ZThn8_NK12Q3StoredDrag6formatEi +104 QMimeSource::provides +108 Q3StoredDrag::_ZThn8_NK12Q3StoredDrag11encodedDataEPKc + +Class Q3UriDrag + size=12 align=4 + base size=12 base align=4 +Q3UriDrag (0xb1bdf2c0) 0 + vptr=((& Q3UriDrag::_ZTV9Q3UriDrag) + 8u) + Q3StoredDrag (0xb1bdf300) 0 + primary-for Q3UriDrag (0xb1bdf2c0) + Q3DragObject (0xb1be6460) 0 + primary-for Q3StoredDrag (0xb1bdf300) + QObject (0xb1beb1a4) 0 + primary-for Q3DragObject (0xb1be6460) + QMimeSource (0xb1beb1e0) 8 nearly-empty + vptr=((& Q3UriDrag::_ZTV9Q3UriDrag) + 92u) + +Vtable for Q3ColorDrag +Q3ColorDrag::_ZTV11Q3ColorDrag: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3ColorDrag) +8 Q3ColorDrag::metaObject +12 Q3ColorDrag::qt_metacast +16 Q3ColorDrag::qt_metacall +20 Q3ColorDrag::~Q3ColorDrag +24 Q3ColorDrag::~Q3ColorDrag +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3DragObject::setPixmap +60 Q3DragObject::setPixmap +64 Q3DragObject::drag +68 Q3StoredDrag::setEncodedData +72 Q3StoredDrag::format +76 Q3StoredDrag::encodedData +80 (int (*)(...))-0x000000008 +84 (int (*)(...))(& _ZTI11Q3ColorDrag) +88 Q3ColorDrag::_ZThn8_N11Q3ColorDragD1Ev +92 Q3ColorDrag::_ZThn8_N11Q3ColorDragD0Ev +96 Q3StoredDrag::_ZThn8_NK12Q3StoredDrag6formatEi +100 QMimeSource::provides +104 Q3StoredDrag::_ZThn8_NK12Q3StoredDrag11encodedDataEPKc + +Class Q3ColorDrag + size=28 align=4 + base size=28 base align=4 +Q3ColorDrag (0xb1bdf600) 0 + vptr=((& Q3ColorDrag::_ZTV11Q3ColorDrag) + 8u) + Q3StoredDrag (0xb1bdf640) 0 + primary-for Q3ColorDrag (0xb1bdf600) + Q3DragObject (0xb1bf8190) 0 + primary-for Q3StoredDrag (0xb1bdf640) + QObject (0xb1bebfb4) 0 + primary-for Q3DragObject (0xb1bf8190) + QMimeSource (0xb1beb7bc) 8 nearly-empty + vptr=((& Q3ColorDrag::_ZTV11Q3ColorDrag) + 88u) + +Vtable for Q3IconDragItem +Q3IconDragItem::_ZTV14Q3IconDragItem: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3IconDragItem) +8 Q3IconDragItem::~Q3IconDragItem +12 Q3IconDragItem::~Q3IconDragItem +16 Q3IconDragItem::data +20 Q3IconDragItem::setData + +Class Q3IconDragItem + size=8 align=4 + base size=8 base align=4 +Q3IconDragItem (0xb1bfda14) 0 + vptr=((& Q3IconDragItem::_ZTV14Q3IconDragItem) + 8u) + +Vtable for Q3IconDrag +Q3IconDrag::_ZTV10Q3IconDrag: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3IconDrag) +8 Q3IconDrag::metaObject +12 Q3IconDrag::qt_metacast +16 Q3IconDrag::qt_metacall +20 Q3IconDrag::~Q3IconDrag +24 Q3IconDrag::~Q3IconDrag +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3DragObject::setPixmap +60 Q3DragObject::setPixmap +64 Q3DragObject::drag +68 Q3IconDrag::format +72 Q3IconDrag::encodedData +76 (int (*)(...))-0x000000008 +80 (int (*)(...))(& _ZTI10Q3IconDrag) +84 Q3IconDrag::_ZThn8_N10Q3IconDragD1Ev +88 Q3IconDrag::_ZThn8_N10Q3IconDragD0Ev +92 Q3IconDrag::_ZThn8_NK10Q3IconDrag6formatEi +96 QMimeSource::provides +100 Q3IconDrag::_ZThn8_NK10Q3IconDrag11encodedDataEPKc + +Class Q3IconDrag + size=20 align=4 + base size=18 base align=4 +Q3IconDrag (0xb1bdf880) 0 + vptr=((& Q3IconDrag::_ZTV10Q3IconDrag) + 8u) + Q3DragObject (0xb1bf8aa0) 0 + primary-for Q3IconDrag (0xb1bdf880) + QObject (0xb1bfdc6c) 0 + primary-for Q3DragObject (0xb1bf8aa0) + QMimeSource (0xb1bfdca8) 8 nearly-empty + vptr=((& Q3IconDrag::_ZTV10Q3IconDrag) + 84u) + +Vtable for Q3IconViewItem +Q3IconViewItem::_ZTV14Q3IconViewItem: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3IconViewItem) +8 Q3IconViewItem::~Q3IconViewItem +12 Q3IconViewItem::~Q3IconViewItem +16 Q3IconViewItem::setRenameEnabled +20 Q3IconViewItem::setDragEnabled +24 Q3IconViewItem::setDropEnabled +28 Q3IconViewItem::text +32 Q3IconViewItem::pixmap +36 Q3IconViewItem::picture +40 Q3IconViewItem::key +44 Q3IconViewItem::setSelected +48 Q3IconViewItem::setSelected +52 Q3IconViewItem::setSelectable +56 Q3IconViewItem::repaint +60 Q3IconViewItem::move +64 Q3IconViewItem::moveBy +68 Q3IconViewItem::move +72 Q3IconViewItem::moveBy +76 Q3IconViewItem::acceptDrop +80 Q3IconViewItem::compare +84 Q3IconViewItem::setText +88 Q3IconViewItem::setPixmap +92 Q3IconViewItem::setPicture +96 Q3IconViewItem::setText +100 Q3IconViewItem::setPixmap +104 Q3IconViewItem::setKey +108 Q3IconViewItem::rtti +112 Q3IconViewItem::removeRenameBox +116 Q3IconViewItem::calcRect +120 Q3IconViewItem::paintItem +124 Q3IconViewItem::paintFocus +128 Q3IconViewItem::dropped +132 Q3IconViewItem::dragEntered +136 Q3IconViewItem::dragLeft + +Class Q3IconViewItem + size=112 align=4 + base size=112 base align=4 +Q3IconViewItem (0xb1c0c6cc) 0 + vptr=((& Q3IconViewItem::_ZTV14Q3IconViewItem) + 8u) + +Vtable for Q3IconView +Q3IconView::_ZTV10Q3IconView: 139u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3IconView) +8 Q3IconView::metaObject +12 Q3IconView::qt_metacast +16 Q3IconView::qt_metacall +20 Q3IconView::~Q3IconView +24 Q3IconView::~Q3IconView +28 QFrame::event +32 Q3IconView::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3IconView::sizeHint +68 Q3IconView::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 Q3IconView::keyPressEvent +104 QWidget::keyReleaseEvent +108 Q3IconView::focusInEvent +112 Q3IconView::focusOutEvent +116 Q3IconView::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3IconView::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 Q3IconView::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3IconView::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 Q3IconView::inputMethodQuery +196 Q3ScrollView::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3ScrollView::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3IconView::setContentsPos +272 Q3IconView::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3IconView::contentsMousePressEvent +284 Q3IconView::contentsMouseReleaseEvent +288 Q3IconView::contentsMouseDoubleClickEvent +292 Q3IconView::contentsMouseMoveEvent +296 Q3IconView::contentsDragEnterEvent +300 Q3IconView::contentsDragMoveEvent +304 Q3IconView::contentsDragLeaveEvent +308 Q3IconView::contentsDropEvent +312 Q3ScrollView::contentsWheelEvent +316 Q3IconView::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3ScrollView::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 Q3IconView::insertItem +384 Q3IconView::takeItem +388 Q3IconView::setCurrentItem +392 Q3IconView::setSelected +396 Q3IconView::setSelectionMode +400 Q3IconView::selectAll +404 Q3IconView::clearSelection +408 Q3IconView::invertSelection +412 Q3IconView::repaintItem +416 Q3IconView::clear +420 Q3IconView::setGridX +424 Q3IconView::setGridY +428 Q3IconView::setSpacing +432 Q3IconView::setItemTextPos +436 Q3IconView::setItemTextBackground +440 Q3IconView::setArrangement +444 Q3IconView::setResizeMode +448 Q3IconView::setMaxItemWidth +452 Q3IconView::setMaxItemTextLength +456 Q3IconView::setAutoArrange +460 Q3IconView::setShowToolTips +464 Q3IconView::setItemsMovable +468 Q3IconView::setWordWrapIconText +472 Q3IconView::sort +476 Q3IconView::arrangeItemsInGrid +480 Q3IconView::arrangeItemsInGrid +484 Q3IconView::updateContents +488 Q3IconView::doAutoScroll +492 Q3IconView::adjustItems +496 Q3IconView::slotUpdate +500 Q3IconView::drawRubber +504 Q3IconView::dragObject +508 Q3IconView::startDrag +512 Q3IconView::insertInGrid +516 Q3IconView::drawBackground +520 Q3IconView::drawDragShapes +524 Q3IconView::initDragEnter +528 (int (*)(...))-0x000000008 +532 (int (*)(...))(& _ZTI10Q3IconView) +536 Q3IconView::_ZThn8_N10Q3IconViewD1Ev +540 Q3IconView::_ZThn8_N10Q3IconViewD0Ev +544 QWidget::_ZThn8_NK7QWidget7devTypeEv +548 QWidget::_ZThn8_NK7QWidget11paintEngineEv +552 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3IconView + size=32 align=4 + base size=32 base align=4 +Q3IconView (0xb1bdfb00) 0 + vptr=((& Q3IconView::_ZTV10Q3IconView) + 8u) + Q3ScrollView (0xb1bdfb40) 0 + primary-for Q3IconView (0xb1bdfb00) + Q3Frame (0xb1bdfb80) 0 + primary-for Q3ScrollView (0xb1bdfb40) + QFrame (0xb1bdfbc0) 0 + primary-for Q3Frame (0xb1bdfb80) + QWidget (0xb1c1d460) 0 + primary-for QFrame (0xb1bdfbc0) + QObject (0xb1c0cdd4) 0 + primary-for QWidget (0xb1c1d460) + QPaintDevice (0xb1c0ce10) 8 + vptr=((& Q3IconView::_ZTV10Q3IconView) + 536u) + +Vtable for Q3ListBox +Q3ListBox::_ZTV9Q3ListBox: 119u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3ListBox) +8 Q3ListBox::metaObject +12 Q3ListBox::qt_metacast +16 Q3ListBox::qt_metacall +20 Q3ListBox::~Q3ListBox +24 Q3ListBox::~Q3ListBox +28 QFrame::event +32 Q3ListBox::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3ListBox::sizeHint +68 Q3ListBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3ListBox::mousePressEvent +84 Q3ListBox::mouseReleaseEvent +88 Q3ListBox::mouseDoubleClickEvent +92 Q3ListBox::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 Q3ListBox::keyPressEvent +104 QWidget::keyReleaseEvent +108 Q3ListBox::focusInEvent +112 Q3ListBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3ListBox::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 Q3ListBox::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3ListBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 Q3ListBox::inputMethodQuery +196 Q3ScrollView::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3ScrollView::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ScrollView::setContentsPos +272 Q3ScrollView::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3ScrollView::contentsMousePressEvent +284 Q3ScrollView::contentsMouseReleaseEvent +288 Q3ScrollView::contentsMouseDoubleClickEvent +292 Q3ScrollView::contentsMouseMoveEvent +296 Q3ScrollView::contentsDragEnterEvent +300 Q3ScrollView::contentsDragMoveEvent +304 Q3ScrollView::contentsDragLeaveEvent +308 Q3ScrollView::contentsDropEvent +312 Q3ScrollView::contentsWheelEvent +316 Q3ListBox::contentsContextMenuEvent +320 Q3ListBox::viewportPaintEvent +324 Q3ScrollView::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 Q3ListBox::setCurrentItem +384 Q3ListBox::setCurrentItem +388 Q3ListBox::setTopItem +392 Q3ListBox::setBottomItem +396 Q3ListBox::setSelectionMode +400 Q3ListBox::setSelected +404 Q3ListBox::setColumnMode +408 Q3ListBox::setColumnMode +412 Q3ListBox::setRowMode +416 Q3ListBox::setRowMode +420 Q3ListBox::setVariableWidth +424 Q3ListBox::setVariableHeight +428 Q3ListBox::ensureCurrentVisible +432 Q3ListBox::clearSelection +436 Q3ListBox::selectAll +440 Q3ListBox::invertSelection +444 Q3ListBox::paintCell +448 (int (*)(...))-0x000000008 +452 (int (*)(...))(& _ZTI9Q3ListBox) +456 Q3ListBox::_ZThn8_N9Q3ListBoxD1Ev +460 Q3ListBox::_ZThn8_N9Q3ListBoxD0Ev +464 QWidget::_ZThn8_NK7QWidget7devTypeEv +468 QWidget::_ZThn8_NK7QWidget11paintEngineEv +472 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ListBox + size=32 align=4 + base size=32 base align=4 +Q3ListBox (0xb1bdfe80) 0 + vptr=((& Q3ListBox::_ZTV9Q3ListBox) + 8u) + Q3ScrollView (0xb1bdfec0) 0 + primary-for Q3ListBox (0xb1bdfe80) + Q3Frame (0xb1bdff00) 0 + primary-for Q3ScrollView (0xb1bdfec0) + QFrame (0xb1bdff40) 0 + primary-for Q3Frame (0xb1bdff00) + QWidget (0xb1c3f960) 0 + primary-for QFrame (0xb1bdff40) + QObject (0xb1c2ed98) 0 + primary-for QWidget (0xb1c3f960) + QPaintDevice (0xb1c2edd4) 8 + vptr=((& Q3ListBox::_ZTV9Q3ListBox) + 456u) + +Vtable for Q3ListBoxItem +Q3ListBoxItem::_ZTV13Q3ListBoxItem: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13Q3ListBoxItem) +8 Q3ListBoxItem::~Q3ListBoxItem +12 Q3ListBoxItem::~Q3ListBoxItem +16 Q3ListBoxItem::text +20 Q3ListBoxItem::pixmap +24 Q3ListBoxItem::height +28 Q3ListBoxItem::width +32 Q3ListBoxItem::rtti +36 __cxa_pure_virtual +40 Q3ListBoxItem::setText + +Class Q3ListBoxItem + size=24 align=4 + base size=24 base align=4 +Q3ListBoxItem (0xb1c84ca8) 0 + vptr=((& Q3ListBoxItem::_ZTV13Q3ListBoxItem) + 8u) + +Vtable for Q3ListBoxText +Q3ListBoxText::_ZTV13Q3ListBoxText: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13Q3ListBoxText) +8 Q3ListBoxText::~Q3ListBoxText +12 Q3ListBoxText::~Q3ListBoxText +16 Q3ListBoxItem::text +20 Q3ListBoxItem::pixmap +24 Q3ListBoxText::height +28 Q3ListBoxText::width +32 Q3ListBoxText::rtti +36 Q3ListBoxText::paint +40 Q3ListBoxItem::setText + +Class Q3ListBoxText + size=24 align=4 + base size=24 base align=4 +Q3ListBoxText (0xb1c70a40) 0 + vptr=((& Q3ListBoxText::_ZTV13Q3ListBoxText) + 8u) + Q3ListBoxItem (0xb1a8fa14) 0 + primary-for Q3ListBoxText (0xb1c70a40) + +Vtable for Q3ListBoxPixmap +Q3ListBoxPixmap::_ZTV15Q3ListBoxPixmap: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15Q3ListBoxPixmap) +8 Q3ListBoxPixmap::~Q3ListBoxPixmap +12 Q3ListBoxPixmap::~Q3ListBoxPixmap +16 Q3ListBoxItem::text +20 Q3ListBoxPixmap::pixmap +24 Q3ListBoxPixmap::height +28 Q3ListBoxPixmap::width +32 Q3ListBoxPixmap::rtti +36 Q3ListBoxPixmap::paint +40 Q3ListBoxItem::setText + +Class Q3ListBoxPixmap + size=36 align=4 + base size=36 base align=4 +Q3ListBoxPixmap (0xb1c70a80) 0 + vptr=((& Q3ListBoxPixmap::_ZTV15Q3ListBoxPixmap) + 8u) + Q3ListBoxItem (0xb1a8ff3c) 0 + primary-for Q3ListBoxPixmap (0xb1c70a80) + +Vtable for Q3ListViewItem +Q3ListViewItem::_ZTV14Q3ListViewItem: 41u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3ListViewItem) +8 Q3ListViewItem::~Q3ListViewItem +12 Q3ListViewItem::~Q3ListViewItem +16 Q3ListViewItem::insertItem +20 Q3ListViewItem::takeItem +24 Q3ListViewItem::removeItem +28 Q3ListViewItem::invalidateHeight +32 Q3ListViewItem::width +36 Q3ListViewItem::setText +40 Q3ListViewItem::text +44 Q3ListViewItem::setPixmap +48 Q3ListViewItem::pixmap +52 Q3ListViewItem::key +56 Q3ListViewItem::compare +60 Q3ListViewItem::sortChildItems +64 Q3ListViewItem::setOpen +68 Q3ListViewItem::setup +72 Q3ListViewItem::setSelected +76 Q3ListViewItem::paintCell +80 Q3ListViewItem::paintBranches +84 Q3ListViewItem::paintFocus +88 Q3ListViewItem::setSelectable +92 Q3ListViewItem::setExpandable +96 Q3ListViewItem::sort +100 Q3ListViewItem::setDragEnabled +104 Q3ListViewItem::setDropEnabled +108 Q3ListViewItem::acceptDrop +112 Q3ListViewItem::setRenameEnabled +116 Q3ListViewItem::startRename +120 Q3ListViewItem::setEnabled +124 Q3ListViewItem::rtti +128 Q3ListViewItem::setMultiLinesEnabled +132 Q3ListViewItem::enforceSortOrder +136 Q3ListViewItem::setHeight +140 Q3ListViewItem::activate +144 Q3ListViewItem::dropped +148 Q3ListViewItem::dragEntered +152 Q3ListViewItem::dragLeft +156 Q3ListViewItem::okRename +160 Q3ListViewItem::cancelRename + +Class Q3ListViewItem + size=44 align=4 + base size=44 base align=4 +Q3ListViewItem (0xb1a9c564) 0 + vptr=((& Q3ListViewItem::_ZTV14Q3ListViewItem) + 8u) + +Vtable for Q3ListView +Q3ListView::_ZTV10Q3ListView: 134u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3ListView) +8 Q3ListView::metaObject +12 Q3ListView::qt_metacast +16 Q3ListView::qt_metacall +20 Q3ListView::~Q3ListView +24 Q3ListView::~Q3ListView +28 QFrame::event +32 Q3ListView::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3ListView::sizeHint +68 Q3ListView::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 Q3ListView::keyPressEvent +104 QWidget::keyReleaseEvent +108 Q3ListView::focusInEvent +112 Q3ListView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3ListView::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 Q3ListView::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3ListView::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 Q3ListView::inputMethodQuery +196 Q3ScrollView::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3ScrollView::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ListView::setContentsPos +272 Q3ScrollView::drawContents +276 Q3ListView::drawContentsOffset +280 Q3ListView::contentsMousePressEvent +284 Q3ListView::contentsMouseReleaseEvent +288 Q3ListView::contentsMouseDoubleClickEvent +292 Q3ListView::contentsMouseMoveEvent +296 Q3ListView::contentsDragEnterEvent +300 Q3ListView::contentsDragMoveEvent +304 Q3ListView::contentsDragLeaveEvent +308 Q3ListView::contentsDropEvent +312 Q3ScrollView::contentsWheelEvent +316 Q3ListView::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3ListView::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 Q3ListView::setTreeStepSize +384 Q3ListView::insertItem +388 Q3ListView::takeItem +392 Q3ListView::removeItem +396 Q3ListView::addColumn +400 Q3ListView::addColumn +404 Q3ListView::removeColumn +408 Q3ListView::setColumnText +412 Q3ListView::setColumnText +416 Q3ListView::setColumnWidth +420 Q3ListView::setColumnWidthMode +424 Q3ListView::setColumnAlignment +428 Q3ListView::setMultiSelection +432 Q3ListView::clearSelection +436 Q3ListView::setSelected +440 Q3ListView::setOpen +444 Q3ListView::setCurrentItem +448 Q3ListView::setAllColumnsShowFocus +452 Q3ListView::setItemMargin +456 Q3ListView::setRootIsDecorated +460 Q3ListView::setSorting +464 Q3ListView::sort +468 Q3ListView::setShowSortIndicator +472 Q3ListView::setShowToolTips +476 Q3ListView::setResizeMode +480 Q3ListView::setDefaultRenameAction +484 Q3ListView::clear +488 Q3ListView::invertSelection +492 Q3ListView::selectAll +496 Q3ListView::dragObject +500 Q3ListView::startDrag +504 Q3ListView::paintEmptyArea +508 (int (*)(...))-0x000000008 +512 (int (*)(...))(& _ZTI10Q3ListView) +516 Q3ListView::_ZThn8_N10Q3ListViewD1Ev +520 Q3ListView::_ZThn8_N10Q3ListViewD0Ev +524 QWidget::_ZThn8_NK7QWidget7devTypeEv +528 QWidget::_ZThn8_NK7QWidget11paintEngineEv +532 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ListView + size=32 align=4 + base size=32 base align=4 +Q3ListView (0xb1c70d80) 0 + vptr=((& Q3ListView::_ZTV10Q3ListView) + 8u) + Q3ScrollView (0xb1c70dc0) 0 + primary-for Q3ListView (0xb1c70d80) + Q3Frame (0xb1c70e00) 0 + primary-for Q3ScrollView (0xb1c70dc0) + QFrame (0xb1c70e40) 0 + primary-for Q3Frame (0xb1c70e00) + QWidget (0xb1ab4640) 0 + primary-for QFrame (0xb1c70e40) + QObject (0xb1ac70b4) 0 + primary-for QWidget (0xb1ab4640) + QPaintDevice (0xb1ac70f0) 8 + vptr=((& Q3ListView::_ZTV10Q3ListView) + 516u) + +Vtable for Q3CheckListItem +Q3CheckListItem::_ZTV15Q3CheckListItem: 43u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15Q3CheckListItem) +8 Q3CheckListItem::~Q3CheckListItem +12 Q3CheckListItem::~Q3CheckListItem +16 Q3ListViewItem::insertItem +20 Q3ListViewItem::takeItem +24 Q3ListViewItem::removeItem +28 Q3ListViewItem::invalidateHeight +32 Q3CheckListItem::width +36 Q3ListViewItem::setText +40 Q3CheckListItem::text +44 Q3ListViewItem::setPixmap +48 Q3ListViewItem::pixmap +52 Q3ListViewItem::key +56 Q3ListViewItem::compare +60 Q3ListViewItem::sortChildItems +64 Q3ListViewItem::setOpen +68 Q3CheckListItem::setup +72 Q3ListViewItem::setSelected +76 Q3CheckListItem::paintCell +80 Q3ListViewItem::paintBranches +84 Q3CheckListItem::paintFocus +88 Q3ListViewItem::setSelectable +92 Q3ListViewItem::setExpandable +96 Q3ListViewItem::sort +100 Q3ListViewItem::setDragEnabled +104 Q3ListViewItem::setDropEnabled +108 Q3ListViewItem::acceptDrop +112 Q3ListViewItem::setRenameEnabled +116 Q3ListViewItem::startRename +120 Q3ListViewItem::setEnabled +124 Q3CheckListItem::rtti +128 Q3ListViewItem::setMultiLinesEnabled +132 Q3ListViewItem::enforceSortOrder +136 Q3ListViewItem::setHeight +140 Q3CheckListItem::activate +144 Q3ListViewItem::dropped +148 Q3ListViewItem::dragEntered +152 Q3ListViewItem::dragLeft +156 Q3ListViewItem::okRename +160 Q3ListViewItem::cancelRename +164 Q3CheckListItem::setOn +168 Q3CheckListItem::stateChange + +Class Q3CheckListItem + size=56 align=4 + base size=56 base align=4 +Q3CheckListItem (0xb1aec100) 0 + vptr=((& Q3CheckListItem::_ZTV15Q3CheckListItem) + 8u) + Q3ListViewItem (0xb1af0168) 0 + primary-for Q3CheckListItem (0xb1aec100) + +Class Q3ListViewItemIterator + size=12 align=4 + base size=12 base align=4 +Q3ListViewItemIterator (0xb1afe690) 0 + +Vtable for Q3GVector +Q3GVector::_ZTV9Q3GVector: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3GVector) +8 Q3GVector::count +12 Q3GVector::clear +16 Q3GVector::~Q3GVector +20 Q3GVector::~Q3GVector +24 Q3PtrCollection::newItem +28 __cxa_pure_virtual +32 Q3GVector::compareItems +36 Q3GVector::read +40 Q3GVector::write + +Class Q3GVector + size=20 align=4 + base size=20 base align=4 +Q3GVector (0xb1aec280) 0 + vptr=((& Q3GVector::_ZTV9Q3GVector) + 8u) + Q3PtrCollection (0xb1b05000) 0 + primary-for Q3GVector (0xb1aec280) + +Vtable for Q3PtrVector +Q3PtrVector::_ZTV11Q3PtrVectorIvE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3PtrVectorIvE) +8 Q3PtrVector::count [with type = void] +12 Q3PtrVector::clear [with type = void] +16 Q3PtrVector::~Q3PtrVector [with type = void] +20 Q3PtrVector::~Q3PtrVector [with type = void] +24 Q3PtrCollection::newItem +28 Q3PtrVector::deleteItem [with type = void] +32 Q3GVector::compareItems +36 Q3GVector::read +40 Q3GVector::write + +Class Q3PtrVector + size=20 align=4 + base size=20 base align=4 +Q3PtrVector (0xb1aeccc0) 0 + vptr=((& Q3PtrVector::_ZTV11Q3PtrVectorIvE) + 8u) + Q3GVector (0xb1aecd00) 0 + primary-for Q3PtrVector (0xb1aeccc0) + Q3PtrCollection (0xb1b18474) 0 + primary-for Q3GVector (0xb1aecd00) + +Vtable for Q3Header +Q3Header::_ZTV8Q3Header: 76u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8Q3Header) +8 Q3Header::metaObject +12 Q3Header::qt_metacast +16 Q3Header::qt_metacall +20 Q3Header::~Q3Header +24 Q3Header::~Q3Header +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 Q3Header::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3Header::mousePressEvent +84 Q3Header::mouseReleaseEvent +88 Q3Header::mouseDoubleClickEvent +92 Q3Header::mouseMoveEvent +96 QWidget::wheelEvent +100 Q3Header::keyPressEvent +104 Q3Header::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Header::paintEvent +128 QWidget::moveEvent +132 Q3Header::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 Q3Header::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3Header::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3Header::setLabel +228 Q3Header::setLabel +232 Q3Header::setOrientation +236 Q3Header::setTracking +240 Q3Header::setClickEnabled +244 Q3Header::setResizeEnabled +248 Q3Header::setMovingEnabled +252 Q3Header::setStretchEnabled +256 Q3Header::setCellSize +260 Q3Header::moveCell +264 Q3Header::setOffset +268 Q3Header::paintSection +272 Q3Header::paintSectionLabel +276 (int (*)(...))-0x000000008 +280 (int (*)(...))(& _ZTI8Q3Header) +284 Q3Header::_ZThn8_N8Q3HeaderD1Ev +288 Q3Header::_ZThn8_N8Q3HeaderD0Ev +292 QWidget::_ZThn8_NK7QWidget7devTypeEv +296 QWidget::_ZThn8_NK7QWidget11paintEngineEv +300 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Header + size=64 align=4 + base size=64 base align=4 +Q3Header (0xb1aecf80) 0 + vptr=((& Q3Header::_ZTV8Q3Header) + 8u) + QWidget (0xb1b24870) 0 + primary-for Q3Header (0xb1aecf80) + QObject (0xb1b18780) 0 + primary-for QWidget (0xb1b24870) + QPaintDevice (0xb1b187bc) 8 + vptr=((& Q3Header::_ZTV8Q3Header) + 284u) + +Class Q3Shared + size=4 align=4 + base size=4 base align=4 +Q3Shared (0xb1b43ac8) 0 + +Class Q3GArray::array_data + size=12 align=4 + base size=12 base align=4 +Q3GArray::array_data (0xb1b28540) 0 + Q3Shared (0xb1b43f78) 0 + +Vtable for Q3GArray +Q3GArray::_ZTV8Q3GArray: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8Q3GArray) +8 Q3GArray::~Q3GArray +12 Q3GArray::~Q3GArray +16 Q3GArray::detach +20 Q3GArray::newData +24 Q3GArray::deleteData + +Class Q3GArray + size=8 align=4 + base size=8 base align=4 +Q3GArray (0xb1b43f3c) 0 + vptr=((& Q3GArray::_ZTV8Q3GArray) + 8u) + +Vtable for Q3IntDict +Q3IntDict::_ZTV9Q3IntDictIvE: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3IntDictIvE) +8 Q3IntDict::count [with type = void] +12 Q3IntDict::clear [with type = void] +16 Q3IntDict::~Q3IntDict [with type = void] +20 Q3IntDict::~Q3IntDict [with type = void] +24 Q3PtrCollection::newItem +28 Q3IntDict::deleteItem [with type = void] +32 Q3GDict::read +36 Q3GDict::write + +Class Q3IntDict + size=28 align=4 + base size=28 base align=4 +Q3IntDict (0xb1b6dd00) 0 + vptr=((& Q3IntDict::_ZTV9Q3IntDictIvE) + 8u) + Q3GDict (0xb1b6dd40) 0 + primary-for Q3IntDict (0xb1b6dd00) + Q3PtrCollection (0xb1b7a3fc) 0 + primary-for Q3GDict (0xb1b6dd40) + +Class Q3TableSelection + size=28 align=4 + base size=28 base align=4 +Q3TableSelection (0xb1b7aa14) 0 + +Vtable for Q3TableItem +Q3TableItem::_ZTV11Q3TableItem: 21u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3TableItem) +8 Q3TableItem::~Q3TableItem +12 Q3TableItem::~Q3TableItem +16 Q3TableItem::pixmap +20 Q3TableItem::text +24 Q3TableItem::setPixmap +28 Q3TableItem::setText +32 Q3TableItem::alignment +36 Q3TableItem::setWordWrap +40 Q3TableItem::createEditor +44 Q3TableItem::setContentFromEditor +48 Q3TableItem::setReplaceable +52 Q3TableItem::key +56 Q3TableItem::sizeHint +60 Q3TableItem::setSpan +64 Q3TableItem::setRow +68 Q3TableItem::setCol +72 Q3TableItem::paint +76 Q3TableItem::setEnabled +80 Q3TableItem::rtti + +Class Q3TableItem + size=48 align=4 + base size=48 base align=4 +Q3TableItem (0xb19923c0) 0 + vptr=((& Q3TableItem::_ZTV11Q3TableItem) + 8u) + +Vtable for Q3ComboTableItem +Q3ComboTableItem::_ZTV16Q3ComboTableItem: 25u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16Q3ComboTableItem) +8 Q3ComboTableItem::~Q3ComboTableItem +12 Q3ComboTableItem::~Q3ComboTableItem +16 Q3TableItem::pixmap +20 Q3TableItem::text +24 Q3TableItem::setPixmap +28 Q3TableItem::setText +32 Q3TableItem::alignment +36 Q3TableItem::setWordWrap +40 Q3ComboTableItem::createEditor +44 Q3ComboTableItem::setContentFromEditor +48 Q3TableItem::setReplaceable +52 Q3TableItem::key +56 Q3ComboTableItem::sizeHint +60 Q3TableItem::setSpan +64 Q3TableItem::setRow +68 Q3TableItem::setCol +72 Q3ComboTableItem::paint +76 Q3TableItem::setEnabled +80 Q3ComboTableItem::rtti +84 Q3ComboTableItem::setCurrentItem +88 Q3ComboTableItem::setCurrentItem +92 Q3ComboTableItem::setEditable +96 Q3ComboTableItem::setStringList + +Class Q3ComboTableItem + size=64 align=4 + base size=61 base align=4 +Q3ComboTableItem (0xb1b846c0) 0 + vptr=((& Q3ComboTableItem::_ZTV16Q3ComboTableItem) + 8u) + Q3TableItem (0xb19928e8) 0 + primary-for Q3ComboTableItem (0xb1b846c0) + +Vtable for Q3CheckTableItem +Q3CheckTableItem::_ZTV16Q3CheckTableItem: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16Q3CheckTableItem) +8 Q3CheckTableItem::~Q3CheckTableItem +12 Q3CheckTableItem::~Q3CheckTableItem +16 Q3TableItem::pixmap +20 Q3TableItem::text +24 Q3TableItem::setPixmap +28 Q3CheckTableItem::setText +32 Q3TableItem::alignment +36 Q3TableItem::setWordWrap +40 Q3CheckTableItem::createEditor +44 Q3CheckTableItem::setContentFromEditor +48 Q3TableItem::setReplaceable +52 Q3TableItem::key +56 Q3CheckTableItem::sizeHint +60 Q3TableItem::setSpan +64 Q3TableItem::setRow +68 Q3TableItem::setCol +72 Q3CheckTableItem::paint +76 Q3TableItem::setEnabled +80 Q3CheckTableItem::rtti +84 Q3CheckTableItem::setChecked + +Class Q3CheckTableItem + size=56 align=4 + base size=53 base align=4 +Q3CheckTableItem (0xb1b84700) 0 + vptr=((& Q3CheckTableItem::_ZTV16Q3CheckTableItem) + 8u) + Q3TableItem (0xb1992ac8) 0 + primary-for Q3CheckTableItem (0xb1b84700) + +Class Q3Table::TableWidget + size=12 align=4 + base size=12 base align=4 +Q3Table::TableWidget (0xb19b430c) 0 + +Vtable for Q3PtrVector +Q3PtrVector::_ZTV11Q3PtrVectorI11Q3TableItemE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3PtrVectorI11Q3TableItemE) +8 Q3PtrVector::count [with type = Q3TableItem] +12 Q3PtrVector::clear [with type = Q3TableItem] +16 Q3PtrVector::~Q3PtrVector [with type = Q3TableItem] +20 Q3PtrVector::~Q3PtrVector [with type = Q3TableItem] +24 Q3PtrCollection::newItem +28 Q3PtrVector::deleteItem [with type = Q3TableItem] +32 Q3GVector::compareItems +36 Q3GVector::read +40 Q3GVector::write + +Class Q3PtrVector + size=20 align=4 + base size=20 base align=4 +Q3PtrVector (0xb1b84980) 0 + vptr=((& Q3PtrVector::_ZTV11Q3PtrVectorI11Q3TableItemE) + 8u) + Q3GVector (0xb1b849c0) 0 + primary-for Q3PtrVector (0xb1b84980) + Q3PtrCollection (0xb19b4744) 0 + primary-for Q3GVector (0xb1b849c0) + +Vtable for Q3PtrVector +Q3PtrVector::_ZTV11Q3PtrVectorI7QWidgetE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3PtrVectorI7QWidgetE) +8 Q3PtrVector::count [with type = QWidget] +12 Q3PtrVector::clear [with type = QWidget] +16 Q3PtrVector::~Q3PtrVector [with type = QWidget] +20 Q3PtrVector::~Q3PtrVector [with type = QWidget] +24 Q3PtrCollection::newItem +28 Q3PtrVector::deleteItem [with type = QWidget] +32 Q3GVector::compareItems +36 Q3GVector::read +40 Q3GVector::write + +Class Q3PtrVector + size=20 align=4 + base size=20 base align=4 +Q3PtrVector (0xb1b84a00) 0 + vptr=((& Q3PtrVector::_ZTV11Q3PtrVectorI7QWidgetE) + 8u) + Q3GVector (0xb1b84a40) 0 + primary-for Q3PtrVector (0xb1b84a00) + Q3PtrCollection (0xb19b4b04) 0 + primary-for Q3GVector (0xb1b84a40) + +Vtable for Q3PtrList +Q3PtrList::_ZTV9Q3PtrListI16Q3TableSelectionE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3PtrListI16Q3TableSelectionE) +8 Q3PtrList::count [with type = Q3TableSelection] +12 Q3PtrList::clear [with type = Q3TableSelection] +16 Q3PtrList::~Q3PtrList [with type = Q3TableSelection] +20 Q3PtrList::~Q3PtrList [with type = Q3TableSelection] +24 Q3PtrCollection::newItem +28 Q3PtrList::deleteItem [with type = Q3TableSelection] +32 Q3GList::compareItems +36 Q3GList::read +40 Q3GList::write + +Class Q3PtrList + size=32 align=4 + base size=32 base align=4 +Q3PtrList (0xb1b84ac0) 0 + vptr=((& Q3PtrList::_ZTV9Q3PtrListI16Q3TableSelectionE) + 8u) + Q3GList (0xb1b84b00) 0 + primary-for Q3PtrList (0xb1b84ac0) + Q3PtrCollection (0xb19b4ce4) 0 + primary-for Q3GList (0xb1b84b00) + +Vtable for Q3IntDict +Q3IntDict::_ZTV9Q3IntDictIiE: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3IntDictIiE) +8 Q3IntDict::count [with type = int] +12 Q3IntDict::clear [with type = int] +16 Q3IntDict::~Q3IntDict [with type = int] +20 Q3IntDict::~Q3IntDict [with type = int] +24 Q3PtrCollection::newItem +28 Q3IntDict::deleteItem [with type = int] +32 Q3GDict::read +36 Q3GDict::write + +Class Q3IntDict + size=28 align=4 + base size=28 base align=4 +Q3IntDict (0xb1b84b80) 0 + vptr=((& Q3IntDict::_ZTV9Q3IntDictIiE) + 8u) + Q3GDict (0xb1b84bc0) 0 + primary-for Q3IntDict (0xb1b84b80) + Q3PtrCollection (0xb19b4ec4) 0 + primary-for Q3GDict (0xb1b84bc0) + +Vtable for Q3Table +Q3Table::_ZTV7Q3Table: 183u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7Q3Table) +8 Q3Table::metaObject +12 Q3Table::qt_metacast +16 Q3Table::qt_metacall +20 Q3Table::~Q3Table +24 Q3Table::~Q3Table +28 QFrame::event +32 Q3Table::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3Table::sizeHint +68 Q3ScrollView::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 Q3Table::keyPressEvent +104 QWidget::keyReleaseEvent +108 Q3Table::focusInEvent +112 Q3Table::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Table::paintEvent +128 QWidget::moveEvent +132 Q3ScrollView::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 Q3Table::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 Q3Table::inputMethodQuery +196 Q3ScrollView::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 Q3Table::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3Table::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ScrollView::setContentsPos +272 Q3Table::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3Table::contentsMousePressEvent +284 Q3Table::contentsMouseReleaseEvent +288 Q3Table::contentsMouseDoubleClickEvent +292 Q3Table::contentsMouseMoveEvent +296 Q3Table::contentsDragEnterEvent +300 Q3Table::contentsDragMoveEvent +304 Q3Table::contentsDragLeaveEvent +308 Q3Table::contentsDropEvent +312 Q3ScrollView::contentsWheelEvent +316 Q3Table::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3Table::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 Q3Table::setSelectionMode +384 Q3Table::setItem +388 Q3Table::setText +392 Q3Table::setPixmap +396 Q3Table::item +400 Q3Table::text +404 Q3Table::pixmap +408 Q3Table::clearCell +412 Q3Table::cellGeometry +416 Q3Table::columnWidth +420 Q3Table::rowHeight +424 Q3Table::columnPos +428 Q3Table::rowPos +432 Q3Table::columnAt +436 Q3Table::rowAt +440 Q3Table::numRows +444 Q3Table::numCols +448 Q3Table::addSelection +452 Q3Table::removeSelection +456 Q3Table::removeSelection +460 Q3Table::currentSelection +464 Q3Table::selectRow +468 Q3Table::selectColumn +472 Q3Table::sortColumn +476 Q3Table::takeItem +480 Q3Table::setCellWidget +484 Q3Table::cellWidget +488 Q3Table::clearCellWidget +492 Q3Table::cellRect +496 Q3Table::paintCell +500 Q3Table::paintCell +504 Q3Table::paintFocus +508 Q3Table::setFocusStyle +512 Q3Table::setNumRows +516 Q3Table::setNumCols +520 Q3Table::setShowGrid +524 Q3Table::hideRow +528 Q3Table::hideColumn +532 Q3Table::showRow +536 Q3Table::showColumn +540 Q3Table::setColumnWidth +544 Q3Table::setRowHeight +548 Q3Table::adjustColumn +552 Q3Table::adjustRow +556 Q3Table::setColumnStretchable +560 Q3Table::setRowStretchable +564 Q3Table::setSorting +568 Q3Table::swapRows +572 Q3Table::swapColumns +576 Q3Table::swapCells +580 Q3Table::setLeftMargin +584 Q3Table::setTopMargin +588 Q3Table::setCurrentCell +592 Q3Table::setColumnMovingEnabled +596 Q3Table::setRowMovingEnabled +600 Q3Table::setReadOnly +604 Q3Table::setRowReadOnly +608 Q3Table::setColumnReadOnly +612 Q3Table::setDragEnabled +616 Q3Table::insertRows +620 Q3Table::insertColumns +624 Q3Table::removeRow +628 Q3Table::removeRows +632 Q3Table::removeColumn +636 Q3Table::removeColumns +640 Q3Table::editCell +644 Q3Table::dragObject +648 Q3Table::startDrag +652 Q3Table::paintEmptyArea +656 Q3Table::activateNextCell +660 Q3Table::createEditor +664 Q3Table::setCellContentFromEditor +668 Q3Table::beginEdit +672 Q3Table::endEdit +676 Q3Table::resizeData +680 Q3Table::insertWidget +684 Q3Table::columnWidthChanged +688 Q3Table::rowHeightChanged +692 Q3Table::columnIndexChanged +696 Q3Table::rowIndexChanged +700 Q3Table::columnClicked +704 (int (*)(...))-0x000000008 +708 (int (*)(...))(& _ZTI7Q3Table) +712 Q3Table::_ZThn8_N7Q3TableD1Ev +716 Q3Table::_ZThn8_N7Q3TableD0Ev +720 QWidget::_ZThn8_NK7QWidget7devTypeEv +724 QWidget::_ZThn8_NK7QWidget11paintEngineEv +728 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Table + size=244 align=4 + base size=244 base align=4 +Q3Table (0xb1b84780) 0 + vptr=((& Q3Table::_ZTV7Q3Table) + 8u) + Q3ScrollView (0xb1b847c0) 0 + primary-for Q3Table (0xb1b84780) + Q3Frame (0xb1b84800) 0 + primary-for Q3ScrollView (0xb1b847c0) + QFrame (0xb1b84840) 0 + primary-for Q3Frame (0xb1b84800) + QWidget (0xb19a2d20) 0 + primary-for QFrame (0xb1b84840) + QObject (0xb1992bf4) 0 + primary-for QWidget (0xb19a2d20) + QPaintDevice (0xb1992c30) 8 + vptr=((& Q3Table::_ZTV7Q3Table) + 712u) + +Class Q3Dns::MailServer + size=8 align=4 + base size=6 base align=4 +Q3Dns::MailServer (0xb19ece4c) 0 + +Class Q3Dns::Server + size=12 align=4 + base size=10 base align=4 +Q3Dns::Server (0xb1a0512c) 0 + +Vtable for Q3Dns +Q3Dns::_ZTV5Q3Dns: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5Q3Dns) +8 Q3Dns::metaObject +12 Q3Dns::qt_metacast +16 Q3Dns::qt_metacall +20 Q3Dns::~Q3Dns +24 Q3Dns::~Q3Dns +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3Dns::setLabel +60 Q3Dns::setLabel +64 Q3Dns::setRecordType + +Class Q3Dns + size=24 align=4 + base size=24 base align=4 +Q3Dns (0xb19fe000) 0 + vptr=((& Q3Dns::_ZTV5Q3Dns) + 8u) + QObject (0xb19ecb7c) 0 + primary-for Q3Dns (0xb19fe000) + +Vtable for Q3DnsSocket +Q3DnsSocket::_ZTV11Q3DnsSocket: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3DnsSocket) +8 Q3DnsSocket::metaObject +12 Q3DnsSocket::qt_metacast +16 Q3DnsSocket::qt_metacall +20 Q3DnsSocket::~Q3DnsSocket +24 Q3DnsSocket::~Q3DnsSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3DnsSocket::cleanCache +60 Q3DnsSocket::retransmit +64 Q3DnsSocket::answer + +Class Q3DnsSocket + size=8 align=4 + base size=8 base align=4 +Q3DnsSocket (0xb19fe700) 0 + vptr=((& Q3DnsSocket::_ZTV11Q3DnsSocket) + 8u) + QObject (0xb1a133c0) 0 + primary-for Q3DnsSocket (0xb19fe700) + +Vtable for Q3Ftp +Q3Ftp::_ZTV5Q3Ftp: 29u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5Q3Ftp) +8 Q3Ftp::metaObject +12 Q3Ftp::qt_metacast +16 Q3Ftp::qt_metacall +20 Q3Ftp::~Q3Ftp +24 Q3Ftp::~Q3Ftp +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3NetworkProtocol::setUrl +60 Q3NetworkProtocol::setAutoDelete +64 Q3Ftp::supportedOperations +68 Q3NetworkProtocol::addOperation +72 Q3NetworkProtocol::clearOperationQueue +76 Q3NetworkProtocol::stop +80 Q3NetworkProtocol::processOperation +84 Q3Ftp::operationListChildren +88 Q3Ftp::operationMkDir +92 Q3Ftp::operationRemove +96 Q3Ftp::operationRename +100 Q3Ftp::operationGet +104 Q3Ftp::operationPut +108 Q3NetworkProtocol::operationPutChunk +112 Q3Ftp::checkConnection + +Class Q3Ftp + size=48 align=4 + base size=45 base align=4 +Q3Ftp (0xb19fe940) 0 + vptr=((& Q3Ftp::_ZTV5Q3Ftp) + 8u) + Q3NetworkProtocol (0xb19fe980) 0 + primary-for Q3Ftp (0xb19fe940) + QObject (0xb1a13b40) 0 + primary-for Q3NetworkProtocol (0xb19fe980) + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb1a30924) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb1a308ac) 0 + +Vtable for Q3HttpHeader +Q3HttpHeader::_ZTV12Q3HttpHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3HttpHeader) +8 Q3HttpHeader::~Q3HttpHeader +12 Q3HttpHeader::~Q3HttpHeader +16 Q3HttpHeader::toString +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 Q3HttpHeader::parseLine + +Class Q3HttpHeader + size=12 align=4 + base size=9 base align=4 +Q3HttpHeader (0xb1a30564) 0 + vptr=((& Q3HttpHeader::_ZTV12Q3HttpHeader) + 8u) + +Vtable for Q3HttpResponseHeader +Q3HttpResponseHeader::_ZTV20Q3HttpResponseHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20Q3HttpResponseHeader) +8 Q3HttpResponseHeader::~Q3HttpResponseHeader +12 Q3HttpResponseHeader::~Q3HttpResponseHeader +16 Q3HttpResponseHeader::toString +20 Q3HttpResponseHeader::majorVersion +24 Q3HttpResponseHeader::minorVersion +28 Q3HttpResponseHeader::parseLine + +Class Q3HttpResponseHeader + size=28 align=4 + base size=28 base align=4 +Q3HttpResponseHeader (0xb19fecc0) 0 + vptr=((& Q3HttpResponseHeader::_ZTV20Q3HttpResponseHeader) + 8u) + Q3HttpHeader (0xb1a30a50) 0 + primary-for Q3HttpResponseHeader (0xb19fecc0) + +Vtable for Q3HttpRequestHeader +Q3HttpRequestHeader::_ZTV19Q3HttpRequestHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19Q3HttpRequestHeader) +8 Q3HttpRequestHeader::~Q3HttpRequestHeader +12 Q3HttpRequestHeader::~Q3HttpRequestHeader +16 Q3HttpRequestHeader::toString +20 Q3HttpRequestHeader::majorVersion +24 Q3HttpRequestHeader::minorVersion +28 Q3HttpRequestHeader::parseLine + +Class Q3HttpRequestHeader + size=28 align=4 + base size=28 base align=4 +Q3HttpRequestHeader (0xb19fed40) 0 + vptr=((& Q3HttpRequestHeader::_ZTV19Q3HttpRequestHeader) + 8u) + Q3HttpHeader (0xb1a30d20) 0 + primary-for Q3HttpRequestHeader (0xb19fed40) + +Vtable for Q3Http +Q3Http::_ZTV6Q3Http: 29u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6Q3Http) +8 Q3Http::metaObject +12 Q3Http::qt_metacast +16 Q3Http::qt_metacall +20 Q3Http::~Q3Http +24 Q3Http::~Q3Http +28 QObject::event +32 QObject::eventFilter +36 Q3Http::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3NetworkProtocol::setUrl +60 Q3NetworkProtocol::setAutoDelete +64 Q3Http::supportedOperations +68 Q3NetworkProtocol::addOperation +72 Q3NetworkProtocol::clearOperationQueue +76 Q3NetworkProtocol::stop +80 Q3NetworkProtocol::processOperation +84 Q3NetworkProtocol::operationListChildren +88 Q3NetworkProtocol::operationMkDir +92 Q3NetworkProtocol::operationRemove +96 Q3NetworkProtocol::operationRename +100 Q3Http::operationGet +104 Q3Http::operationPut +108 Q3NetworkProtocol::operationPutChunk +112 Q3NetworkProtocol::checkConnection + +Class Q3Http + size=24 align=4 + base size=24 base align=4 +Q3Http (0xb19fedc0) 0 + vptr=((& Q3Http::_ZTV6Q3Http) + 8u) + Q3NetworkProtocol (0xb19fee00) 0 + primary-for Q3Http (0xb19fedc0) + QObject (0xb1a30f78) 0 + primary-for Q3NetworkProtocol (0xb19fee00) + +Vtable for Q3LocalFs +Q3LocalFs::_ZTV9Q3LocalFs: 29u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3LocalFs) +8 Q3LocalFs::metaObject +12 Q3LocalFs::qt_metacast +16 Q3LocalFs::qt_metacall +20 Q3LocalFs::~Q3LocalFs +24 Q3LocalFs::~Q3LocalFs +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3NetworkProtocol::setUrl +60 Q3NetworkProtocol::setAutoDelete +64 Q3LocalFs::supportedOperations +68 Q3NetworkProtocol::addOperation +72 Q3NetworkProtocol::clearOperationQueue +76 Q3NetworkProtocol::stop +80 Q3NetworkProtocol::processOperation +84 Q3LocalFs::operationListChildren +88 Q3LocalFs::operationMkDir +92 Q3LocalFs::operationRemove +96 Q3LocalFs::operationRename +100 Q3LocalFs::operationGet +104 Q3LocalFs::operationPut +108 Q3NetworkProtocol::operationPutChunk +112 Q3NetworkProtocol::checkConnection + +Class Q3LocalFs + size=16 align=4 + base size=16 base align=4 +Q3LocalFs (0xb1a63080) 0 + vptr=((& Q3LocalFs::_ZTV9Q3LocalFs) + 8u) + Q3NetworkProtocol (0xb1a630c0) 0 + primary-for Q3LocalFs (0xb1a63080) + QObject (0xb1a54834) 0 + primary-for Q3NetworkProtocol (0xb1a630c0) + +Vtable for Q3SocketDevice +Q3SocketDevice::_ZTV14Q3SocketDevice: 41u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3SocketDevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 Q3SocketDevice::~Q3SocketDevice +24 Q3SocketDevice::~Q3SocketDevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3SocketDevice::isSequential +60 Q3SocketDevice::open +64 Q3SocketDevice::close +68 QIODevice::pos +72 Q3SocketDevice::size +76 QIODevice::seek +80 Q3SocketDevice::atEnd +84 QIODevice::reset +88 Q3SocketDevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 Q3SocketDevice::readData +112 QIODevice::readLineData +116 Q3SocketDevice::writeData +120 Q3SocketDevice::setSocket +124 Q3SocketDevice::setBlocking +128 Q3SocketDevice::setAddressReusable +132 Q3SocketDevice::setReceiveBufferSize +136 Q3SocketDevice::setSendBufferSize +140 Q3SocketDevice::connect +144 Q3SocketDevice::bind +148 Q3SocketDevice::listen +152 Q3SocketDevice::accept +156 Q3SocketDevice::writeBlock +160 Q3SocketDevice::setOption + +Class Q3SocketDevice + size=40 align=4 + base size=40 base align=4 +Q3SocketDevice (0xb1a63300) 0 + vptr=((& Q3SocketDevice::_ZTV14Q3SocketDevice) + 8u) + QIODevice (0xb1a63340) 0 + primary-for Q3SocketDevice (0xb1a63300) + QObject (0xb1a54f00) 0 + primary-for QIODevice (0xb1a63340) + +Vtable for Q3ServerSocket +Q3ServerSocket::_ZTV14Q3ServerSocket: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3ServerSocket) +8 Q3ServerSocket::metaObject +12 Q3ServerSocket::qt_metacast +16 Q3ServerSocket::qt_metacall +20 Q3ServerSocket::~Q3ServerSocket +24 Q3ServerSocket::~Q3ServerSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3ServerSocket::setSocket +60 __cxa_pure_virtual + +Class Q3ServerSocket + size=12 align=4 + base size=12 base align=4 +Q3ServerSocket (0xb1a634c0) 0 + vptr=((& Q3ServerSocket::_ZTV14Q3ServerSocket) + 8u) + QObject (0xb1a82078) 0 + primary-for Q3ServerSocket (0xb1a634c0) + +Vtable for Q3Socket +Q3Socket::_ZTV8Q3Socket: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8Q3Socket) +8 Q3Socket::metaObject +12 Q3Socket::qt_metacast +16 Q3Socket::qt_metacall +20 Q3Socket::~Q3Socket +24 Q3Socket::~Q3Socket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3Socket::isSequential +60 Q3Socket::open +64 Q3Socket::close +68 QIODevice::pos +72 Q3Socket::size +76 QIODevice::seek +80 Q3Socket::atEnd +84 QIODevice::reset +88 Q3Socket::bytesAvailable +92 Q3Socket::bytesToWrite +96 Q3Socket::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 Q3Socket::readData +112 QIODevice::readLineData +116 Q3Socket::writeData +120 Q3Socket::setSocket +124 Q3Socket::setSocketDevice +128 Q3Socket::connectToHost +132 Q3Socket::sn_read +136 Q3Socket::sn_write + +Class Q3Socket + size=12 align=4 + base size=12 base align=4 +Q3Socket (0xb1a63700) 0 + vptr=((& Q3Socket::_ZTV8Q3Socket) + 8u) + QIODevice (0xb1a63740) 0 + primary-for Q3Socket (0xb1a63700) + QObject (0xb1a828e8) 0 + primary-for QIODevice (0xb1a63740) + +Vtable for Q3Accel +Q3Accel::_ZTV7Q3Accel: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7Q3Accel) +8 Q3Accel::metaObject +12 Q3Accel::qt_metacast +16 Q3Accel::qt_metacall +20 Q3Accel::~Q3Accel +24 Q3Accel::~Q3Accel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class Q3Accel + size=12 align=4 + base size=12 base align=4 +Q3Accel (0xb1a63a00) 0 + vptr=((& Q3Accel::_ZTV7Q3Accel) + 8u) + QObject (0xb189a744) 0 + primary-for Q3Accel (0xb1a63a00) + +Vtable for Q3BoxLayout +Q3BoxLayout::_ZTV11Q3BoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3BoxLayout) +8 QBoxLayout::metaObject +12 QBoxLayout::qt_metacast +16 QBoxLayout::qt_metacall +20 Q3BoxLayout::~Q3BoxLayout +24 Q3BoxLayout::~Q3BoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11Q3BoxLayout) +132 Q3BoxLayout::_ZThn8_N11Q3BoxLayoutD1Ev +136 Q3BoxLayout::_ZThn8_N11Q3BoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class Q3BoxLayout + size=16 align=4 + base size=16 base align=4 +Q3BoxLayout (0xb1a63c80) 0 + vptr=((& Q3BoxLayout::_ZTV11Q3BoxLayout) + 8u) + QBoxLayout (0xb1a63cc0) 0 + primary-for Q3BoxLayout (0xb1a63c80) + QLayout (0xb18a9500) 0 + primary-for QBoxLayout (0xb1a63cc0) + QObject (0xb18ae21c) 0 + primary-for QLayout (0xb18a9500) + QLayoutItem (0xb18ae258) 8 + vptr=((& Q3BoxLayout::_ZTV11Q3BoxLayout) + 132u) + +Vtable for Q3HBoxLayout +Q3HBoxLayout::_ZTV12Q3HBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3HBoxLayout) +8 QBoxLayout::metaObject +12 QBoxLayout::qt_metacast +16 QBoxLayout::qt_metacall +20 Q3HBoxLayout::~Q3HBoxLayout +24 Q3HBoxLayout::~Q3HBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI12Q3HBoxLayout) +132 Q3HBoxLayout::_ZThn8_N12Q3HBoxLayoutD1Ev +136 Q3HBoxLayout::_ZThn8_N12Q3HBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class Q3HBoxLayout + size=16 align=4 + base size=16 base align=4 +Q3HBoxLayout (0xb18bc100) 0 + vptr=((& Q3HBoxLayout::_ZTV12Q3HBoxLayout) + 8u) + Q3BoxLayout (0xb18bc140) 0 + primary-for Q3HBoxLayout (0xb18bc100) + QBoxLayout (0xb18bc180) 0 + primary-for Q3BoxLayout (0xb18bc140) + QLayout (0xb18c40a0) 0 + primary-for QBoxLayout (0xb18bc180) + QObject (0xb18be474) 0 + primary-for QLayout (0xb18c40a0) + QLayoutItem (0xb18be4b0) 8 + vptr=((& Q3HBoxLayout::_ZTV12Q3HBoxLayout) + 132u) + +Vtable for Q3VBoxLayout +Q3VBoxLayout::_ZTV12Q3VBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3VBoxLayout) +8 QBoxLayout::metaObject +12 QBoxLayout::qt_metacast +16 QBoxLayout::qt_metacall +20 Q3VBoxLayout::~Q3VBoxLayout +24 Q3VBoxLayout::~Q3VBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI12Q3VBoxLayout) +132 Q3VBoxLayout::_ZThn8_N12Q3VBoxLayoutD1Ev +136 Q3VBoxLayout::_ZThn8_N12Q3VBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class Q3VBoxLayout + size=16 align=4 + base size=16 base align=4 +Q3VBoxLayout (0xb18bc800) 0 + vptr=((& Q3VBoxLayout::_ZTV12Q3VBoxLayout) + 8u) + Q3BoxLayout (0xb18bc840) 0 + primary-for Q3VBoxLayout (0xb18bc800) + QBoxLayout (0xb18bc880) 0 + primary-for Q3BoxLayout (0xb18bc840) + QLayout (0xb18c7f50) 0 + primary-for QBoxLayout (0xb18bc880) + QObject (0xb18cf7f8) 0 + primary-for QLayout (0xb18c7f50) + QLayoutItem (0xb18cf834) 8 + vptr=((& Q3VBoxLayout::_ZTV12Q3VBoxLayout) + 132u) + +Vtable for Q3DropSite +Q3DropSite::_ZTV10Q3DropSite: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3DropSite) +8 Q3DropSite::~Q3DropSite +12 Q3DropSite::~Q3DropSite + +Class Q3DropSite + size=4 align=4 + base size=4 base align=4 +Q3DropSite (0xb18e0960) 0 nearly-empty + vptr=((& Q3DropSite::_ZTV10Q3DropSite) + 8u) + +Vtable for Q3GridLayout +Q3GridLayout::_ZTV12Q3GridLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3GridLayout) +8 QGridLayout::metaObject +12 QGridLayout::qt_metacast +16 QGridLayout::qt_metacall +20 Q3GridLayout::~Q3GridLayout +24 Q3GridLayout::~Q3GridLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGridLayout::invalidate +60 QLayout::geometry +64 QGridLayout::addItem +68 QGridLayout::expandingDirections +72 QGridLayout::minimumSize +76 QGridLayout::maximumSize +80 QGridLayout::setGeometry +84 QGridLayout::itemAt +88 QGridLayout::takeAt +92 QLayout::indexOf +96 QGridLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QGridLayout::sizeHint +112 QGridLayout::hasHeightForWidth +116 QGridLayout::heightForWidth +120 QGridLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI12Q3GridLayout) +132 Q3GridLayout::_ZThn8_N12Q3GridLayoutD1Ev +136 Q3GridLayout::_ZThn8_N12Q3GridLayoutD0Ev +140 QGridLayout::_ZThn8_NK11QGridLayout8sizeHintEv +144 QGridLayout::_ZThn8_NK11QGridLayout11minimumSizeEv +148 QGridLayout::_ZThn8_NK11QGridLayout11maximumSizeEv +152 QGridLayout::_ZThn8_NK11QGridLayout19expandingDirectionsEv +156 QGridLayout::_ZThn8_N11QGridLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QGridLayout::_ZThn8_NK11QGridLayout17hasHeightForWidthEv +172 QGridLayout::_ZThn8_NK11QGridLayout14heightForWidthEi +176 QGridLayout::_ZThn8_NK11QGridLayout21minimumHeightForWidthEi +180 QGridLayout::_ZThn8_N11QGridLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class Q3GridLayout + size=16 align=4 + base size=16 base align=4 +Q3GridLayout (0xb18bcd80) 0 + vptr=((& Q3GridLayout::_ZTV12Q3GridLayout) + 8u) + QGridLayout (0xb18bcdc0) 0 + primary-for Q3GridLayout (0xb18bcd80) + QLayout (0xb18dbeb0) 0 + primary-for QGridLayout (0xb18bcdc0) + QObject (0xb18e0b04) 0 + primary-for QLayout (0xb18dbeb0) + QLayoutItem (0xb18e0b40) 8 + vptr=((& Q3GridLayout::_ZTV12Q3GridLayout) + 132u) + +Vtable for Q3MimeSourceFactory +Q3MimeSourceFactory::_ZTV19Q3MimeSourceFactory: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19Q3MimeSourceFactory) +8 Q3MimeSourceFactory::~Q3MimeSourceFactory +12 Q3MimeSourceFactory::~Q3MimeSourceFactory +16 Q3MimeSourceFactory::data +20 Q3MimeSourceFactory::makeAbsolute +24 Q3MimeSourceFactory::setText +28 Q3MimeSourceFactory::setImage +32 Q3MimeSourceFactory::setPixmap +36 Q3MimeSourceFactory::setData +40 Q3MimeSourceFactory::setFilePath +44 Q3MimeSourceFactory::filePath +48 Q3MimeSourceFactory::setExtensionType + +Class Q3MimeSourceFactory + size=8 align=4 + base size=8 base align=4 +Q3MimeSourceFactory (0xb18f3924) 0 + vptr=((& Q3MimeSourceFactory::_ZTV19Q3MimeSourceFactory) + 8u) + +Vtable for Q3PolygonScanner +Q3PolygonScanner::_ZTV16Q3PolygonScanner: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16Q3PolygonScanner) +8 Q3PolygonScanner::~Q3PolygonScanner +12 Q3PolygonScanner::~Q3PolygonScanner +16 __cxa_pure_virtual + +Class Q3PolygonScanner + size=4 align=4 + base size=4 base align=4 +Q3PolygonScanner (0xb18f3d98) 0 nearly-empty + vptr=((& Q3PolygonScanner::_ZTV16Q3PolygonScanner) + 8u) + +Vtable for Q3Process +Q3Process::_ZTV9Q3Process: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3Process) +8 Q3Process::metaObject +12 Q3Process::qt_metacast +16 Q3Process::qt_metacall +20 Q3Process::~Q3Process +24 Q3Process::~Q3Process +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 Q3Process::connectNotify +52 Q3Process::disconnectNotify +56 Q3Process::setArguments +60 Q3Process::addArgument +64 Q3Process::setWorkingDirectory +68 Q3Process::start +72 Q3Process::launch +76 Q3Process::launch +80 Q3Process::readStdout +84 Q3Process::readStderr +88 Q3Process::readLineStdout +92 Q3Process::readLineStderr +96 Q3Process::writeToStdin +100 Q3Process::writeToStdin +104 Q3Process::closeStdin + +Class Q3Process + size=36 align=4 + base size=36 base align=4 +Q3Process (0xb18f63c0) 0 + vptr=((& Q3Process::_ZTV9Q3Process) + 8u) + QObject (0xb19050b4) 0 + primary-for Q3Process (0xb18f63c0) + +Class Q3PaintDeviceMetrics + size=4 align=4 + base size=4 base align=4 +Q3PaintDeviceMetrics (0xb1905c30) 0 + +Class Q3Painter + size=4 align=4 + base size=4 base align=4 +Q3Painter (0xb18f6980) 0 + QPainter (0xb191d780) 0 + +Vtable for Q3Picture +Q3Picture::_ZTV9Q3Picture: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3Picture) +8 Q3Picture::~Q3Picture +12 Q3Picture::~Q3Picture +16 QPicture::devType +20 QPicture::paintEngine +24 QPicture::metric +28 QPicture::setData + +Class Q3Picture + size=12 align=4 + base size=12 base align=4 +Q3Picture (0xb18f6e80) 0 + vptr=((& Q3Picture::_ZTV9Q3Picture) + 8u) + QPicture (0xb18f6ec0) 0 + primary-for Q3Picture (0xb18f6e80) + QPaintDevice (0xb19303fc) 0 + primary-for QPicture (0xb18f6ec0) + +Vtable for Q3SqlCursor +Q3SqlCursor::_ZTV11Q3SqlCursor: 40u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3SqlCursor) +8 Q3SqlCursor::~Q3SqlCursor +12 Q3SqlCursor::~Q3SqlCursor +16 Q3SqlCursor::setValue +20 Q3SqlCursor::primaryIndex +24 Q3SqlCursor::index +28 Q3SqlCursor::setPrimaryIndex +32 Q3SqlCursor::append +36 Q3SqlCursor::insert +40 Q3SqlCursor::remove +44 Q3SqlCursor::clear +48 Q3SqlCursor::setGenerated +52 Q3SqlCursor::setGenerated +56 Q3SqlCursor::editBuffer +60 Q3SqlCursor::primeInsert +64 Q3SqlCursor::primeUpdate +68 Q3SqlCursor::primeDelete +72 Q3SqlCursor::insert +76 Q3SqlCursor::update +80 Q3SqlCursor::del +84 Q3SqlCursor::setMode +88 Q3SqlCursor::setCalculated +92 Q3SqlCursor::setTrimmed +96 Q3SqlCursor::select +100 Q3SqlCursor::setSort +104 Q3SqlCursor::setFilter +108 Q3SqlCursor::setName +112 Q3SqlCursor::seek +116 Q3SqlCursor::next +120 Q3SqlCursor::prev +124 Q3SqlCursor::first +128 Q3SqlCursor::last +132 Q3SqlCursor::exec +136 Q3SqlCursor::calculateField +140 Q3SqlCursor::update +144 Q3SqlCursor::del +148 Q3SqlCursor::toString +152 Q3SqlCursor::toString +156 Q3SqlCursor::toString + +Class Q3SqlCursor + size=16 align=4 + base size=16 base align=4 +Q3SqlCursor (0xb19335a0) 0 + vptr=((& Q3SqlCursor::_ZTV11Q3SqlCursor) + 8u) + QSqlRecord (0xb1930924) 4 + QSqlQuery (0xb1930960) 8 + +Vtable for Q3DataBrowser +Q3DataBrowser::_ZTV13Q3DataBrowser: 91u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13Q3DataBrowser) +8 Q3DataBrowser::metaObject +12 Q3DataBrowser::qt_metacast +16 Q3DataBrowser::qt_metacall +20 Q3DataBrowser::~Q3DataBrowser +24 Q3DataBrowser::~Q3DataBrowser +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3DataBrowser::setSqlCursor +228 Q3DataBrowser::setForm +232 Q3DataBrowser::setConfirmEdits +236 Q3DataBrowser::setConfirmInsert +240 Q3DataBrowser::setConfirmUpdate +244 Q3DataBrowser::setConfirmDelete +248 Q3DataBrowser::setConfirmCancels +252 Q3DataBrowser::setReadOnly +256 Q3DataBrowser::setAutoEdit +260 Q3DataBrowser::seek +264 Q3DataBrowser::refresh +268 Q3DataBrowser::insert +272 Q3DataBrowser::update +276 Q3DataBrowser::del +280 Q3DataBrowser::first +284 Q3DataBrowser::last +288 Q3DataBrowser::next +292 Q3DataBrowser::prev +296 Q3DataBrowser::readFields +300 Q3DataBrowser::writeFields +304 Q3DataBrowser::clearValues +308 Q3DataBrowser::insertCurrent +312 Q3DataBrowser::updateCurrent +316 Q3DataBrowser::deleteCurrent +320 Q3DataBrowser::currentEdited +324 Q3DataBrowser::confirmEdit +328 Q3DataBrowser::confirmCancel +332 Q3DataBrowser::handleError +336 (int (*)(...))-0x000000008 +340 (int (*)(...))(& _ZTI13Q3DataBrowser) +344 Q3DataBrowser::_ZThn8_N13Q3DataBrowserD1Ev +348 Q3DataBrowser::_ZThn8_N13Q3DataBrowserD0Ev +352 QWidget::_ZThn8_NK7QWidget7devTypeEv +356 QWidget::_ZThn8_NK7QWidget11paintEngineEv +360 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DataBrowser + size=24 align=4 + base size=24 base align=4 +Q3DataBrowser (0xb19371c0) 0 + vptr=((& Q3DataBrowser::_ZTV13Q3DataBrowser) + 8u) + QWidget (0xb1945be0) 0 + primary-for Q3DataBrowser (0xb19371c0) + QObject (0xb19465dc) 0 + primary-for QWidget (0xb1945be0) + QPaintDevice (0xb1946618) 8 + vptr=((& Q3DataBrowser::_ZTV13Q3DataBrowser) + 344u) + +Vtable for Q3EditorFactory +Q3EditorFactory::_ZTV15Q3EditorFactory: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15Q3EditorFactory) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 Q3EditorFactory::~Q3EditorFactory +24 Q3EditorFactory::~Q3EditorFactory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3EditorFactory::createEditor + +Class Q3EditorFactory + size=8 align=4 + base size=8 base align=4 +Q3EditorFactory (0xb1937400) 0 + vptr=((& Q3EditorFactory::_ZTV15Q3EditorFactory) + 8u) + QObject (0xb19601a4) 0 + primary-for Q3EditorFactory (0xb1937400) + +Vtable for Q3SqlEditorFactory +Q3SqlEditorFactory::_ZTV18Q3SqlEditorFactory: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18Q3SqlEditorFactory) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 Q3SqlEditorFactory::~Q3SqlEditorFactory +24 Q3SqlEditorFactory::~Q3SqlEditorFactory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3SqlEditorFactory::createEditor +60 Q3SqlEditorFactory::createEditor + +Class Q3SqlEditorFactory + size=8 align=4 + base size=8 base align=4 +Q3SqlEditorFactory (0xb1937440) 0 + vptr=((& Q3SqlEditorFactory::_ZTV18Q3SqlEditorFactory) + 8u) + Q3EditorFactory (0xb1937480) 0 + primary-for Q3SqlEditorFactory (0xb1937440) + QObject (0xb19606cc) 0 + primary-for Q3EditorFactory (0xb1937480) + +Vtable for Q3DataTable +Q3DataTable::_ZTV11Q3DataTable: 214u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3DataTable) +8 Q3DataTable::metaObject +12 Q3DataTable::qt_metacast +16 Q3DataTable::qt_metacall +20 Q3DataTable::~Q3DataTable +24 Q3DataTable::~Q3DataTable +28 QFrame::event +32 Q3DataTable::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3Table::sizeHint +68 Q3ScrollView::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 Q3DataTable::keyPressEvent +104 QWidget::keyReleaseEvent +108 Q3Table::focusInEvent +112 Q3Table::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Table::paintEvent +128 QWidget::moveEvent +132 Q3DataTable::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 Q3Table::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 Q3Table::inputMethodQuery +196 Q3ScrollView::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 Q3Table::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3DataTable::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ScrollView::setContentsPos +272 Q3DataTable::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3DataTable::contentsMousePressEvent +284 Q3Table::contentsMouseReleaseEvent +288 Q3Table::contentsMouseDoubleClickEvent +292 Q3Table::contentsMouseMoveEvent +296 Q3Table::contentsDragEnterEvent +300 Q3Table::contentsDragMoveEvent +304 Q3Table::contentsDragLeaveEvent +308 Q3Table::contentsDropEvent +312 Q3ScrollView::contentsWheelEvent +316 Q3DataTable::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3Table::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 Q3Table::setSelectionMode +384 Q3DataTable::setItem +388 Q3Table::setText +392 Q3DataTable::setPixmap +396 Q3DataTable::item +400 Q3DataTable::text +404 Q3Table::pixmap +408 Q3DataTable::clearCell +412 Q3Table::cellGeometry +416 Q3Table::columnWidth +420 Q3Table::rowHeight +424 Q3Table::columnPos +428 Q3Table::rowPos +432 Q3Table::columnAt +436 Q3Table::rowAt +440 Q3DataTable::numRows +444 Q3DataTable::numCols +448 Q3Table::addSelection +452 Q3Table::removeSelection +456 Q3Table::removeSelection +460 Q3Table::currentSelection +464 Q3DataTable::selectRow +468 Q3Table::selectColumn +472 Q3DataTable::sortColumn +476 Q3DataTable::takeItem +480 Q3Table::setCellWidget +484 Q3Table::cellWidget +488 Q3Table::clearCellWidget +492 Q3Table::cellRect +496 Q3Table::paintCell +500 Q3DataTable::paintCell +504 Q3Table::paintFocus +508 Q3Table::setFocusStyle +512 Q3DataTable::setNumRows +516 Q3DataTable::setNumCols +520 Q3Table::setShowGrid +524 Q3Table::hideRow +528 Q3DataTable::hideColumn +532 Q3Table::showRow +536 Q3DataTable::showColumn +540 Q3DataTable::setColumnWidth +544 Q3Table::setRowHeight +548 Q3DataTable::adjustColumn +552 Q3Table::adjustRow +556 Q3DataTable::setColumnStretchable +560 Q3Table::setRowStretchable +564 Q3Table::setSorting +568 Q3Table::swapRows +572 Q3DataTable::swapColumns +576 Q3Table::swapCells +580 Q3Table::setLeftMargin +584 Q3Table::setTopMargin +588 Q3Table::setCurrentCell +592 Q3Table::setColumnMovingEnabled +596 Q3Table::setRowMovingEnabled +600 Q3Table::setReadOnly +604 Q3Table::setRowReadOnly +608 Q3Table::setColumnReadOnly +612 Q3Table::setDragEnabled +616 Q3Table::insertRows +620 Q3Table::insertColumns +624 Q3Table::removeRow +628 Q3Table::removeRows +632 Q3DataTable::removeColumn +636 Q3Table::removeColumns +640 Q3Table::editCell +644 Q3Table::dragObject +648 Q3Table::startDrag +652 Q3Table::paintEmptyArea +656 Q3DataTable::activateNextCell +660 Q3DataTable::createEditor +664 Q3Table::setCellContentFromEditor +668 Q3DataTable::beginEdit +672 Q3DataTable::endEdit +676 Q3DataTable::resizeData +680 Q3Table::insertWidget +684 Q3Table::columnWidthChanged +688 Q3Table::rowHeightChanged +692 Q3Table::columnIndexChanged +696 Q3Table::rowIndexChanged +700 Q3DataTable::columnClicked +704 Q3DataTable::addColumn +708 Q3DataTable::setColumn +712 Q3DataTable::setSqlCursor +716 Q3DataTable::setNullText +720 Q3DataTable::setTrueText +724 Q3DataTable::setFalseText +728 Q3DataTable::setDateFormat +732 Q3DataTable::setConfirmEdits +736 Q3DataTable::setConfirmInsert +740 Q3DataTable::setConfirmUpdate +744 Q3DataTable::setConfirmDelete +748 Q3DataTable::setConfirmCancels +752 Q3DataTable::setAutoDelete +756 Q3DataTable::setAutoEdit +760 Q3DataTable::setFilter +764 Q3DataTable::setSort +768 Q3DataTable::setSort +772 Q3DataTable::find +776 Q3DataTable::sortAscending +780 Q3DataTable::sortDescending +784 Q3DataTable::refresh +788 Q3DataTable::insertCurrent +792 Q3DataTable::updateCurrent +796 Q3DataTable::deleteCurrent +800 Q3DataTable::confirmEdit +804 Q3DataTable::confirmCancel +808 Q3DataTable::handleError +812 Q3DataTable::beginInsert +816 Q3DataTable::beginUpdate +820 Q3DataTable::paintField +824 Q3DataTable::fieldAlignment +828 (int (*)(...))-0x000000008 +832 (int (*)(...))(& _ZTI11Q3DataTable) +836 Q3DataTable::_ZThn8_N11Q3DataTableD1Ev +840 Q3DataTable::_ZThn8_N11Q3DataTableD0Ev +844 QWidget::_ZThn8_NK7QWidget7devTypeEv +848 QWidget::_ZThn8_NK7QWidget11paintEngineEv +852 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DataTable + size=248 align=4 + base size=248 base align=4 +Q3DataTable (0xb1937500) 0 + vptr=((& Q3DataTable::_ZTV11Q3DataTable) + 8u) + Q3Table (0xb1937540) 0 + primary-for Q3DataTable (0xb1937500) + Q3ScrollView (0xb1937580) 0 + primary-for Q3Table (0xb1937540) + Q3Frame (0xb19375c0) 0 + primary-for Q3ScrollView (0xb1937580) + QFrame (0xb1937600) 0 + primary-for Q3Frame (0xb19375c0) + QWidget (0xb19681e0) 0 + primary-for QFrame (0xb1937600) + QObject (0xb1960bf4) 0 + primary-for QWidget (0xb19681e0) + QPaintDevice (0xb1960c30) 8 + vptr=((& Q3DataTable::_ZTV11Q3DataTable) + 836u) + +Vtable for Q3DataView +Q3DataView::_ZTV10Q3DataView: 69u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3DataView) +8 Q3DataView::metaObject +12 Q3DataView::qt_metacast +16 Q3DataView::qt_metacall +20 Q3DataView::~Q3DataView +24 Q3DataView::~Q3DataView +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3DataView::setForm +228 Q3DataView::setRecord +232 Q3DataView::refresh +236 Q3DataView::readFields +240 Q3DataView::writeFields +244 Q3DataView::clearValues +248 (int (*)(...))-0x000000008 +252 (int (*)(...))(& _ZTI10Q3DataView) +256 Q3DataView::_ZThn8_N10Q3DataViewD1Ev +260 Q3DataView::_ZThn8_N10Q3DataViewD0Ev +264 QWidget::_ZThn8_NK7QWidget7devTypeEv +268 QWidget::_ZThn8_NK7QWidget11paintEngineEv +272 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DataView + size=24 align=4 + base size=24 base align=4 +Q3DataView (0xb1937880) 0 + vptr=((& Q3DataView::_ZTV10Q3DataView) + 8u) + QWidget (0xb178b230) 0 + primary-for Q3DataView (0xb1937880) + QObject (0xb197ea14) 0 + primary-for QWidget (0xb178b230) + QPaintDevice (0xb197ea50) 8 + vptr=((& Q3DataView::_ZTV10Q3DataView) + 256u) + +Vtable for Q3SqlFieldInfo +Q3SqlFieldInfo::_ZTV14Q3SqlFieldInfo: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3SqlFieldInfo) +8 Q3SqlFieldInfo::~Q3SqlFieldInfo +12 Q3SqlFieldInfo::~Q3SqlFieldInfo +16 Q3SqlFieldInfo::setTrim +20 Q3SqlFieldInfo::setGenerated +24 Q3SqlFieldInfo::setCalculated + +Class Q3SqlFieldInfo + size=44 align=4 + base size=44 base align=4 +Q3SqlFieldInfo (0xb1796438) 0 + vptr=((& Q3SqlFieldInfo::_ZTV14Q3SqlFieldInfo) + 8u) + +Vtable for Q3SqlForm +Q3SqlForm::_ZTV9Q3SqlForm: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3SqlForm) +8 Q3SqlForm::metaObject +12 Q3SqlForm::qt_metacast +16 Q3SqlForm::qt_metacall +20 Q3SqlForm::~Q3SqlForm +24 Q3SqlForm::~Q3SqlForm +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3SqlForm::insert +60 Q3SqlForm::remove +64 Q3SqlForm::setRecord +68 Q3SqlForm::readField +72 Q3SqlForm::writeField +76 Q3SqlForm::readFields +80 Q3SqlForm::writeFields +84 Q3SqlForm::clear +88 Q3SqlForm::clearValues +92 Q3SqlForm::insert +96 Q3SqlForm::remove +100 Q3SqlForm::sync + +Class Q3SqlForm + size=12 align=4 + base size=12 base align=4 +Q3SqlForm (0xb17c61c0) 0 + vptr=((& Q3SqlForm::_ZTV9Q3SqlForm) + 8u) + QObject (0xb17c8618) 0 + primary-for Q3SqlForm (0xb17c61c0) + +Vtable for Q3SqlPropertyMap +Q3SqlPropertyMap::_ZTV16Q3SqlPropertyMap: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16Q3SqlPropertyMap) +8 Q3SqlPropertyMap::~Q3SqlPropertyMap +12 Q3SqlPropertyMap::~Q3SqlPropertyMap +16 Q3SqlPropertyMap::setProperty + +Class Q3SqlPropertyMap + size=8 align=4 + base size=8 base align=4 +Q3SqlPropertyMap (0xb17c8a50) 0 + vptr=((& Q3SqlPropertyMap::_ZTV16Q3SqlPropertyMap) + 8u) + +Class QLinkedList:: + size=4 align=4 + base size=4 base align=4 +QLinkedList:: (0xb17d54ec) 0 + +Class QLinkedList + size=4 align=4 + base size=4 base align=4 +QLinkedList (0xb17d5474) 0 + +Class Q3ValueList + size=4 align=4 + base size=4 base align=4 +Q3ValueList (0xb17c64c0) 0 + QLinkedList (0xb17d5528) 0 + +Class Q3SqlRecordInfo + size=4 align=4 + base size=4 base align=4 +Q3SqlRecordInfo (0xb17c6540) 0 + Q3ValueList (0xb17c6580) 0 + QLinkedList (0xb17d55dc) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb17d59d8) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb17d5960) 0 + +Class QLinkedList::const_iterator + size=4 align=4 + base size=4 base align=4 +QLinkedList::const_iterator (0xb18100b4) 0 + +Class Q3ValueListConstIterator + size=4 align=4 + base size=4 base align=4 +Q3ValueListConstIterator (0xb17c6ac0) 0 + QLinkedList::const_iterator (0xb18100f0) 0 + +Class QLinkedList::iterator + size=4 align=4 + base size=4 base align=4 +QLinkedList::iterator (0xb1810168) 0 + +Vtable for Q3SqlSelectCursor +Q3SqlSelectCursor::_ZTV17Q3SqlSelectCursor: 40u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17Q3SqlSelectCursor) +8 Q3SqlSelectCursor::~Q3SqlSelectCursor +12 Q3SqlSelectCursor::~Q3SqlSelectCursor +16 Q3SqlCursor::setValue +20 Q3SqlSelectCursor::primaryIndex +24 Q3SqlSelectCursor::index +28 Q3SqlSelectCursor::setPrimaryIndex +32 Q3SqlSelectCursor::append +36 Q3SqlSelectCursor::insert +40 Q3SqlSelectCursor::remove +44 Q3SqlSelectCursor::clear +48 Q3SqlSelectCursor::setGenerated +52 Q3SqlSelectCursor::setGenerated +56 Q3SqlSelectCursor::editBuffer +60 Q3SqlSelectCursor::primeInsert +64 Q3SqlSelectCursor::primeUpdate +68 Q3SqlSelectCursor::primeDelete +72 Q3SqlSelectCursor::insert +76 Q3SqlSelectCursor::update +80 Q3SqlSelectCursor::del +84 Q3SqlSelectCursor::setMode +88 Q3SqlCursor::setCalculated +92 Q3SqlCursor::setTrimmed +96 Q3SqlSelectCursor::select +100 Q3SqlSelectCursor::setSort +104 Q3SqlSelectCursor::setFilter +108 Q3SqlSelectCursor::setName +112 Q3SqlCursor::seek +116 Q3SqlCursor::next +120 Q3SqlCursor::prev +124 Q3SqlCursor::first +128 Q3SqlCursor::last +132 Q3SqlSelectCursor::exec +136 Q3SqlCursor::calculateField +140 Q3SqlCursor::update +144 Q3SqlCursor::del +148 Q3SqlCursor::toString +152 Q3SqlCursor::toString +156 Q3SqlCursor::toString + +Class Q3SqlSelectCursor + size=20 align=4 + base size=20 base align=4 +Q3SqlSelectCursor (0xb1840000) 0 + vptr=((& Q3SqlSelectCursor::_ZTV17Q3SqlSelectCursor) + 8u) + Q3SqlCursor (0xb181caf0) 0 + primary-for Q3SqlSelectCursor (0xb1840000) + QSqlRecord (0xb18107f8) 4 + QSqlQuery (0xb1810834) 8 + +Class Q3StyleSheetItem + size=4 align=4 + base size=4 base align=4 +Q3StyleSheetItem (0xb184fd20) 0 + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb185fa50) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb185f9d8) 0 + +Vtable for Q3StyleSheet +Q3StyleSheet::_ZTV12Q3StyleSheet: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3StyleSheet) +8 Q3StyleSheet::metaObject +12 Q3StyleSheet::qt_metacast +16 Q3StyleSheet::qt_metacall +20 Q3StyleSheet::~Q3StyleSheet +24 Q3StyleSheet::~Q3StyleSheet +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3StyleSheet::scaleFont +60 Q3StyleSheet::error + +Class Q3StyleSheet + size=16 align=4 + base size=16 base align=4 +Q3StyleSheet (0xb1840780) 0 + vptr=((& Q3StyleSheet::_ZTV12Q3StyleSheet) + 8u) + QObject (0xb185f4b0) 0 + primary-for Q3StyleSheet (0xb1840780) + +Class Q3TextEditOptimPrivate::Tag + size=32 align=4 + base size=32 base align=4 +Q3TextEditOptimPrivate::Tag (0xb187e0f0) 0 + +Class Q3TextEditOptimPrivate::Selection + size=8 align=4 + base size=8 base align=4 +Q3TextEditOptimPrivate::Selection (0xb187e564) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb187e7bc) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb187e744) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb187eb40) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb187eac8) 0 + +Class Q3TextEditOptimPrivate + size=52 align=4 + base size=52 base align=4 +Q3TextEditOptimPrivate (0xb187e0b4) 0 + +Class Q3TextEdit::UndoRedoInfo + size=40 align=4 + base size=40 base align=4 +Q3TextEdit::UndoRedoInfo (0xb169bbf4) 0 + +Vtable for Q3TextEdit +Q3TextEdit::_ZTV10Q3TextEdit: 175u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3TextEdit) +8 Q3TextEdit::metaObject +12 Q3TextEdit::qt_metacast +16 Q3TextEdit::qt_metacall +20 Q3TextEdit::~Q3TextEdit +24 Q3TextEdit::~Q3TextEdit +28 Q3TextEdit::event +32 Q3TextEdit::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3TextEdit::sizeHint +68 Q3ScrollView::minimumSizeHint +72 Q3TextEdit::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 Q3TextEdit::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3TextEdit::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3TextEdit::changeEvent +184 QWidget::metric +188 Q3TextEdit::inputMethodEvent +192 Q3TextEdit::inputMethodQuery +196 Q3TextEdit::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3TextEdit::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ScrollView::setContentsPos +272 Q3TextEdit::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3TextEdit::contentsMousePressEvent +284 Q3TextEdit::contentsMouseReleaseEvent +288 Q3TextEdit::contentsMouseDoubleClickEvent +292 Q3TextEdit::contentsMouseMoveEvent +296 Q3TextEdit::contentsDragEnterEvent +300 Q3TextEdit::contentsDragMoveEvent +304 Q3TextEdit::contentsDragLeaveEvent +308 Q3TextEdit::contentsDropEvent +312 Q3TextEdit::contentsWheelEvent +316 Q3TextEdit::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3TextEdit::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 Q3TextEdit::find +384 Q3TextEdit::getFormat +388 Q3TextEdit::getParagraphFormat +392 Q3TextEdit::setMimeSourceFactory +396 Q3TextEdit::setStyleSheet +400 Q3TextEdit::scrollToAnchor +404 Q3TextEdit::setPaper +408 Q3TextEdit::setLinkUnderline +412 Q3TextEdit::setWordWrap +416 Q3TextEdit::setWrapColumnOrWidth +420 Q3TextEdit::setWrapPolicy +424 Q3TextEdit::copy +428 Q3TextEdit::append +432 Q3TextEdit::setText +436 Q3TextEdit::setTextFormat +440 Q3TextEdit::selectAll +444 Q3TextEdit::setTabStopWidth +448 Q3TextEdit::zoomIn +452 Q3TextEdit::zoomIn +456 Q3TextEdit::zoomOut +460 Q3TextEdit::zoomOut +464 Q3TextEdit::zoomTo +468 Q3TextEdit::sync +472 Q3TextEdit::setReadOnly +476 Q3TextEdit::undo +480 Q3TextEdit::redo +484 Q3TextEdit::cut +488 Q3TextEdit::paste +492 Q3TextEdit::pasteSubType +496 Q3TextEdit::clear +500 Q3TextEdit::del +504 Q3TextEdit::indent +508 Q3TextEdit::setItalic +512 Q3TextEdit::setBold +516 Q3TextEdit::setUnderline +520 Q3TextEdit::setFamily +524 Q3TextEdit::setPointSize +528 Q3TextEdit::setColor +532 Q3TextEdit::setVerticalAlignment +536 Q3TextEdit::setAlignment +540 Q3TextEdit::setParagType +544 Q3TextEdit::setCursorPosition +548 Q3TextEdit::setSelection +552 Q3TextEdit::setSelectionAttributes +556 Q3TextEdit::setModified +560 Q3TextEdit::resetFormat +564 Q3TextEdit::setUndoDepth +568 Q3TextEdit::setFormat +572 Q3TextEdit::ensureCursorVisible +576 Q3TextEdit::placeCursor +580 Q3TextEdit::moveCursor +584 Q3TextEdit::doKeyboardAction +588 Q3TextEdit::removeSelectedText +592 Q3TextEdit::removeSelection +596 Q3TextEdit::setCurrentFont +600 Q3TextEdit::setOverwriteMode +604 Q3TextEdit::scrollToBottom +608 Q3TextEdit::insert +612 Q3TextEdit::insert +616 Q3TextEdit::insertAt +620 Q3TextEdit::removeParagraph +624 Q3TextEdit::insertParagraph +628 Q3TextEdit::setParagraphBackgroundColor +632 Q3TextEdit::clearParagraphBackground +636 Q3TextEdit::setUndoRedoEnabled +640 Q3TextEdit::setTabChangesFocus +644 Q3TextEdit::createPopupMenu +648 Q3TextEdit::createPopupMenu +652 Q3TextEdit::doChangeInterval +656 Q3TextEdit::sliderReleased +660 Q3TextEdit::linksEnabled +664 Q3TextEdit::emitHighlighted +668 Q3TextEdit::emitLinkClicked +672 (int (*)(...))-0x000000008 +676 (int (*)(...))(& _ZTI10Q3TextEdit) +680 Q3TextEdit::_ZThn8_N10Q3TextEditD1Ev +684 Q3TextEdit::_ZThn8_N10Q3TextEditD0Ev +688 QWidget::_ZThn8_NK7QWidget7devTypeEv +692 QWidget::_ZThn8_NK7QWidget11paintEngineEv +696 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TextEdit + size=164 align=4 + base size=162 base align=4 +Q3TextEdit (0xb16961c0) 0 + vptr=((& Q3TextEdit::_ZTV10Q3TextEdit) + 8u) + Q3ScrollView (0xb1696200) 0 + primary-for Q3TextEdit (0xb16961c0) + Q3Frame (0xb1696240) 0 + primary-for Q3ScrollView (0xb1696200) + QFrame (0xb1696280) 0 + primary-for Q3Frame (0xb1696240) + QWidget (0xb16991e0) 0 + primary-for QFrame (0xb1696280) + QObject (0xb1690f00) 0 + primary-for QWidget (0xb16991e0) + QPaintDevice (0xb1690f3c) 8 + vptr=((& Q3TextEdit::_ZTV10Q3TextEdit) + 680u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb16d63fc) 0 + +Vtable for Q3MultiLineEdit +Q3MultiLineEdit::_ZTV15Q3MultiLineEdit: 192u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15Q3MultiLineEdit) +8 Q3MultiLineEdit::metaObject +12 Q3MultiLineEdit::qt_metacast +16 Q3MultiLineEdit::qt_metacall +20 Q3MultiLineEdit::~Q3MultiLineEdit +24 Q3MultiLineEdit::~Q3MultiLineEdit +28 Q3TextEdit::event +32 Q3TextEdit::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3TextEdit::sizeHint +68 Q3ScrollView::minimumSizeHint +72 Q3TextEdit::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 Q3TextEdit::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3TextEdit::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3TextEdit::changeEvent +184 QWidget::metric +188 Q3TextEdit::inputMethodEvent +192 Q3TextEdit::inputMethodQuery +196 Q3TextEdit::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3TextEdit::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ScrollView::setContentsPos +272 Q3TextEdit::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3TextEdit::contentsMousePressEvent +284 Q3TextEdit::contentsMouseReleaseEvent +288 Q3TextEdit::contentsMouseDoubleClickEvent +292 Q3TextEdit::contentsMouseMoveEvent +296 Q3TextEdit::contentsDragEnterEvent +300 Q3TextEdit::contentsDragMoveEvent +304 Q3TextEdit::contentsDragLeaveEvent +308 Q3TextEdit::contentsDropEvent +312 Q3TextEdit::contentsWheelEvent +316 Q3TextEdit::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3TextEdit::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 Q3TextEdit::find +384 Q3TextEdit::getFormat +388 Q3TextEdit::getParagraphFormat +392 Q3TextEdit::setMimeSourceFactory +396 Q3TextEdit::setStyleSheet +400 Q3TextEdit::scrollToAnchor +404 Q3TextEdit::setPaper +408 Q3TextEdit::setLinkUnderline +412 Q3TextEdit::setWordWrap +416 Q3TextEdit::setWrapColumnOrWidth +420 Q3TextEdit::setWrapPolicy +424 Q3TextEdit::copy +428 Q3TextEdit::append +432 Q3TextEdit::setText +436 Q3TextEdit::setTextFormat +440 Q3TextEdit::selectAll +444 Q3TextEdit::setTabStopWidth +448 Q3TextEdit::zoomIn +452 Q3TextEdit::zoomIn +456 Q3TextEdit::zoomOut +460 Q3TextEdit::zoomOut +464 Q3TextEdit::zoomTo +468 Q3TextEdit::sync +472 Q3TextEdit::setReadOnly +476 Q3TextEdit::undo +480 Q3TextEdit::redo +484 Q3TextEdit::cut +488 Q3TextEdit::paste +492 Q3TextEdit::pasteSubType +496 Q3TextEdit::clear +500 Q3TextEdit::del +504 Q3TextEdit::indent +508 Q3TextEdit::setItalic +512 Q3TextEdit::setBold +516 Q3TextEdit::setUnderline +520 Q3TextEdit::setFamily +524 Q3TextEdit::setPointSize +528 Q3TextEdit::setColor +532 Q3TextEdit::setVerticalAlignment +536 Q3TextEdit::setAlignment +540 Q3TextEdit::setParagType +544 Q3MultiLineEdit::setCursorPosition +548 Q3TextEdit::setSelection +552 Q3TextEdit::setSelectionAttributes +556 Q3TextEdit::setModified +560 Q3TextEdit::resetFormat +564 Q3TextEdit::setUndoDepth +568 Q3TextEdit::setFormat +572 Q3TextEdit::ensureCursorVisible +576 Q3TextEdit::placeCursor +580 Q3TextEdit::moveCursor +584 Q3TextEdit::doKeyboardAction +588 Q3TextEdit::removeSelectedText +592 Q3TextEdit::removeSelection +596 Q3TextEdit::setCurrentFont +600 Q3TextEdit::setOverwriteMode +604 Q3TextEdit::scrollToBottom +608 Q3TextEdit::insert +612 Q3TextEdit::insert +616 Q3MultiLineEdit::insertAt +620 Q3TextEdit::removeParagraph +624 Q3TextEdit::insertParagraph +628 Q3TextEdit::setParagraphBackgroundColor +632 Q3TextEdit::clearParagraphBackground +636 Q3TextEdit::setUndoRedoEnabled +640 Q3TextEdit::setTabChangesFocus +644 Q3TextEdit::createPopupMenu +648 Q3TextEdit::createPopupMenu +652 Q3TextEdit::doChangeInterval +656 Q3TextEdit::sliderReleased +660 Q3TextEdit::linksEnabled +664 Q3TextEdit::emitHighlighted +668 Q3TextEdit::emitLinkClicked +672 Q3MultiLineEdit::insertLine +676 Q3MultiLineEdit::insertAt +680 Q3MultiLineEdit::removeLine +684 Q3MultiLineEdit::setCursorPosition +688 Q3MultiLineEdit::setAutoUpdate +692 Q3MultiLineEdit::insertAndMark +696 Q3MultiLineEdit::newLine +700 Q3MultiLineEdit::killLine +704 Q3MultiLineEdit::pageUp +708 Q3MultiLineEdit::pageDown +712 Q3MultiLineEdit::cursorLeft +716 Q3MultiLineEdit::cursorRight +720 Q3MultiLineEdit::cursorUp +724 Q3MultiLineEdit::cursorDown +728 Q3MultiLineEdit::backspace +732 Q3MultiLineEdit::home +736 Q3MultiLineEdit::end +740 (int (*)(...))-0x000000008 +744 (int (*)(...))(& _ZTI15Q3MultiLineEdit) +748 Q3MultiLineEdit::_ZThn8_N15Q3MultiLineEditD1Ev +752 Q3MultiLineEdit::_ZThn8_N15Q3MultiLineEditD0Ev +756 QWidget::_ZThn8_NK7QWidget7devTypeEv +760 QWidget::_ZThn8_NK7QWidget11paintEngineEv +764 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3MultiLineEdit + size=168 align=4 + base size=168 base align=4 +Q3MultiLineEdit (0xb1696900) 0 + vptr=((& Q3MultiLineEdit::_ZTV15Q3MultiLineEdit) + 8u) + Q3TextEdit (0xb1696940) 0 + primary-for Q3MultiLineEdit (0xb1696900) + Q3ScrollView (0xb1696980) 0 + primary-for Q3TextEdit (0xb1696940) + Q3Frame (0xb16969c0) 0 + primary-for Q3ScrollView (0xb1696980) + QFrame (0xb1696a00) 0 + primary-for Q3Frame (0xb16969c0) + QWidget (0xb16f9370) 0 + primary-for QFrame (0xb1696a00) + QObject (0xb16fa384) 0 + primary-for QWidget (0xb16f9370) + QPaintDevice (0xb16fa3c0) 8 + vptr=((& Q3MultiLineEdit::_ZTV15Q3MultiLineEdit) + 748u) + +Class Q3SimpleRichText + size=4 align=4 + base size=4 base align=4 +Q3SimpleRichText (0xb1717474) 0 + +Vtable for Q3SyntaxHighlighter +Q3SyntaxHighlighter::_ZTV19Q3SyntaxHighlighter: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19Q3SyntaxHighlighter) +8 Q3SyntaxHighlighter::~Q3SyntaxHighlighter +12 Q3SyntaxHighlighter::~Q3SyntaxHighlighter +16 __cxa_pure_virtual + +Class Q3SyntaxHighlighter + size=16 align=4 + base size=16 base align=4 +Q3SyntaxHighlighter (0xb1717834) 0 + vptr=((& Q3SyntaxHighlighter::_ZTV19Q3SyntaxHighlighter) + 8u) + +Vtable for Q3TextBrowser +Q3TextBrowser::_ZTV13Q3TextBrowser: 180u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13Q3TextBrowser) +8 Q3TextBrowser::metaObject +12 Q3TextBrowser::qt_metacast +16 Q3TextBrowser::qt_metacall +20 Q3TextBrowser::~Q3TextBrowser +24 Q3TextBrowser::~Q3TextBrowser +28 Q3TextEdit::event +32 Q3TextEdit::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3TextEdit::sizeHint +68 Q3ScrollView::minimumSizeHint +72 Q3TextEdit::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 Q3TextBrowser::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3TextEdit::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3TextEdit::changeEvent +184 QWidget::metric +188 Q3TextEdit::inputMethodEvent +192 Q3TextEdit::inputMethodQuery +196 Q3TextEdit::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3TextEdit::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ScrollView::setContentsPos +272 Q3TextEdit::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3TextEdit::contentsMousePressEvent +284 Q3TextEdit::contentsMouseReleaseEvent +288 Q3TextEdit::contentsMouseDoubleClickEvent +292 Q3TextEdit::contentsMouseMoveEvent +296 Q3TextEdit::contentsDragEnterEvent +300 Q3TextEdit::contentsDragMoveEvent +304 Q3TextEdit::contentsDragLeaveEvent +308 Q3TextEdit::contentsDropEvent +312 Q3TextEdit::contentsWheelEvent +316 Q3TextEdit::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3TextEdit::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 Q3TextEdit::find +384 Q3TextEdit::getFormat +388 Q3TextEdit::getParagraphFormat +392 Q3TextEdit::setMimeSourceFactory +396 Q3TextEdit::setStyleSheet +400 Q3TextEdit::scrollToAnchor +404 Q3TextEdit::setPaper +408 Q3TextEdit::setLinkUnderline +412 Q3TextEdit::setWordWrap +416 Q3TextEdit::setWrapColumnOrWidth +420 Q3TextEdit::setWrapPolicy +424 Q3TextEdit::copy +428 Q3TextEdit::append +432 Q3TextBrowser::setText +436 Q3TextEdit::setTextFormat +440 Q3TextEdit::selectAll +444 Q3TextEdit::setTabStopWidth +448 Q3TextEdit::zoomIn +452 Q3TextEdit::zoomIn +456 Q3TextEdit::zoomOut +460 Q3TextEdit::zoomOut +464 Q3TextEdit::zoomTo +468 Q3TextEdit::sync +472 Q3TextEdit::setReadOnly +476 Q3TextEdit::undo +480 Q3TextEdit::redo +484 Q3TextEdit::cut +488 Q3TextEdit::paste +492 Q3TextEdit::pasteSubType +496 Q3TextEdit::clear +500 Q3TextEdit::del +504 Q3TextEdit::indent +508 Q3TextEdit::setItalic +512 Q3TextEdit::setBold +516 Q3TextEdit::setUnderline +520 Q3TextEdit::setFamily +524 Q3TextEdit::setPointSize +528 Q3TextEdit::setColor +532 Q3TextEdit::setVerticalAlignment +536 Q3TextEdit::setAlignment +540 Q3TextEdit::setParagType +544 Q3TextEdit::setCursorPosition +548 Q3TextEdit::setSelection +552 Q3TextEdit::setSelectionAttributes +556 Q3TextEdit::setModified +560 Q3TextEdit::resetFormat +564 Q3TextEdit::setUndoDepth +568 Q3TextEdit::setFormat +572 Q3TextEdit::ensureCursorVisible +576 Q3TextEdit::placeCursor +580 Q3TextEdit::moveCursor +584 Q3TextEdit::doKeyboardAction +588 Q3TextEdit::removeSelectedText +592 Q3TextEdit::removeSelection +596 Q3TextEdit::setCurrentFont +600 Q3TextEdit::setOverwriteMode +604 Q3TextEdit::scrollToBottom +608 Q3TextEdit::insert +612 Q3TextEdit::insert +616 Q3TextEdit::insertAt +620 Q3TextEdit::removeParagraph +624 Q3TextEdit::insertParagraph +628 Q3TextEdit::setParagraphBackgroundColor +632 Q3TextEdit::clearParagraphBackground +636 Q3TextEdit::setUndoRedoEnabled +640 Q3TextEdit::setTabChangesFocus +644 Q3TextEdit::createPopupMenu +648 Q3TextEdit::createPopupMenu +652 Q3TextEdit::doChangeInterval +656 Q3TextEdit::sliderReleased +660 Q3TextBrowser::linksEnabled +664 Q3TextBrowser::emitHighlighted +668 Q3TextBrowser::emitLinkClicked +672 Q3TextBrowser::setSource +676 Q3TextBrowser::backward +680 Q3TextBrowser::forward +684 Q3TextBrowser::home +688 Q3TextBrowser::reload +692 (int (*)(...))-0x000000008 +696 (int (*)(...))(& _ZTI13Q3TextBrowser) +700 Q3TextBrowser::_ZThn8_N13Q3TextBrowserD1Ev +704 Q3TextBrowser::_ZThn8_N13Q3TextBrowserD0Ev +708 QWidget::_ZThn8_NK7QWidget7devTypeEv +712 QWidget::_ZThn8_NK7QWidget11paintEngineEv +716 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TextBrowser + size=168 align=4 + base size=168 base align=4 +Q3TextBrowser (0xb1696f80) 0 + vptr=((& Q3TextBrowser::_ZTV13Q3TextBrowser) + 8u) + Q3TextEdit (0xb1696fc0) 0 + primary-for Q3TextBrowser (0xb1696f80) + Q3ScrollView (0xb1722000) 0 + primary-for Q3TextEdit (0xb1696fc0) + Q3Frame (0xb1722040) 0 + primary-for Q3ScrollView (0xb1722000) + QFrame (0xb1722080) 0 + primary-for Q3Frame (0xb1722040) + QWidget (0xb17218c0) 0 + primary-for QFrame (0xb1722080) + QObject (0xb1717ac8) 0 + primary-for QWidget (0xb17218c0) + QPaintDevice (0xb1717b04) 8 + vptr=((& Q3TextBrowser::_ZTV13Q3TextBrowser) + 700u) + +Class Q3CString + size=4 align=4 + base size=4 base align=4 +Q3CString (0xb1722340) 0 + QByteArray (0xb1731618) 0 + +Vtable for Q3TextStream +Q3TextStream::_ZTV12Q3TextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3TextStream) +8 Q3TextStream::~Q3TextStream +12 Q3TextStream::~Q3TextStream + +Class Q3TextStream + size=104 align=4 + base size=104 base align=4 +Q3TextStream (0xb15937f8) 0 + vptr=((& Q3TextStream::_ZTV12Q3TextStream) + 8u) + +Class Q3TSManip + size=12 align=4 + base size=12 base align=4 +Q3TSManip (0xb15badd4) 0 + +Vtable for Q3TextView +Q3TextView::_ZTV10Q3TextView: 175u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3TextView) +8 Q3TextView::metaObject +12 Q3TextView::qt_metacast +16 Q3TextView::qt_metacall +20 Q3TextView::~Q3TextView +24 Q3TextView::~Q3TextView +28 Q3TextEdit::event +32 Q3TextEdit::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3TextEdit::sizeHint +68 Q3ScrollView::minimumSizeHint +72 Q3TextEdit::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 Q3TextEdit::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3TextEdit::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3TextEdit::changeEvent +184 QWidget::metric +188 Q3TextEdit::inputMethodEvent +192 Q3TextEdit::inputMethodQuery +196 Q3TextEdit::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3TextEdit::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ScrollView::setContentsPos +272 Q3TextEdit::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3TextEdit::contentsMousePressEvent +284 Q3TextEdit::contentsMouseReleaseEvent +288 Q3TextEdit::contentsMouseDoubleClickEvent +292 Q3TextEdit::contentsMouseMoveEvent +296 Q3TextEdit::contentsDragEnterEvent +300 Q3TextEdit::contentsDragMoveEvent +304 Q3TextEdit::contentsDragLeaveEvent +308 Q3TextEdit::contentsDropEvent +312 Q3TextEdit::contentsWheelEvent +316 Q3TextEdit::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3TextEdit::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 Q3TextEdit::find +384 Q3TextEdit::getFormat +388 Q3TextEdit::getParagraphFormat +392 Q3TextEdit::setMimeSourceFactory +396 Q3TextEdit::setStyleSheet +400 Q3TextEdit::scrollToAnchor +404 Q3TextEdit::setPaper +408 Q3TextEdit::setLinkUnderline +412 Q3TextEdit::setWordWrap +416 Q3TextEdit::setWrapColumnOrWidth +420 Q3TextEdit::setWrapPolicy +424 Q3TextEdit::copy +428 Q3TextEdit::append +432 Q3TextEdit::setText +436 Q3TextEdit::setTextFormat +440 Q3TextEdit::selectAll +444 Q3TextEdit::setTabStopWidth +448 Q3TextEdit::zoomIn +452 Q3TextEdit::zoomIn +456 Q3TextEdit::zoomOut +460 Q3TextEdit::zoomOut +464 Q3TextEdit::zoomTo +468 Q3TextEdit::sync +472 Q3TextEdit::setReadOnly +476 Q3TextEdit::undo +480 Q3TextEdit::redo +484 Q3TextEdit::cut +488 Q3TextEdit::paste +492 Q3TextEdit::pasteSubType +496 Q3TextEdit::clear +500 Q3TextEdit::del +504 Q3TextEdit::indent +508 Q3TextEdit::setItalic +512 Q3TextEdit::setBold +516 Q3TextEdit::setUnderline +520 Q3TextEdit::setFamily +524 Q3TextEdit::setPointSize +528 Q3TextEdit::setColor +532 Q3TextEdit::setVerticalAlignment +536 Q3TextEdit::setAlignment +540 Q3TextEdit::setParagType +544 Q3TextEdit::setCursorPosition +548 Q3TextEdit::setSelection +552 Q3TextEdit::setSelectionAttributes +556 Q3TextEdit::setModified +560 Q3TextEdit::resetFormat +564 Q3TextEdit::setUndoDepth +568 Q3TextEdit::setFormat +572 Q3TextEdit::ensureCursorVisible +576 Q3TextEdit::placeCursor +580 Q3TextEdit::moveCursor +584 Q3TextEdit::doKeyboardAction +588 Q3TextEdit::removeSelectedText +592 Q3TextEdit::removeSelection +596 Q3TextEdit::setCurrentFont +600 Q3TextEdit::setOverwriteMode +604 Q3TextEdit::scrollToBottom +608 Q3TextEdit::insert +612 Q3TextEdit::insert +616 Q3TextEdit::insertAt +620 Q3TextEdit::removeParagraph +624 Q3TextEdit::insertParagraph +628 Q3TextEdit::setParagraphBackgroundColor +632 Q3TextEdit::clearParagraphBackground +636 Q3TextEdit::setUndoRedoEnabled +640 Q3TextEdit::setTabChangesFocus +644 Q3TextEdit::createPopupMenu +648 Q3TextEdit::createPopupMenu +652 Q3TextEdit::doChangeInterval +656 Q3TextEdit::sliderReleased +660 Q3TextEdit::linksEnabled +664 Q3TextEdit::emitHighlighted +668 Q3TextEdit::emitLinkClicked +672 (int (*)(...))-0x000000008 +676 (int (*)(...))(& _ZTI10Q3TextView) +680 Q3TextView::_ZThn8_N10Q3TextViewD1Ev +684 Q3TextView::_ZThn8_N10Q3TextViewD0Ev +688 QWidget::_ZThn8_NK7QWidget7devTypeEv +692 QWidget::_ZThn8_NK7QWidget11paintEngineEv +696 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TextView + size=164 align=4 + base size=162 base align=4 +Q3TextView (0xb1582d80) 0 + vptr=((& Q3TextView::_ZTV10Q3TextView) + 8u) + Q3TextEdit (0xb1582dc0) 0 + primary-for Q3TextView (0xb1582d80) + Q3ScrollView (0xb1582e00) 0 + primary-for Q3TextEdit (0xb1582dc0) + Q3Frame (0xb1582e40) 0 + primary-for Q3ScrollView (0xb1582e00) + QFrame (0xb1582e80) 0 + primary-for Q3Frame (0xb1582e40) + QWidget (0xb15c6410) 0 + primary-for QFrame (0xb1582e80) + QObject (0xb15c24b0) 0 + primary-for QWidget (0xb15c6410) + QPaintDevice (0xb15c24ec) 8 + vptr=((& Q3TextView::_ZTV10Q3TextView) + 680u) + +Vtable for Q3GCache +Q3GCache::_ZTV8Q3GCache: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8Q3GCache) +8 Q3GCache::count +12 Q3GCache::clear +16 Q3GCache::~Q3GCache +20 Q3GCache::~Q3GCache +24 Q3PtrCollection::newItem +28 __cxa_pure_virtual + +Class Q3GCache + size=32 align=4 + base size=29 base align=4 +Q3GCache (0xb15d40c0) 0 + vptr=((& Q3GCache::_ZTV8Q3GCache) + 8u) + Q3PtrCollection (0xb15c299c) 0 + primary-for Q3GCache (0xb15d40c0) + +Class Q3GCacheIterator + size=4 align=4 + base size=4 base align=4 +Q3GCacheIterator (0xb15e003c) 0 + +Vtable for Q3AsciiCache +Q3AsciiCache::_ZTV12Q3AsciiCacheIvE: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3AsciiCacheIvE) +8 Q3AsciiCache::count [with type = void] +12 Q3AsciiCache::clear [with type = void] +16 Q3AsciiCache::~Q3AsciiCache [with type = void] +20 Q3AsciiCache::~Q3AsciiCache [with type = void] +24 Q3PtrCollection::newItem +28 Q3AsciiCache::deleteItem [with type = void] + +Class Q3AsciiCache + size=32 align=4 + base size=29 base align=4 +Q3AsciiCache (0xb15d4800) 0 + vptr=((& Q3AsciiCache::_ZTV12Q3AsciiCacheIvE) + 8u) + Q3GCache (0xb15d4840) 0 + primary-for Q3AsciiCache (0xb15d4800) + Q3PtrCollection (0xb15e0d20) 0 + primary-for Q3GCache (0xb15d4840) + +Vtable for Q3AsciiDict +Q3AsciiDict::_ZTV11Q3AsciiDictIvE: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3AsciiDictIvE) +8 Q3AsciiDict::count [with type = void] +12 Q3AsciiDict::clear [with type = void] +16 Q3AsciiDict::~Q3AsciiDict [with type = void] +20 Q3AsciiDict::~Q3AsciiDict [with type = void] +24 Q3PtrCollection::newItem +28 Q3AsciiDict::deleteItem [with type = void] +32 Q3GDict::read +36 Q3GDict::write + +Class Q3AsciiDict + size=28 align=4 + base size=28 base align=4 +Q3AsciiDict (0xb15fe600) 0 + vptr=((& Q3AsciiDict::_ZTV11Q3AsciiDictIvE) + 8u) + Q3GDict (0xb15fe640) 0 + primary-for Q3AsciiDict (0xb15fe600) + Q3PtrCollection (0xb15f68e8) 0 + primary-for Q3GDict (0xb15fe640) + +Vtable for Q3Cache +Q3Cache::_ZTV7Q3CacheIvE: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7Q3CacheIvE) +8 Q3Cache::count [with type = void] +12 Q3Cache::clear [with type = void] +16 Q3Cache::~Q3Cache [with type = void] +20 Q3Cache::~Q3Cache [with type = void] +24 Q3PtrCollection::newItem +28 Q3Cache::deleteItem [with type = void] + +Class Q3Cache + size=32 align=4 + base size=29 base align=4 +Q3Cache (0xb161c2c0) 0 + vptr=((& Q3Cache::_ZTV7Q3CacheIvE) + 8u) + Q3GCache (0xb161c300) 0 + primary-for Q3Cache (0xb161c2c0) + Q3PtrCollection (0xb161a348) 0 + primary-for Q3GCache (0xb161c300) + +Vtable for Q3IntCache +Q3IntCache::_ZTV10Q3IntCacheIvE: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3IntCacheIvE) +8 Q3IntCache::count [with type = void] +12 Q3IntCache::clear [with type = void] +16 Q3IntCache::~Q3IntCache [with type = void] +20 Q3IntCache::~Q3IntCache [with type = void] +24 Q3PtrCollection::newItem +28 Q3IntCache::deleteItem [with type = void] + +Class Q3IntCache + size=32 align=4 + base size=29 base align=4 +Q3IntCache (0xb1637a80) 0 + vptr=((& Q3IntCache::_ZTV10Q3IntCacheIvE) + 8u) + Q3GCache (0xb1637ac0) 0 + primary-for Q3IntCache (0xb1637a80) + Q3PtrCollection (0xb16412d0) 0 + primary-for Q3GCache (0xb1637ac0) + +Vtable for Q3AsciiDict +Q3AsciiDict::_ZTV11Q3AsciiDictI11QMetaObjectE: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3AsciiDictI11QMetaObjectE) +8 Q3AsciiDict::count [with type = QMetaObject] +12 Q3AsciiDict::clear [with type = QMetaObject] +16 Q3AsciiDict::~Q3AsciiDict [with type = QMetaObject] +20 Q3AsciiDict::~Q3AsciiDict [with type = QMetaObject] +24 Q3PtrCollection::newItem +28 Q3AsciiDict::deleteItem [with type = QMetaObject] +32 Q3GDict::read +36 Q3GDict::write + +Class Q3AsciiDict + size=28 align=4 + base size=28 base align=4 +Q3AsciiDict (0xb16522c0) 0 + vptr=((& Q3AsciiDict::_ZTV11Q3AsciiDictI11QMetaObjectE) + 8u) + Q3GDict (0xb1652300) 0 + primary-for Q3AsciiDict (0xb16522c0) + Q3PtrCollection (0xb1641a50) 0 + primary-for Q3GDict (0xb1652300) + +Vtable for Q3ObjectDictionary +Q3ObjectDictionary::_ZTV18Q3ObjectDictionary: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18Q3ObjectDictionary) +8 Q3AsciiDict::count [with type = QMetaObject] +12 Q3AsciiDict::clear [with type = QMetaObject] +16 Q3ObjectDictionary::~Q3ObjectDictionary +20 Q3ObjectDictionary::~Q3ObjectDictionary +24 Q3PtrCollection::newItem +28 Q3AsciiDict::deleteItem [with type = QMetaObject] +32 Q3GDict::read +36 Q3GDict::write + +Class Q3ObjectDictionary + size=28 align=4 + base size=28 base align=4 +Q3ObjectDictionary (0xb1652340) 0 + vptr=((& Q3ObjectDictionary::_ZTV18Q3ObjectDictionary) + 8u) + Q3AsciiDict (0xb1652380) 0 + primary-for Q3ObjectDictionary (0xb1652340) + Q3GDict (0xb16523c0) 0 + primary-for Q3AsciiDict (0xb1652380) + Q3PtrCollection (0xb1641b40) 0 + primary-for Q3GDict (0xb16523c0) + +Vtable for Q3PtrDict +Q3PtrDict::_ZTV9Q3PtrDictIvE: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3PtrDictIvE) +8 Q3PtrDict::count [with type = void] +12 Q3PtrDict::clear [with type = void] +16 Q3PtrDict::~Q3PtrDict [with type = void] +20 Q3PtrDict::~Q3PtrDict [with type = void] +24 Q3PtrCollection::newItem +28 Q3PtrDict::deleteItem [with type = void] +32 Q3GDict::read +36 Q3GDict::write + +Class Q3PtrDict + size=28 align=4 + base size=28 base align=4 +Q3PtrDict (0xb1652cc0) 0 + vptr=((& Q3PtrDict::_ZTV9Q3PtrDictIvE) + 8u) + Q3GDict (0xb1652d00) 0 + primary-for Q3PtrDict (0xb1652cc0) + Q3PtrCollection (0xb165fa50) 0 + primary-for Q3GDict (0xb1652d00) + +Vtable for Q3PtrQueue +Q3PtrQueue::_ZTV10Q3PtrQueueIvE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3PtrQueueIvE) +8 Q3PtrQueue::count [with type = void] +12 Q3PtrQueue::clear [with type = void] +16 Q3PtrQueue::~Q3PtrQueue [with type = void] +20 Q3PtrQueue::~Q3PtrQueue [with type = void] +24 Q3PtrCollection::newItem +28 Q3PtrQueue::deleteItem [with type = void] +32 Q3GList::compareItems +36 Q3GList::read +40 Q3GList::write + +Class Q3PtrQueue + size=32 align=4 + base size=32 base align=4 +Q3PtrQueue (0xb1478900) 0 + vptr=((& Q3PtrQueue::_ZTV10Q3PtrQueueIvE) + 8u) + Q3GList (0xb1478940) 0 + primary-for Q3PtrQueue (0xb1478900) + Q3PtrCollection (0xb147d438) 0 + primary-for Q3GList (0xb1478940) + +Vtable for Q3PtrStack +Q3PtrStack::_ZTV10Q3PtrStackIvE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3PtrStackIvE) +8 Q3PtrStack::count [with type = void] +12 Q3PtrStack::clear [with type = void] +16 Q3PtrStack::~Q3PtrStack [with type = void] +20 Q3PtrStack::~Q3PtrStack [with type = void] +24 Q3PtrCollection::newItem +28 Q3PtrStack::deleteItem [with type = void] +32 Q3GList::compareItems +36 Q3GList::read +40 Q3GList::write + +Class Q3PtrStack + size=32 align=4 + base size=32 base align=4 +Q3PtrStack (0xb1492140) 0 + vptr=((& Q3PtrStack::_ZTV10Q3PtrStackIvE) + 8u) + Q3GList (0xb1492180) 0 + primary-for Q3PtrStack (0xb1492140) + Q3PtrCollection (0xb147db40) 0 + primary-for Q3GList (0xb1492180) + +Vtable for Q3Semaphore +Q3Semaphore::_ZTV11Q3Semaphore: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3Semaphore) +8 Q3Semaphore::~Q3Semaphore +12 Q3Semaphore::~Q3Semaphore + +Class Q3Semaphore + size=8 align=4 + base size=8 base align=4 +Q3Semaphore (0xb147de4c) 0 + vptr=((& Q3Semaphore::_ZTV11Q3Semaphore) + 8u) + +Vtable for Q3Signal +Q3Signal::_ZTV8Q3Signal: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8Q3Signal) +8 Q3Signal::metaObject +12 Q3Signal::qt_metacast +16 Q3Signal::qt_metacall +20 Q3Signal::~Q3Signal +24 Q3Signal::~Q3Signal +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class Q3Signal + size=20 align=4 + base size=20 base align=4 +Q3Signal (0xb1492400) 0 + vptr=((& Q3Signal::_ZTV8Q3Signal) + 8u) + QObject (0xb149c1a4) 0 + primary-for Q3Signal (0xb1492400) + +Vtable for Q3PtrVector +Q3PtrVector::_ZTV11Q3PtrVectorIcE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3PtrVectorIcE) +8 Q3PtrVector::count [with type = char] +12 Q3PtrVector::clear [with type = char] +16 Q3PtrVector::~Q3PtrVector [with type = char] +20 Q3PtrVector::~Q3PtrVector [with type = char] +24 Q3PtrCollection::newItem +28 Q3PtrVector::deleteItem [with type = char] +32 Q3GVector::compareItems +36 Q3GVector::read +40 Q3GVector::write + +Class Q3PtrVector + size=20 align=4 + base size=20 base align=4 +Q3PtrVector (0xb1492a40) 0 + vptr=((& Q3PtrVector::_ZTV11Q3PtrVectorIcE) + 8u) + Q3GVector (0xb1492a80) 0 + primary-for Q3PtrVector (0xb1492a40) + Q3PtrCollection (0xb14aa0b4) 0 + primary-for Q3GVector (0xb1492a80) + +Vtable for Q3StrVec +Q3StrVec::_ZTV8Q3StrVec: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8Q3StrVec) +8 Q3PtrVector::count [with type = char] +12 Q3PtrVector::clear [with type = char] +16 Q3StrVec::~Q3StrVec +20 Q3StrVec::~Q3StrVec +24 Q3StrVec::newItem +28 Q3StrVec::deleteItem +32 Q3StrVec::compareItems +36 Q3StrVec::read +40 Q3StrVec::write + +Class Q3StrVec + size=24 align=4 + base size=21 base align=4 +Q3StrVec (0xb1492ac0) 0 + vptr=((& Q3StrVec::_ZTV8Q3StrVec) + 8u) + Q3PtrVector (0xb1492b00) 0 + primary-for Q3StrVec (0xb1492ac0) + Q3GVector (0xb1492b40) 0 + primary-for Q3PtrVector (0xb1492b00) + Q3PtrCollection (0xb14aa1a4) 0 + primary-for Q3GVector (0xb1492b40) + +Vtable for Q3StrIVec +Q3StrIVec::_ZTV9Q3StrIVec: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3StrIVec) +8 Q3PtrVector::count [with type = char] +12 Q3PtrVector::clear [with type = char] +16 Q3StrIVec::~Q3StrIVec +20 Q3StrIVec::~Q3StrIVec +24 Q3StrVec::newItem +28 Q3StrVec::deleteItem +32 Q3StrIVec::compareItems +36 Q3StrVec::read +40 Q3StrVec::write + +Class Q3StrIVec + size=24 align=4 + base size=21 base align=4 +Q3StrIVec (0xb14c9000) 0 + vptr=((& Q3StrIVec::_ZTV9Q3StrIVec) + 8u) + Q3StrVec (0xb14c9040) 0 + primary-for Q3StrIVec (0xb14c9000) + Q3PtrVector (0xb14c9080) 0 + primary-for Q3StrVec (0xb14c9040) + Q3GVector (0xb14c90c0) 0 + primary-for Q3PtrVector (0xb14c9080) + Q3PtrCollection (0xb14c0258) 0 + primary-for Q3GVector (0xb14c90c0) + +Vtable for Q3Action +Q3Action::_ZTV8Q3Action: 29u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8Q3Action) +8 Q3Action::metaObject +12 Q3Action::qt_metacast +16 Q3Action::qt_metacall +20 Q3Action::~Q3Action +24 Q3Action::~Q3Action +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3Action::setIconSet +60 Q3Action::setText +64 Q3Action::setMenuText +68 Q3Action::setToolTip +72 Q3Action::setStatusTip +76 Q3Action::setWhatsThis +80 Q3Action::setAccel +84 Q3Action::setToggleAction +88 Q3Action::addTo +92 Q3Action::removeFrom +96 Q3Action::addedTo +100 Q3Action::addedTo +104 Q3Action::setOn +108 Q3Action::setEnabled +112 Q3Action::setVisible + +Class Q3Action + size=12 align=4 + base size=12 base align=4 +Q3Action (0xb14de880) 0 + vptr=((& Q3Action::_ZTV8Q3Action) + 8u) + QObject (0xb14e61a4) 0 + primary-for Q3Action (0xb14de880) + +Vtable for Q3ActionGroup +Q3ActionGroup::_ZTV13Q3ActionGroup: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13Q3ActionGroup) +8 Q3ActionGroup::metaObject +12 Q3ActionGroup::qt_metacast +16 Q3ActionGroup::qt_metacall +20 Q3ActionGroup::~Q3ActionGroup +24 Q3ActionGroup::~Q3ActionGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 Q3ActionGroup::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3ActionGroup::setIconSet +60 Q3ActionGroup::setText +64 Q3ActionGroup::setMenuText +68 Q3ActionGroup::setToolTip +72 Q3Action::setStatusTip +76 Q3ActionGroup::setWhatsThis +80 Q3Action::setAccel +84 Q3ActionGroup::setToggleAction +88 Q3ActionGroup::addTo +92 Q3ActionGroup::removeFrom +96 Q3ActionGroup::addedTo +100 Q3ActionGroup::addedTo +104 Q3ActionGroup::setOn +108 Q3ActionGroup::setEnabled +112 Q3ActionGroup::setVisible +116 Q3ActionGroup::addedTo +120 Q3ActionGroup::addedTo + +Class Q3ActionGroup + size=16 align=4 + base size=16 base align=4 +Q3ActionGroup (0xb14deac0) 0 + vptr=((& Q3ActionGroup::_ZTV13Q3ActionGroup) + 8u) + Q3Action (0xb14deb00) 0 + primary-for Q3ActionGroup (0xb14deac0) + QObject (0xb14e6e10) 0 + primary-for Q3Action (0xb14deb00) + +Vtable for Q3Button +Q3Button::_ZTV8Q3Button: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8Q3Button) +8 Q3Button::metaObject +12 Q3Button::qt_metacast +16 Q3Button::qt_metacall +20 Q3Button::~Q3Button +24 Q3Button::~Q3Button +28 QAbstractButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Button::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 Q3Button::drawButton +240 Q3Button::drawButtonLabel +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI8Q3Button) +252 Q3Button::_ZThn8_N8Q3ButtonD1Ev +256 Q3Button::_ZThn8_N8Q3ButtonD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Button + size=20 align=4 + base size=20 base align=4 +Q3Button (0xb14ded80) 0 + vptr=((& Q3Button::_ZTV8Q3Button) + 8u) + QAbstractButton (0xb14dedc0) 0 + primary-for Q3Button (0xb14ded80) + QWidget (0xb150a000) 0 + primary-for QAbstractButton (0xb14dedc0) + QObject (0xb14feb7c) 0 + primary-for QWidget (0xb150a000) + QPaintDevice (0xb14febb8) 8 + vptr=((& Q3Button::_ZTV8Q3Button) + 252u) + +Vtable for Q3GroupBox +Q3GroupBox::_ZTV10Q3GroupBox: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3GroupBox) +8 Q3GroupBox::metaObject +12 Q3GroupBox::qt_metacast +16 Q3GroupBox::qt_metacall +20 Q3GroupBox::~Q3GroupBox +24 Q3GroupBox::~Q3GroupBox +28 Q3GroupBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 Q3GroupBox::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QGroupBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGroupBox::mousePressEvent +84 QGroupBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QGroupBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QGroupBox::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGroupBox::paintEvent +128 QWidget::moveEvent +132 Q3GroupBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3GroupBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3GroupBox::setColumnLayout +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI10Q3GroupBox) +236 Q3GroupBox::_ZThn8_N10Q3GroupBoxD1Ev +240 Q3GroupBox::_ZThn8_N10Q3GroupBoxD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3GroupBox + size=24 align=4 + base size=24 base align=4 +Q3GroupBox (0xb1517000) 0 + vptr=((& Q3GroupBox::_ZTV10Q3GroupBox) + 8u) + QGroupBox (0xb1517040) 0 + primary-for Q3GroupBox (0xb1517000) + QWidget (0xb1512280) 0 + primary-for QGroupBox (0xb1517040) + QObject (0xb1515348) 0 + primary-for QWidget (0xb1512280) + QPaintDevice (0xb1515384) 8 + vptr=((& Q3GroupBox::_ZTV10Q3GroupBox) + 236u) + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb153430c) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb1534294) 0 + +Vtable for Q3ButtonGroup +Q3ButtonGroup::_ZTV13Q3ButtonGroup: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13Q3ButtonGroup) +8 Q3ButtonGroup::metaObject +12 Q3ButtonGroup::qt_metacast +16 Q3ButtonGroup::qt_metacall +20 Q3ButtonGroup::~Q3ButtonGroup +24 Q3ButtonGroup::~Q3ButtonGroup +28 Q3ButtonGroup::event +32 QObject::eventFilter +36 QObject::timerEvent +40 Q3GroupBox::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QGroupBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGroupBox::mousePressEvent +84 QGroupBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QGroupBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QGroupBox::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGroupBox::paintEvent +128 QWidget::moveEvent +132 Q3GroupBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3GroupBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3GroupBox::setColumnLayout +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI13Q3ButtonGroup) +236 Q3ButtonGroup::_ZThn8_N13Q3ButtonGroupD1Ev +240 Q3ButtonGroup::_ZThn8_N13Q3ButtonGroupD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ButtonGroup + size=40 align=4 + base size=40 base align=4 +Q3ButtonGroup (0xb1517300) 0 + vptr=((& Q3ButtonGroup::_ZTV13Q3ButtonGroup) + 8u) + Q3GroupBox (0xb1517340) 0 + primary-for Q3ButtonGroup (0xb1517300) + QGroupBox (0xb1517380) 0 + primary-for Q3GroupBox (0xb1517340) + QWidget (0xb15249b0) 0 + primary-for QGroupBox (0xb1517380) + QObject (0xb151fd20) 0 + primary-for QWidget (0xb15249b0) + QPaintDevice (0xb151fd5c) 8 + vptr=((& Q3ButtonGroup::_ZTV13Q3ButtonGroup) + 236u) + +Vtable for Q3VButtonGroup +Q3VButtonGroup::_ZTV14Q3VButtonGroup: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3VButtonGroup) +8 Q3VButtonGroup::metaObject +12 Q3VButtonGroup::qt_metacast +16 Q3VButtonGroup::qt_metacall +20 Q3VButtonGroup::~Q3VButtonGroup +24 Q3VButtonGroup::~Q3VButtonGroup +28 Q3ButtonGroup::event +32 QObject::eventFilter +36 QObject::timerEvent +40 Q3GroupBox::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QGroupBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGroupBox::mousePressEvent +84 QGroupBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QGroupBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QGroupBox::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGroupBox::paintEvent +128 QWidget::moveEvent +132 Q3GroupBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3GroupBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3GroupBox::setColumnLayout +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI14Q3VButtonGroup) +236 Q3VButtonGroup::_ZThn8_N14Q3VButtonGroupD1Ev +240 Q3VButtonGroup::_ZThn8_N14Q3VButtonGroupD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3VButtonGroup + size=40 align=4 + base size=40 base align=4 +Q3VButtonGroup (0xb1517700) 0 + vptr=((& Q3VButtonGroup::_ZTV14Q3VButtonGroup) + 8u) + Q3ButtonGroup (0xb1517740) 0 + primary-for Q3VButtonGroup (0xb1517700) + Q3GroupBox (0xb1517780) 0 + primary-for Q3ButtonGroup (0xb1517740) + QGroupBox (0xb15177c0) 0 + primary-for Q3GroupBox (0xb1517780) + QWidget (0xb1546c80) 0 + primary-for QGroupBox (0xb15177c0) + QObject (0xb1534ac8) 0 + primary-for QWidget (0xb1546c80) + QPaintDevice (0xb1534b04) 8 + vptr=((& Q3VButtonGroup::_ZTV14Q3VButtonGroup) + 236u) + +Vtable for Q3HButtonGroup +Q3HButtonGroup::_ZTV14Q3HButtonGroup: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3HButtonGroup) +8 Q3HButtonGroup::metaObject +12 Q3HButtonGroup::qt_metacast +16 Q3HButtonGroup::qt_metacall +20 Q3HButtonGroup::~Q3HButtonGroup +24 Q3HButtonGroup::~Q3HButtonGroup +28 Q3ButtonGroup::event +32 QObject::eventFilter +36 QObject::timerEvent +40 Q3GroupBox::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QGroupBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGroupBox::mousePressEvent +84 QGroupBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QGroupBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QGroupBox::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGroupBox::paintEvent +128 QWidget::moveEvent +132 Q3GroupBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3GroupBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3GroupBox::setColumnLayout +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI14Q3HButtonGroup) +236 Q3HButtonGroup::_ZThn8_N14Q3HButtonGroupD1Ev +240 Q3HButtonGroup::_ZThn8_N14Q3HButtonGroupD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3HButtonGroup + size=40 align=4 + base size=40 base align=4 +Q3HButtonGroup (0xb1517c40) 0 + vptr=((& Q3HButtonGroup::_ZTV14Q3HButtonGroup) + 8u) + Q3ButtonGroup (0xb1517c80) 0 + primary-for Q3HButtonGroup (0xb1517c40) + Q3GroupBox (0xb1517cc0) 0 + primary-for Q3ButtonGroup (0xb1517c80) + QGroupBox (0xb1517d00) 0 + primary-for Q3GroupBox (0xb1517cc0) + QWidget (0xb1558460) 0 + primary-for QGroupBox (0xb1517d00) + QObject (0xb15568e8) 0 + primary-for QWidget (0xb1558460) + QPaintDevice (0xb1556924) 8 + vptr=((& Q3HButtonGroup::_ZTV14Q3HButtonGroup) + 236u) + +Vtable for Q3ComboBox +Q3ComboBox::_ZTV10Q3ComboBox: 75u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3ComboBox) +8 Q3ComboBox::metaObject +12 Q3ComboBox::qt_metacast +16 Q3ComboBox::qt_metacall +20 Q3ComboBox::~Q3ComboBox +24 Q3ComboBox::~Q3ComboBox +28 QWidget::event +32 Q3ComboBox::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 Q3ComboBox::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3ComboBox::mousePressEvent +84 Q3ComboBox::mouseReleaseEvent +88 Q3ComboBox::mouseDoubleClickEvent +92 Q3ComboBox::mouseMoveEvent +96 Q3ComboBox::wheelEvent +100 Q3ComboBox::keyPressEvent +104 QWidget::keyReleaseEvent +108 Q3ComboBox::focusInEvent +112 Q3ComboBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3ComboBox::paintEvent +128 QWidget::moveEvent +132 Q3ComboBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 Q3ComboBox::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ComboBox::setCurrentItem +228 Q3ComboBox::setCurrentText +232 Q3ComboBox::setAutoResize +236 Q3ComboBox::setSizeLimit +240 Q3ComboBox::setMaxCount +244 Q3ComboBox::setInsertionPolicy +248 Q3ComboBox::setValidator +252 Q3ComboBox::setListBox +256 Q3ComboBox::setLineEdit +260 Q3ComboBox::setAutoCompletion +264 Q3ComboBox::popup +268 Q3ComboBox::setEditText +272 (int (*)(...))-0x000000008 +276 (int (*)(...))(& _ZTI10Q3ComboBox) +280 Q3ComboBox::_ZThn8_N10Q3ComboBoxD1Ev +284 Q3ComboBox::_ZThn8_N10Q3ComboBoxD0Ev +288 QWidget::_ZThn8_NK7QWidget7devTypeEv +292 QWidget::_ZThn8_NK7QWidget11paintEngineEv +296 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ComboBox + size=24 align=4 + base size=24 base align=4 +Q3ComboBox (0xb156c180) 0 + vptr=((& Q3ComboBox::_ZTV10Q3ComboBox) + 8u) + QWidget (0xb1560cd0) 0 + primary-for Q3ComboBox (0xb156c180) + QObject (0xb1567780) 0 + primary-for QWidget (0xb1560cd0) + QPaintDevice (0xb15677bc) 8 + vptr=((& Q3ComboBox::_ZTV10Q3ComboBox) + 280u) + +Vtable for Q3DateTimeEditBase +Q3DateTimeEditBase::_ZTV18Q3DateTimeEditBase: 69u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18Q3DateTimeEditBase) +8 Q3DateTimeEditBase::metaObject +12 Q3DateTimeEditBase::qt_metacast +16 Q3DateTimeEditBase::qt_metacall +20 Q3DateTimeEditBase::~Q3DateTimeEditBase +24 Q3DateTimeEditBase::~Q3DateTimeEditBase +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 __cxa_pure_virtual +228 __cxa_pure_virtual +232 __cxa_pure_virtual +236 __cxa_pure_virtual +240 __cxa_pure_virtual +244 __cxa_pure_virtual +248 (int (*)(...))-0x000000008 +252 (int (*)(...))(& _ZTI18Q3DateTimeEditBase) +256 Q3DateTimeEditBase::_ZThn8_N18Q3DateTimeEditBaseD1Ev +260 Q3DateTimeEditBase::_ZThn8_N18Q3DateTimeEditBaseD0Ev +264 QWidget::_ZThn8_NK7QWidget7devTypeEv +268 QWidget::_ZThn8_NK7QWidget11paintEngineEv +272 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DateTimeEditBase + size=20 align=4 + base size=20 base align=4 +Q3DateTimeEditBase (0xb156c3c0) 0 + vptr=((& Q3DateTimeEditBase::_ZTV18Q3DateTimeEditBase) + 8u) + QWidget (0xb13871e0) 0 + primary-for Q3DateTimeEditBase (0xb156c3c0) + QObject (0xb137f690) 0 + primary-for QWidget (0xb13871e0) + QPaintDevice (0xb137f6cc) 8 + vptr=((& Q3DateTimeEditBase::_ZTV18Q3DateTimeEditBase) + 256u) + +Vtable for Q3DateEdit +Q3DateEdit::_ZTV10Q3DateEdit: 81u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3DateEdit) +8 Q3DateEdit::metaObject +12 Q3DateEdit::qt_metacast +16 Q3DateEdit::qt_metacall +20 Q3DateEdit::~Q3DateEdit +24 Q3DateEdit::~Q3DateEdit +28 Q3DateEdit::event +32 QObject::eventFilter +36 Q3DateEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 Q3DateEdit::sizeHint +68 Q3DateEdit::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 Q3DateEdit::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3DateEdit::setFocusSection +228 Q3DateEdit::sectionFormattedText +232 Q3DateEdit::addNumber +236 Q3DateEdit::removeLastNumber +240 Q3DateEdit::stepUp +244 Q3DateEdit::stepDown +248 Q3DateEdit::setDate +252 Q3DateEdit::setOrder +256 Q3DateEdit::setAutoAdvance +260 Q3DateEdit::setMinValue +264 Q3DateEdit::setMaxValue +268 Q3DateEdit::setRange +272 Q3DateEdit::setSeparator +276 Q3DateEdit::setYear +280 Q3DateEdit::setMonth +284 Q3DateEdit::setDay +288 Q3DateEdit::fix +292 Q3DateEdit::outOfRange +296 (int (*)(...))-0x000000008 +300 (int (*)(...))(& _ZTI10Q3DateEdit) +304 Q3DateEdit::_ZThn8_N10Q3DateEditD1Ev +308 Q3DateEdit::_ZThn8_N10Q3DateEditD0Ev +312 QWidget::_ZThn8_NK7QWidget7devTypeEv +316 QWidget::_ZThn8_NK7QWidget11paintEngineEv +320 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DateEdit + size=24 align=4 + base size=24 base align=4 +Q3DateEdit (0xb156c6c0) 0 + vptr=((& Q3DateEdit::_ZTV10Q3DateEdit) + 8u) + Q3DateTimeEditBase (0xb156c700) 0 + primary-for Q3DateEdit (0xb156c6c0) + QWidget (0xb138c8c0) 0 + primary-for Q3DateTimeEditBase (0xb156c700) + QObject (0xb139730c) 0 + primary-for QWidget (0xb138c8c0) + QPaintDevice (0xb1397348) 8 + vptr=((& Q3DateEdit::_ZTV10Q3DateEdit) + 304u) + +Vtable for Q3TimeEdit +Q3TimeEdit::_ZTV10Q3TimeEdit: 79u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3TimeEdit) +8 Q3TimeEdit::metaObject +12 Q3TimeEdit::qt_metacast +16 Q3TimeEdit::qt_metacall +20 Q3TimeEdit::~Q3TimeEdit +24 Q3TimeEdit::~Q3TimeEdit +28 Q3TimeEdit::event +32 QObject::eventFilter +36 Q3TimeEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 Q3TimeEdit::sizeHint +68 Q3TimeEdit::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 Q3TimeEdit::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3TimeEdit::setFocusSection +228 Q3TimeEdit::sectionFormattedText +232 Q3TimeEdit::addNumber +236 Q3TimeEdit::removeLastNumber +240 Q3TimeEdit::stepUp +244 Q3TimeEdit::stepDown +248 Q3TimeEdit::setTime +252 Q3TimeEdit::setAutoAdvance +256 Q3TimeEdit::setMinValue +260 Q3TimeEdit::setMaxValue +264 Q3TimeEdit::setRange +268 Q3TimeEdit::setSeparator +272 Q3TimeEdit::outOfRange +276 Q3TimeEdit::setHour +280 Q3TimeEdit::setMinute +284 Q3TimeEdit::setSecond +288 (int (*)(...))-0x000000008 +292 (int (*)(...))(& _ZTI10Q3TimeEdit) +296 Q3TimeEdit::_ZThn8_N10Q3TimeEditD1Ev +300 Q3TimeEdit::_ZThn8_N10Q3TimeEditD0Ev +304 QWidget::_ZThn8_NK7QWidget7devTypeEv +308 QWidget::_ZThn8_NK7QWidget11paintEngineEv +312 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3TimeEdit + size=24 align=4 + base size=24 base align=4 +Q3TimeEdit (0xb156c9c0) 0 + vptr=((& Q3TimeEdit::_ZTV10Q3TimeEdit) + 8u) + Q3DateTimeEditBase (0xb156ca00) 0 + primary-for Q3TimeEdit (0xb156c9c0) + QWidget (0xb13a73c0) 0 + primary-for Q3DateTimeEditBase (0xb156ca00) + QObject (0xb13ac294) 0 + primary-for QWidget (0xb13a73c0) + QPaintDevice (0xb13ac2d0) 8 + vptr=((& Q3TimeEdit::_ZTV10Q3TimeEdit) + 296u) + +Vtable for Q3DateTimeEdit +Q3DateTimeEdit::_ZTV14Q3DateTimeEdit: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3DateTimeEdit) +8 Q3DateTimeEdit::metaObject +12 Q3DateTimeEdit::qt_metacast +16 Q3DateTimeEdit::qt_metacall +20 Q3DateTimeEdit::~Q3DateTimeEdit +24 Q3DateTimeEdit::~Q3DateTimeEdit +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 Q3DateTimeEdit::sizeHint +68 Q3DateTimeEdit::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 Q3DateTimeEdit::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3DateTimeEdit::setDateTime +228 Q3DateTimeEdit::setAutoAdvance +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI14Q3DateTimeEdit) +240 Q3DateTimeEdit::_ZThn8_N14Q3DateTimeEditD1Ev +244 Q3DateTimeEdit::_ZThn8_N14Q3DateTimeEditD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DateTimeEdit + size=32 align=4 + base size=32 base align=4 +Q3DateTimeEdit (0xb156ccc0) 0 + vptr=((& Q3DateTimeEdit::_ZTV14Q3DateTimeEdit) + 8u) + QWidget (0xb13b6dc0) 0 + primary-for Q3DateTimeEdit (0xb156ccc0) + QObject (0xb13bf12c) 0 + primary-for QWidget (0xb13b6dc0) + QPaintDevice (0xb13bf168) 8 + vptr=((& Q3DateTimeEdit::_ZTV14Q3DateTimeEdit) + 240u) + +Vtable for Q3DockWindow +Q3DockWindow::_ZTV12Q3DockWindow: 81u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3DockWindow) +8 Q3DockWindow::metaObject +12 Q3DockWindow::qt_metacast +16 Q3DockWindow::qt_metacall +20 Q3DockWindow::~Q3DockWindow +24 Q3DockWindow::~Q3DockWindow +28 Q3DockWindow::event +32 Q3DockWindow::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 Q3DockWindow::sizeHint +68 Q3DockWindow::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3DockWindow::resizeEvent +136 QWidget::closeEvent +140 Q3DockWindow::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 Q3DockWindow::showEvent +172 Q3DockWindow::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3Frame::frameChanged +228 Q3DockWindow::drawFrame +232 Q3DockWindow::drawContents +236 Q3DockWindow::setWidget +240 Q3DockWindow::setCloseMode +244 Q3DockWindow::setResizeEnabled +248 Q3DockWindow::setMovingEnabled +252 Q3DockWindow::setHorizontallyStretchable +256 Q3DockWindow::setVerticallyStretchable +260 Q3DockWindow::setOffset +264 Q3DockWindow::setFixedExtentWidth +268 Q3DockWindow::setFixedExtentHeight +272 Q3DockWindow::setNewLine +276 Q3DockWindow::setOpaqueMoving +280 Q3DockWindow::undock +284 Q3DockWindow::undock +288 Q3DockWindow::dock +292 Q3DockWindow::setOrientation +296 (int (*)(...))-0x000000008 +300 (int (*)(...))(& _ZTI12Q3DockWindow) +304 Q3DockWindow::_ZThn8_N12Q3DockWindowD1Ev +308 Q3DockWindow::_ZThn8_N12Q3DockWindowD0Ev +312 QWidget::_ZThn8_NK7QWidget7devTypeEv +316 QWidget::_ZThn8_NK7QWidget11paintEngineEv +320 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DockWindow + size=164 align=4 + base size=164 base align=4 +Q3DockWindow (0xb156cf80) 0 + vptr=((& Q3DockWindow::_ZTV12Q3DockWindow) + 8u) + Q3Frame (0xb156cfc0) 0 + primary-for Q3DockWindow (0xb156cf80) + QFrame (0xb13cf000) 0 + primary-for Q3Frame (0xb156cfc0) + QWidget (0xb13c5c80) 0 + primary-for QFrame (0xb13cf000) + QObject (0xb13bfe10) 0 + primary-for QWidget (0xb13c5c80) + QPaintDevice (0xb13bfe4c) 8 + vptr=((& Q3DockWindow::_ZTV12Q3DockWindow) + 304u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb13e8f3c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb13e8f78) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb140a0b4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb140a03c) 0 + +Vtable for Q3DockAreaLayout +Q3DockAreaLayout::_ZTV16Q3DockAreaLayout: 48u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16Q3DockAreaLayout) +8 Q3DockAreaLayout::metaObject +12 Q3DockAreaLayout::qt_metacast +16 Q3DockAreaLayout::qt_metacall +20 Q3DockAreaLayout::~Q3DockAreaLayout +24 Q3DockAreaLayout::~Q3DockAreaLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3DockAreaLayout::invalidate +60 QLayout::geometry +64 Q3DockAreaLayout::addItem +68 Q3DockAreaLayout::expandingDirections +72 Q3DockAreaLayout::minimumSize +76 QLayout::maximumSize +80 Q3DockAreaLayout::setGeometry +84 Q3DockAreaLayout::itemAt +88 Q3DockAreaLayout::takeAt +92 QLayout::indexOf +96 Q3DockAreaLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 Q3DockAreaLayout::hasHeightForWidth +112 Q3DockAreaLayout::heightForWidth +116 Q3DockAreaLayout::sizeHint +120 (int (*)(...))-0x000000008 +124 (int (*)(...))(& _ZTI16Q3DockAreaLayout) +128 Q3DockAreaLayout::_ZThn8_N16Q3DockAreaLayoutD1Ev +132 Q3DockAreaLayout::_ZThn8_N16Q3DockAreaLayoutD0Ev +136 Q3DockAreaLayout::_ZThn8_NK16Q3DockAreaLayout8sizeHintEv +140 Q3DockAreaLayout::_ZThn8_NK16Q3DockAreaLayout11minimumSizeEv +144 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +148 Q3DockAreaLayout::_ZThn8_NK16Q3DockAreaLayout19expandingDirectionsEv +152 Q3DockAreaLayout::_ZThn8_N16Q3DockAreaLayout11setGeometryERK5QRect +156 QLayout::_ZThn8_NK7QLayout8geometryEv +160 QLayout::_ZThn8_NK7QLayout7isEmptyEv +164 Q3DockAreaLayout::_ZThn8_NK16Q3DockAreaLayout17hasHeightForWidthEv +168 Q3DockAreaLayout::_ZThn8_NK16Q3DockAreaLayout14heightForWidthEi +172 QLayoutItem::minimumHeightForWidth +176 Q3DockAreaLayout::_ZThn8_N16Q3DockAreaLayout10invalidateEv +180 QLayoutItem::widget +184 QLayout::_ZThn8_N7QLayout6layoutEv +188 QLayoutItem::spacerItem + +Class Q3DockAreaLayout + size=56 align=4 + base size=56 base align=4 +Q3DockAreaLayout (0xb13cf440) 0 + vptr=((& Q3DockAreaLayout::_ZTV16Q3DockAreaLayout) + 8u) + QLayout (0xb13dfe60) 0 + primary-for Q3DockAreaLayout (0xb13cf440) + QObject (0xb13e8a14) 0 + primary-for QLayout (0xb13dfe60) + QLayoutItem (0xb13e8a50) 8 + vptr=((& Q3DockAreaLayout::_ZTV16Q3DockAreaLayout) + 128u) + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb142fac8) 0 + +Class Q3DockArea::DockWindowData + size=24 align=4 + base size=24 base align=4 +Q3DockArea::DockWindowData (0xb142f7bc) 0 + +Vtable for Q3DockArea +Q3DockArea::_ZTV10Q3DockArea: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3DockArea) +8 Q3DockArea::metaObject +12 Q3DockArea::qt_metacast +16 Q3DockArea::qt_metacall +20 Q3DockArea::~Q3DockArea +24 Q3DockArea::~Q3DockArea +28 QWidget::event +32 Q3DockArea::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10Q3DockArea) +232 Q3DockArea::_ZThn8_N10Q3DockAreaD1Ev +236 Q3DockArea::_ZThn8_N10Q3DockAreaD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3DockArea + size=44 align=4 + base size=44 base align=4 +Q3DockArea (0xb13cfb80) 0 + vptr=((& Q3DockArea::_ZTV10Q3DockArea) + 8u) + QWidget (0xb1422960) 0 + primary-for Q3DockArea (0xb13cfb80) + QObject (0xb142f528) 0 + primary-for QWidget (0xb1422960) + QPaintDevice (0xb142f564) 8 + vptr=((& Q3DockArea::_ZTV10Q3DockArea) + 232u) + +Vtable for Q3Grid +Q3Grid::_ZTV6Q3Grid: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6Q3Grid) +8 Q3Grid::metaObject +12 Q3Grid::qt_metacast +16 Q3Grid::qt_metacall +20 Q3Grid::~Q3Grid +24 Q3Grid::~Q3Grid +28 QFrame::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 Q3Grid::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3Frame::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3Grid::frameChanged +228 Q3Frame::drawFrame +232 Q3Frame::drawContents +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI6Q3Grid) +244 Q3Grid::_ZThn8_N6Q3GridD1Ev +248 Q3Grid::_ZThn8_N6Q3GridD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3Grid + size=24 align=4 + base size=24 base align=4 +Q3Grid (0xb13cfec0) 0 + vptr=((& Q3Grid::_ZTV6Q3Grid) + 8u) + Q3Frame (0xb13cff00) 0 + primary-for Q3Grid (0xb13cfec0) + QFrame (0xb13cff40) 0 + primary-for Q3Frame (0xb13cff00) + QWidget (0xb143eaa0) 0 + primary-for QFrame (0xb13cff40) + QObject (0xb14417f8) 0 + primary-for QWidget (0xb143eaa0) + QPaintDevice (0xb1441834) 8 + vptr=((& Q3Grid::_ZTV6Q3Grid) + 244u) + +Vtable for Q3GridView +Q3GridView::_ZTV10Q3GridView: 109u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10Q3GridView) +8 Q3GridView::metaObject +12 Q3GridView::qt_metacast +16 Q3GridView::qt_metacall +20 Q3GridView::~Q3GridView +24 Q3GridView::~Q3GridView +28 QFrame::event +32 Q3ScrollView::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ScrollView::setVisible +64 Q3ScrollView::sizeHint +68 Q3ScrollView::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3ScrollView::mousePressEvent +84 Q3ScrollView::mouseReleaseEvent +88 Q3ScrollView::mouseDoubleClickEvent +92 Q3ScrollView::mouseMoveEvent +96 Q3ScrollView::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3ScrollView::resizeEvent +136 QWidget::closeEvent +140 Q3ScrollView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 Q3ScrollView::focusNextPrevChild +200 Q3ScrollView::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 Q3ScrollView::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ScrollView::frameChanged +228 Q3Frame::drawFrame +232 Q3GridView::drawContents +236 Q3ScrollView::setResizePolicy +240 Q3ScrollView::addChild +244 Q3ScrollView::moveChild +248 Q3ScrollView::setVScrollBarMode +252 Q3ScrollView::setHScrollBarMode +256 Q3ScrollView::setCornerWidget +260 Q3ScrollView::setDragAutoScroll +264 Q3ScrollView::resizeContents +268 Q3ScrollView::setContentsPos +272 Q3GridView::drawContents +276 Q3ScrollView::drawContentsOffset +280 Q3ScrollView::contentsMousePressEvent +284 Q3ScrollView::contentsMouseReleaseEvent +288 Q3ScrollView::contentsMouseDoubleClickEvent +292 Q3ScrollView::contentsMouseMoveEvent +296 Q3ScrollView::contentsDragEnterEvent +300 Q3ScrollView::contentsDragMoveEvent +304 Q3ScrollView::contentsDragLeaveEvent +308 Q3ScrollView::contentsDropEvent +312 Q3ScrollView::contentsWheelEvent +316 Q3ScrollView::contentsContextMenuEvent +320 Q3ScrollView::viewportPaintEvent +324 Q3ScrollView::viewportResizeEvent +328 Q3ScrollView::viewportMousePressEvent +332 Q3ScrollView::viewportMouseReleaseEvent +336 Q3ScrollView::viewportMouseDoubleClickEvent +340 Q3ScrollView::viewportMouseMoveEvent +344 Q3ScrollView::viewportDragEnterEvent +348 Q3ScrollView::viewportDragMoveEvent +352 Q3ScrollView::viewportDragLeaveEvent +356 Q3ScrollView::viewportDropEvent +360 Q3ScrollView::viewportWheelEvent +364 Q3ScrollView::viewportContextMenuEvent +368 Q3ScrollView::setMargins +372 Q3ScrollView::setHBarGeometry +376 Q3ScrollView::setVBarGeometry +380 Q3GridView::setNumRows +384 Q3GridView::setNumCols +388 Q3GridView::setCellWidth +392 Q3GridView::setCellHeight +396 __cxa_pure_virtual +400 Q3GridView::paintEmptyArea +404 Q3GridView::dimensionChange +408 (int (*)(...))-0x000000008 +412 (int (*)(...))(& _ZTI10Q3GridView) +416 Q3GridView::_ZThn8_N10Q3GridViewD1Ev +420 Q3GridView::_ZThn8_N10Q3GridViewD0Ev +424 QWidget::_ZThn8_NK7QWidget7devTypeEv +428 QWidget::_ZThn8_NK7QWidget11paintEngineEv +432 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3GridView + size=48 align=4 + base size=48 base align=4 +Q3GridView (0xb1451180) 0 + vptr=((& Q3GridView::_ZTV10Q3GridView) + 8u) + Q3ScrollView (0xb14511c0) 0 + primary-for Q3GridView (0xb1451180) + Q3Frame (0xb1451200) 0 + primary-for Q3ScrollView (0xb14511c0) + QFrame (0xb1451240) 0 + primary-for Q3Frame (0xb1451200) + QWidget (0xb144b550) 0 + primary-for QFrame (0xb1451240) + QObject (0xb1455258) 0 + primary-for QWidget (0xb144b550) + QPaintDevice (0xb1455294) 8 + vptr=((& Q3GridView::_ZTV10Q3GridView) + 416u) + +Vtable for Q3HBox +Q3HBox::_ZTV6Q3HBox: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6Q3HBox) +8 Q3HBox::metaObject +12 Q3HBox::qt_metacast +16 Q3HBox::qt_metacall +20 Q3HBox::~Q3HBox +24 Q3HBox::~Q3HBox +28 QFrame::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 Q3HBox::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3Frame::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3HBox::frameChanged +228 Q3Frame::drawFrame +232 Q3Frame::drawContents +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI6Q3HBox) +244 Q3HBox::_ZThn8_N6Q3HBoxD1Ev +248 Q3HBox::_ZThn8_N6Q3HBoxD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3HBox + size=24 align=4 + base size=24 base align=4 +Q3HBox (0xb1451680) 0 + vptr=((& Q3HBox::_ZTV6Q3HBox) + 8u) + Q3Frame (0xb14516c0) 0 + primary-for Q3HBox (0xb1451680) + QFrame (0xb1451700) 0 + primary-for Q3Frame (0xb14516c0) + QWidget (0xb145beb0) 0 + primary-for QFrame (0xb1451700) + QObject (0xb1466744) 0 + primary-for QWidget (0xb145beb0) + QPaintDevice (0xb1466780) 8 + vptr=((& Q3HBox::_ZTV6Q3HBox) + 244u) + +Vtable for Q3HGroupBox +Q3HGroupBox::_ZTV11Q3HGroupBox: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3HGroupBox) +8 Q3HGroupBox::metaObject +12 Q3HGroupBox::qt_metacast +16 Q3HGroupBox::qt_metacall +20 Q3HGroupBox::~Q3HGroupBox +24 Q3HGroupBox::~Q3HGroupBox +28 Q3GroupBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 Q3GroupBox::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QGroupBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGroupBox::mousePressEvent +84 QGroupBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QGroupBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QGroupBox::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGroupBox::paintEvent +128 QWidget::moveEvent +132 Q3GroupBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3GroupBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3GroupBox::setColumnLayout +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI11Q3HGroupBox) +236 Q3HGroupBox::_ZThn8_N11Q3HGroupBoxD1Ev +240 Q3HGroupBox::_ZThn8_N11Q3HGroupBoxD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3HGroupBox + size=24 align=4 + base size=24 base align=4 +Q3HGroupBox (0xb1451940) 0 + vptr=((& Q3HGroupBox::_ZTV11Q3HGroupBox) + 8u) + Q3GroupBox (0xb1451980) 0 + primary-for Q3HGroupBox (0xb1451940) + QGroupBox (0xb14519c0) 0 + primary-for Q3GroupBox (0xb1451980) + QWidget (0xb146f820) 0 + primary-for QGroupBox (0xb14519c0) + QObject (0xb126e1e0) 0 + primary-for QWidget (0xb146f820) + QPaintDevice (0xb126e21c) 8 + vptr=((& Q3HGroupBox::_ZTV11Q3HGroupBox) + 236u) + +Vtable for Q3ToolBar +Q3ToolBar::_ZTV9Q3ToolBar: 84u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9Q3ToolBar) +8 Q3ToolBar::metaObject +12 Q3ToolBar::qt_metacast +16 Q3ToolBar::qt_metacall +20 Q3ToolBar::~Q3ToolBar +24 Q3ToolBar::~Q3ToolBar +28 Q3ToolBar::event +32 Q3DockWindow::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ToolBar::setVisible +64 Q3DockWindow::sizeHint +68 Q3ToolBar::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3ToolBar::resizeEvent +136 QWidget::closeEvent +140 Q3DockWindow::contextMenuEvent +144 QWidget::tabletEvent +148 Q3ToolBar::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 Q3DockWindow::showEvent +172 Q3DockWindow::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 Q3ToolBar::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3Frame::frameChanged +228 Q3DockWindow::drawFrame +232 Q3DockWindow::drawContents +236 Q3DockWindow::setWidget +240 Q3DockWindow::setCloseMode +244 Q3DockWindow::setResizeEnabled +248 Q3DockWindow::setMovingEnabled +252 Q3DockWindow::setHorizontallyStretchable +256 Q3DockWindow::setVerticallyStretchable +260 Q3DockWindow::setOffset +264 Q3DockWindow::setFixedExtentWidth +268 Q3DockWindow::setFixedExtentHeight +272 Q3DockWindow::setNewLine +276 Q3DockWindow::setOpaqueMoving +280 Q3DockWindow::undock +284 Q3DockWindow::undock +288 Q3DockWindow::dock +292 Q3ToolBar::setOrientation +296 Q3ToolBar::setStretchableWidget +300 Q3ToolBar::setLabel +304 Q3ToolBar::clear +308 (int (*)(...))-0x000000008 +312 (int (*)(...))(& _ZTI9Q3ToolBar) +316 Q3ToolBar::_ZThn8_N9Q3ToolBarD1Ev +320 Q3ToolBar::_ZThn8_N9Q3ToolBarD0Ev +324 QWidget::_ZThn8_NK7QWidget7devTypeEv +328 QWidget::_ZThn8_NK7QWidget11paintEngineEv +332 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ToolBar + size=180 align=4 + base size=180 base align=4 +Q3ToolBar (0xb1451c00) 0 + vptr=((& Q3ToolBar::_ZTV9Q3ToolBar) + 8u) + Q3DockWindow (0xb1451c40) 0 + primary-for Q3ToolBar (0xb1451c00) + Q3Frame (0xb1451c80) 0 + primary-for Q3DockWindow (0xb1451c40) + QFrame (0xb1451cc0) 0 + primary-for Q3Frame (0xb1451c80) + QWidget (0xb1273dc0) 0 + primary-for QFrame (0xb1451cc0) + QObject (0xb126ece4) 0 + primary-for QWidget (0xb1273dc0) + QPaintDevice (0xb126ed20) 8 + vptr=((& Q3ToolBar::_ZTV9Q3ToolBar) + 316u) + +Vtable for Q3MainWindow +Q3MainWindow::_ZTV12Q3MainWindow: 87u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3MainWindow) +8 Q3MainWindow::metaObject +12 Q3MainWindow::qt_metacast +16 Q3MainWindow::qt_metacall +20 Q3MainWindow::~Q3MainWindow +24 Q3MainWindow::~Q3MainWindow +28 Q3MainWindow::event +32 Q3MainWindow::eventFilter +36 QObject::timerEvent +40 Q3MainWindow::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3MainWindow::setVisible +64 Q3MainWindow::sizeHint +68 Q3MainWindow::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3MainWindow::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3MainWindow::setCentralWidget +228 Q3MainWindow::setDockEnabled +232 Q3MainWindow::setDockEnabled +236 Q3MainWindow::addDockWindow +240 Q3MainWindow::addDockWindow +244 Q3MainWindow::moveDockWindow +248 Q3MainWindow::moveDockWindow +252 Q3MainWindow::removeDockWindow +256 Q3MainWindow::dockingArea +260 Q3MainWindow::isCustomizable +264 Q3MainWindow::createDockWindowMenu +268 Q3MainWindow::setRightJustification +272 Q3MainWindow::setUsesBigPixmaps +276 Q3MainWindow::setUsesTextLabel +280 Q3MainWindow::setDockWindowsMovable +284 Q3MainWindow::setOpaqueMoving +288 Q3MainWindow::setDockMenuEnabled +292 Q3MainWindow::whatsThis +296 Q3MainWindow::setAppropriate +300 Q3MainWindow::customize +304 Q3MainWindow::setUpLayout +308 Q3MainWindow::showDockMenu +312 Q3MainWindow::setMenuBar +316 Q3MainWindow::setStatusBar +320 (int (*)(...))-0x000000008 +324 (int (*)(...))(& _ZTI12Q3MainWindow) +328 Q3MainWindow::_ZThn8_N12Q3MainWindowD1Ev +332 Q3MainWindow::_ZThn8_N12Q3MainWindowD0Ev +336 QWidget::_ZThn8_NK7QWidget7devTypeEv +340 QWidget::_ZThn8_NK7QWidget11paintEngineEv +344 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3MainWindow + size=20 align=4 + base size=20 base align=4 +Q3MainWindow (0xb1451f00) 0 + vptr=((& Q3MainWindow::_ZTV12Q3MainWindow) + 8u) + QWidget (0xb1285550) 0 + primary-for Q3MainWindow (0xb1451f00) + QObject (0xb1284870) 0 + primary-for QWidget (0xb1285550) + QPaintDevice (0xb12848ac) 8 + vptr=((& Q3MainWindow::_ZTV12Q3MainWindow) + 328u) + +Vtable for Q3PopupMenu +Q3PopupMenu::_ZTV11Q3PopupMenu: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3PopupMenu) +8 Q3PopupMenu::metaObject +12 Q3PopupMenu::qt_metacast +16 Q3PopupMenu::qt_metacall +20 Q3PopupMenu::~Q3PopupMenu +24 Q3PopupMenu::~Q3PopupMenu +28 QMenu::event +32 QObject::eventFilter +36 QMenu::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMenu::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QMenu::mousePressEvent +84 QMenu::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QMenu::mouseMoveEvent +96 QMenu::wheelEvent +100 QMenu::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QMenu::enterEvent +120 QMenu::leaveEvent +124 QMenu::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QMenu::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QMenu::hideEvent +176 QWidget::x11Event +180 QMenu::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QMenu::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11Q3PopupMenu) +232 Q3PopupMenu::_ZThn8_N11Q3PopupMenuD1Ev +236 Q3PopupMenu::_ZThn8_N11Q3PopupMenuD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3PopupMenu + size=20 align=4 + base size=20 base align=4 +Q3PopupMenu (0xb12a4440) 0 + vptr=((& Q3PopupMenu::_ZTV11Q3PopupMenu) + 8u) + QMenu (0xb12a4480) 0 + primary-for Q3PopupMenu (0xb12a4440) + QWidget (0xb12b0500) 0 + primary-for QMenu (0xb12a4480) + QObject (0xb12a5fb4) 0 + primary-for QWidget (0xb12b0500) + QPaintDevice (0xb12b2000) 8 + vptr=((& Q3PopupMenu::_ZTV11Q3PopupMenu) + 232u) + +Vtable for Q3ProgressBar +Q3ProgressBar::_ZTV13Q3ProgressBar: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13Q3ProgressBar) +8 Q3ProgressBar::metaObject +12 Q3ProgressBar::qt_metacast +16 Q3ProgressBar::qt_metacall +20 Q3ProgressBar::~Q3ProgressBar +24 Q3ProgressBar::~Q3ProgressBar +28 QFrame::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3ProgressBar::setVisible +64 Q3ProgressBar::sizeHint +68 Q3ProgressBar::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3ProgressBar::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3ProgressBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3ProgressBar::setTotalSteps +228 Q3ProgressBar::setProgress +232 Q3ProgressBar::setIndicator +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI13Q3ProgressBar) +244 Q3ProgressBar::_ZThn8_N13Q3ProgressBarD1Ev +248 Q3ProgressBar::_ZThn8_N13Q3ProgressBarD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3ProgressBar + size=44 align=4 + base size=44 base align=4 +Q3ProgressBar (0xb12a4bc0) 0 + vptr=((& Q3ProgressBar::_ZTV13Q3ProgressBar) + 8u) + QFrame (0xb12a4c00) 0 + primary-for Q3ProgressBar (0xb12a4bc0) + QWidget (0xb12b8b90) 0 + primary-for QFrame (0xb12a4c00) + QObject (0xb12c5c30) 0 + primary-for QWidget (0xb12b8b90) + QPaintDevice (0xb12c5c6c) 8 + vptr=((& Q3ProgressBar::_ZTV13Q3ProgressBar) + 244u) + +Vtable for Q3RangeControl +Q3RangeControl::_ZTV14Q3RangeControl: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14Q3RangeControl) +8 Q3RangeControl::~Q3RangeControl +12 Q3RangeControl::~Q3RangeControl +16 Q3RangeControl::valueChange +20 Q3RangeControl::rangeChange +24 Q3RangeControl::stepChange + +Class Q3RangeControl + size=32 align=4 + base size=32 base align=4 +Q3RangeControl (0xb12de000) 0 + vptr=((& Q3RangeControl::_ZTV14Q3RangeControl) + 8u) + +Vtable for Q3SpinWidget +Q3SpinWidget::_ZTV12Q3SpinWidget: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12Q3SpinWidget) +8 Q3SpinWidget::metaObject +12 Q3SpinWidget::qt_metacast +16 Q3SpinWidget::qt_metacall +20 Q3SpinWidget::~Q3SpinWidget +24 Q3SpinWidget::~Q3SpinWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 Q3SpinWidget::mousePressEvent +84 Q3SpinWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 Q3SpinWidget::mouseMoveEvent +96 Q3SpinWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3SpinWidget::paintEvent +128 QWidget::moveEvent +132 Q3SpinWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3SpinWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3SpinWidget::setButtonSymbols +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI12Q3SpinWidget) +236 Q3SpinWidget::_ZThn8_N12Q3SpinWidgetD1Ev +240 Q3SpinWidget::_ZThn8_N12Q3SpinWidgetD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3SpinWidget + size=24 align=4 + base size=24 base align=4 +Q3SpinWidget (0xb12e6200) 0 + vptr=((& Q3SpinWidget::_ZTV12Q3SpinWidget) + 8u) + QWidget (0xb12e82d0) 0 + primary-for Q3SpinWidget (0xb12e6200) + QObject (0xb12de99c) 0 + primary-for QWidget (0xb12e82d0) + QPaintDevice (0xb12de9d8) 8 + vptr=((& Q3SpinWidget::_ZTV12Q3SpinWidget) + 236u) + +Vtable for Q3VBox +Q3VBox::_ZTV6Q3VBox: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6Q3VBox) +8 Q3VBox::metaObject +12 Q3VBox::qt_metacast +16 Q3VBox::qt_metacall +20 Q3VBox::~Q3VBox +24 Q3VBox::~Q3VBox +28 QFrame::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 Q3HBox::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3Frame::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3HBox::frameChanged +228 Q3Frame::drawFrame +232 Q3Frame::drawContents +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI6Q3VBox) +244 Q3VBox::_ZThn8_N6Q3VBoxD1Ev +248 Q3VBox::_ZThn8_N6Q3VBoxD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3VBox + size=24 align=4 + base size=24 base align=4 +Q3VBox (0xb12e6440) 0 + vptr=((& Q3VBox::_ZTV6Q3VBox) + 8u) + Q3HBox (0xb12e6480) 0 + primary-for Q3VBox (0xb12e6440) + Q3Frame (0xb12e64c0) 0 + primary-for Q3HBox (0xb12e6480) + QFrame (0xb12e6500) 0 + primary-for Q3Frame (0xb12e64c0) + QWidget (0xb12fa050) 0 + primary-for QFrame (0xb12e6500) + QObject (0xb12f65a0) 0 + primary-for QWidget (0xb12fa050) + QPaintDevice (0xb12f65dc) 8 + vptr=((& Q3VBox::_ZTV6Q3VBox) + 244u) + +Vtable for Q3VGroupBox +Q3VGroupBox::_ZTV11Q3VGroupBox: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3VGroupBox) +8 Q3VGroupBox::metaObject +12 Q3VGroupBox::qt_metacast +16 Q3VGroupBox::qt_metacall +20 Q3VGroupBox::~Q3VGroupBox +24 Q3VGroupBox::~Q3VGroupBox +28 Q3GroupBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 Q3GroupBox::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QGroupBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGroupBox::mousePressEvent +84 QGroupBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QGroupBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QGroupBox::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGroupBox::paintEvent +128 QWidget::moveEvent +132 Q3GroupBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 Q3GroupBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3GroupBox::setColumnLayout +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI11Q3VGroupBox) +236 Q3VGroupBox::_ZThn8_N11Q3VGroupBoxD1Ev +240 Q3VGroupBox::_ZThn8_N11Q3VGroupBoxD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3VGroupBox + size=24 align=4 + base size=24 base align=4 +Q3VGroupBox (0xb12e6740) 0 + vptr=((& Q3VGroupBox::_ZTV11Q3VGroupBox) + 8u) + Q3GroupBox (0xb12e6780) 0 + primary-for Q3VGroupBox (0xb12e6740) + QGroupBox (0xb12e67c0) 0 + primary-for Q3GroupBox (0xb12e6780) + QWidget (0xb12fe370) 0 + primary-for QGroupBox (0xb12e67c0) + QObject (0xb12f69d8) 0 + primary-for QWidget (0xb12fe370) + QPaintDevice (0xb1303000) 8 + vptr=((& Q3VGroupBox::_ZTV11Q3VGroupBox) + 236u) + +Vtable for Q3WhatsThis +Q3WhatsThis::_ZTV11Q3WhatsThis: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11Q3WhatsThis) +8 Q3WhatsThis::metaObject +12 Q3WhatsThis::qt_metacast +16 Q3WhatsThis::qt_metacall +20 Q3WhatsThis::~Q3WhatsThis +24 Q3WhatsThis::~Q3WhatsThis +28 QObject::event +32 Q3WhatsThis::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 Q3WhatsThis::text +60 Q3WhatsThis::clicked + +Class Q3WhatsThis + size=8 align=4 + base size=8 base align=4 +Q3WhatsThis (0xb12e6a00) 0 + vptr=((& Q3WhatsThis::_ZTV11Q3WhatsThis) + 8u) + QObject (0xb1303ac8) 0 + primary-for Q3WhatsThis (0xb12e6a00) + +Vtable for Q3WidgetStack +Q3WidgetStack::_ZTV13Q3WidgetStack: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13Q3WidgetStack) +8 Q3WidgetStack::metaObject +12 Q3WidgetStack::qt_metacast +16 Q3WidgetStack::qt_metacall +20 Q3WidgetStack::~Q3WidgetStack +24 Q3WidgetStack::~Q3WidgetStack +28 Q3WidgetStack::event +32 QObject::eventFilter +36 QObject::timerEvent +40 Q3WidgetStack::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 Q3WidgetStack::setVisible +64 Q3WidgetStack::sizeHint +68 Q3WidgetStack::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 Q3Frame::paintEvent +128 QWidget::moveEvent +132 Q3WidgetStack::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 Q3WidgetStack::frameChanged +228 Q3Frame::drawFrame +232 Q3Frame::drawContents +236 Q3WidgetStack::setChildGeometries +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI13Q3WidgetStack) +248 Q3WidgetStack::_ZThn8_N13Q3WidgetStackD1Ev +252 Q3WidgetStack::_ZThn8_N13Q3WidgetStackD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class Q3WidgetStack + size=44 align=4 + base size=44 base align=4 +Q3WidgetStack (0xb12e6dc0) 0 + vptr=((& Q3WidgetStack::_ZTV13Q3WidgetStack) + 8u) + Q3Frame (0xb12e6e00) 0 + primary-for Q3WidgetStack (0xb12e6dc0) + QFrame (0xb12e6e40) 0 + primary-for Q3Frame (0xb12e6e00) + QWidget (0xb1311eb0) 0 + primary-for QFrame (0xb12e6e40) + QObject (0xb13194ec) 0 + primary-for QWidget (0xb1311eb0) + QPaintDevice (0xb1319528) 8 + vptr=((& Q3WidgetStack::_ZTV13Q3WidgetStack) + 248u) + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb1177ce4) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb11a7294) 0 + +Class QVectorTypedData + size=24 align=4 + base size=24 base align=4 +QVectorTypedData (0xb12615a0) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb107e0b4) 0 + +Class QVectorTypedData + size=36 align=4 + base size=36 base align=4 +QVectorTypedData (0xb107eb7c) 0 + +Class QVectorTypedData + size=48 align=4 + base size=48 base align=4 +QVectorTypedData (0xb110a384) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb110a564) 0 + +Class QVectorTypedData + size=48 align=4 + base size=48 base align=4 +QVectorTypedData (0xb110a744) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb110a924) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0fe30f0) 0 + +Class QVectorTypedData > + size=20 align=4 + base size=20 base align=4 +QVectorTypedData > (0xb0fe32d0) 0 + +Class QVectorTypedData + size=28 align=4 + base size=28 base align=4 +QVectorTypedData (0xb1013474) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb10138e8) 0 + +Class QVectorTypedData + size=28 align=4 + base size=28 base align=4 +QVectorTypedData (0xb102a2d0) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0e6e000) 0 + +Class QLinkedListNode + size=52 align=4 + base size=52 base align=4 +QLinkedListNode (0xb0eaefb4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0f2e7bc) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb0f2e834) 0 + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb0f52744) 0 empty + +Class QHashNode + size=16 align=4 + base size=13 base align=4 +QHashNode (0xb0f52a50) 0 + +Class QHashNode + size=16 align=4 + base size=16 base align=4 +QHashNode (0xb0da9654) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0da9c30) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0da9f78) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0dc67f8) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0dc6c30) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0dd51e0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0de4294) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb0de47bc) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb0de4744) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb0de4fb4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb0de4f3c) 0 + +Class QMap::Node + size=16 align=4 + base size=16 base align=4 +QMap::Node (0xb0e303c0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0e30528) 0 empty + +Class QMap::Node + size=16 align=4 + base size=16 base align=4 +QMap::Node (0xb0e305a0) 0 + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb0e53168) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0e53294) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0e534ec) 0 + +Class QVector::realloc(int, int) [with T = QPoint]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPoint]:: (0xb0e53ca8) 0 + +Class QVector::realloc(int, int) [with T = QPointF]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPointF]:: (0xb0c873fc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0c87b7c) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0c87bf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0cc8078) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0cc80f0) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0cc8564) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0cc899c) 0 + +Class QVector::realloc(int, int) [with T = QTextLength]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QTextLength]:: (0xb0cc8d20) 0 + +Class QMap::PayloadNode + size=12 align=4 + base size=12 base align=4 +QMap::PayloadNode (0xb0d1e690) 0 + +Class QMap::PayloadNode + size=12 align=4 + base size=12 base align=4 +QMap::PayloadNode (0xb0d1e870) 0 + +Class QMap::detach_helper() [with Key = int, T = Q3TextEditOptimPrivate::Tag*]:: + size=4 align=4 + base size=4 base align=4 +QMap::detach_helper() [with Key = int, T = Q3TextEditOptimPrivate::Tag*]:: (0xb0d1e99c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0d1eb7c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0d1ef00) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0d1ef78) 0 + +Class QHashDummyNode + size=12 align=4 + base size=12 base align=4 +QHashDummyNode (0xb0d3530c) 0 + +Class QLinkedList::detach_helper() [with T = Q3SqlFieldInfo]:: + size=4 align=4 + base size=4 base align=4 +QLinkedList::detach_helper() [with T = Q3SqlFieldInfo]:: (0xb0d35ce4) 0 + +Class QVector::realloc(int, int) [with T = QPainterPath::Element]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPainterPath::Element]:: (0xb0d62168) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0d629d8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb0d62c30) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb0d62ca8) 0 + diff --git a/tests/auto/bic/data/QtCore.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtCore.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..6338075 --- /dev/null +++ b/tests/auto/bic/data/QtCore.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,4493 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb796d960) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb796d99c) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7dd1b40) 0 empty + QUintForSize<4> (0xb796da14) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb796db40) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb796db7c) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7dd1d00) 0 empty + QIntForSize<4> (0xb796dbf4) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb796df78) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb79795a0) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb7979f3c) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb798e000) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798e1e0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798e2d0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798e3c0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798e4b0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798e5a0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798e690) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798e780) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798e870) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798e960) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798ea50) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798eb40) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798ec30) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798ed20) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798ee10) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb798ef00) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb79a9000) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb79a9a8c) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb79a9f00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb79dcbb8) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb6be0690) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6c0f240) 0 + QBasicAtomicInt (0xb6c07654) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6c195a0) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6c54780) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6c19b7c) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb6c82780) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6cc5870) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6cc5b04) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b14438) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b14d5c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b26690) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b26fb4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b388e8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b4321c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b43b40) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b5b474) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b5bd98) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b6c6cc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b7f000) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b7f924) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb6b92258) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb6bd3564) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb6bd6a8c) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb6b923c0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69e0654) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb6a476cc) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb6a98f78) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb6908b00) 0 + QString (0xb6945a14) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6945d20) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb6960bb8) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb69a5924) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb69bf100) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb69a5c30) 0 nearly-empty + primary-for std::bad_exception (0xb69bf100) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb69bf240) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb69a5f00) 0 nearly-empty + primary-for std::bad_alloc (0xb69bf240) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb69cb12c) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb69cb384) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb69cb348) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb686b690) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb686b474) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb68479d8) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb687bce4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb687bc6c) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb6897f78) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb68a04ec) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb68a0ac8) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb68ac000) 0 + QGenericArgument (0xb68a0f00) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb68af3fc) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb68af21c) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb68c4564) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb68c44ec) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb68c4438) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb68c4690) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb66fabf4) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb66ffe80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb6709564) 0 + primary-for QIODevice (0xb66ffe80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6729834) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb6749708) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb6767780) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6790f78) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb679b078) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb679b5dc) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb679b564) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb6771f80) 0 + QList (0xb679b618) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb67c7384) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb67c75a0) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb65e2618) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb67b5f40) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb65e2bf4) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb67b5f40) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb65ea960) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb65e2f3c) 0 + primary-for QTextCodecPlugin (0xb65ea960) + QTextCodecFactoryInterface (0xb65ed0c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb65e2f78) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb65ed0c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb65f2834) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb66013c0) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb66010b4) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb65ed980) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb660b5a0) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb65ed980) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb65eda40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb65eda80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb65eda40) + std::exception (0xb660b744) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb65eda80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb660b8e8) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb660bac8) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb660bb40) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb660bb04) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb66c63fc) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb66c63c0) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb66d0ce4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb66d0d98) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6547d20) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb6547e10) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6547d98) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb6547e88) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6547f00) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb6547f3c) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb6547f78) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6579000) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb657903c) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb65ad7bc) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb65bd438) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb656fe00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb65c64b0) 0 + primary-for QTextIStream (0xb656fe00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb63d70c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb65c6f3c) 0 + primary-for QTextOStream (0xb63d70c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb63db9d8) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb63dba50) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb63db960) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb63dbac8) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb63dbb40) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb63dbbb8) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb63dbc30) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb63dbc6c) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb63dbca8) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb63dbd20) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb63dbd98) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb63dbdd4) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb63dbf00) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb63dbe88) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb63dbe4c) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb63dbf78) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb63f503c) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb63db2d0) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb63f50b4) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb63f51a4) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb63f512c) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb63f5258) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb63f52d0) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb63f5348) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb63f5384) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb63f53c0) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb63f53fc) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb64b8348) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb64b830c) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb63130b4) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb6313d20) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb6313ca8) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb632b078) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb6313bb8) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb632b1a4) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb632b8ac) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb632b924) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb635e780) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb63573c0) 0 + primary-for QFutureInterface (0xb635e780) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb638bb7c) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb63b66c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb63c021c) 0 + primary-for QFutureWatcherBase (0xb63b66c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb63b6dc0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb63b6e00) 0 + primary-for QFutureWatcher (0xb63b6dc0) + QObject (0xb63c0d5c) 0 + primary-for QFutureWatcherBase (0xb63b6e00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb61d9c30) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb61da8c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb61ea528) 0 + primary-for QThread (0xb61da8c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb61dac00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb61fe348) 0 + primary-for QThreadPool (0xb61dac00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb61fed5c) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb620d000) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb62122c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb620dd20) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb62122c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb621e4ec) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb6212c40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb621e564) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb6212e00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb6212e40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb621ea14) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb6212e40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb621eb7c) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb623b000) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb6233140) 0 empty + std::input_iterator_tag (0xb623b03c) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb62331c0) 0 empty + std::forward_iterator_tag (0xb6233200) 0 empty + std::input_iterator_tag (0xb623b078) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb6233280) 0 empty + std::bidirectional_iterator_tag (0xb62332c0) 0 empty + std::forward_iterator_tag (0xb6233300) 0 empty + std::input_iterator_tag (0xb623b0b4) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb623b3c0) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb623b3fc) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb623b474) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb623b690) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623b780) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623b7f8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623b870) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623b8e8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623b960) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623b9d8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623ba50) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623bac8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623bb40) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623bbb8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623bc30) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623bca8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb623bd20) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb623be10) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb623be88) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb623bf00) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb6254294) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb625430c) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb62543fc) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb6254474) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb62544ec) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6254708) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6254744) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6254780) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb62547bc) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb62547f8) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6254834) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb62548ac) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb62548e8) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6254924) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6254960) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb625499c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb62549d8) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb62723c0) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb629e99c) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb629edd4) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb60f7000) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb60f73fc) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb60f7564) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb60f76cc) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb60f7dd4) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb61327f8) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb613f12c) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb613f384) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb613f3c0) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb613f438) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb613f474) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb613f4ec) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb613f708) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb613f870) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb613f7f8) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb613f8ac) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb613f8e8) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb61bae10) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5fc50f0) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb61ce7c0) 0 empty + __gnu_cxx::new_allocator (0xb5fc512c) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5fc5168) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb61ce880) 0 empty + __gnu_cxx::new_allocator (0xb5fc51a4) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb5fc53c0) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb6025ca8) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb6025ce4) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb6064b40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb6025d20) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb60c099c) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5efd100) 0 + std::allocator (0xb5efd140) 0 empty + __gnu_cxx::new_allocator (0xb60c0a14) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb60c0924) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb60c0a50) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5efd2c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb60c0a8c) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb60c0b40) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5efd4c0) 0 + std::allocator (0xb5efd500) 0 empty + __gnu_cxx::new_allocator (0xb60c0bb8) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb60c0ac8) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb60c0bf4) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb60c0ca8) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5efd680) 0 + std::basic_string, std::allocator >::_Rep_base (0xb60c0c30) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb60c0ce4) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5f97168) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5f97b40) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5f97e88) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5fac640) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5faa7f8) 0 + primary-for std::collate (0xb5fac640) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5fac740) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5faa8e8) 0 + primary-for std::collate (0xb5fac740) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5faad5c) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5faad98) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5dcb6c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5faadd4) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5dcb800) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5dcb840) 0 + primary-for std::collate_byname (0xb5dcb800) + std::locale::facet (0xb5faae4c) 0 + primary-for std::collate (0xb5dcb840) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5dcb8c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5dcb900) 0 + primary-for std::collate_byname (0xb5dcb8c0) + std::locale::facet (0xb5faaf3c) 0 + primary-for std::collate (0xb5dcb900) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5dcbf40) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5dded20) 0 nearly-empty + primary-for std::ios_base::failure (0xb5dcbf40) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5df0fb4) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5df1564) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5df1960) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5ddece4) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5e31384) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5e31618) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5e318ac) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5e98fa0) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5e807f8) 0 + primary-for std::ctype (0xb5e98fa0) + std::ctype_base (0xb5e80834) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5ea5870) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5eb73c0) 0 + primary-for std::__ctype_abstract_base (0xb5ea5870) + std::ctype_base (0xb5eb73fc) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5eaa800) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5cc26e0) 0 + primary-for std::ctype (0xb5eaa800) + std::locale::facet (0xb5eb74ec) 0 + primary-for std::__ctype_abstract_base (0xb5cc26e0) + std::ctype_base (0xb5eb7528) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5eaa9c0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5cc9e60) 0 + primary-for std::ctype_byname (0xb5eaa9c0) + std::locale::facet (0xb5cc8834) 0 + primary-for std::ctype (0xb5cc9e60) + std::ctype_base (0xb5cc8870) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5eaaa40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5eaaa80) 0 + primary-for std::ctype_byname (0xb5eaaa40) + std::__ctype_abstract_base (0xb5ccd4b0) 0 + primary-for std::ctype (0xb5eaaa80) + std::locale::facet (0xb5cc89d8) 0 + primary-for std::__ctype_abstract_base (0xb5ccd4b0) + std::ctype_base (0xb5cc8a14) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5cd2384) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5cdb480) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5cd2bf4) 0 + primary-for std::numpunct (0xb5cdb480) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5cdb540) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5cd2ce4) 0 + primary-for std::numpunct (0xb5cdb540) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5d42348) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5d5fa80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5d5fac0) 0 + primary-for std::numpunct_byname (0xb5d5fa80) + std::locale::facet (0xb5d4299c) 0 + primary-for std::numpunct (0xb5d5fac0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5d5fb00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5d42a8c) 0 + primary-for std::num_get > > (0xb5d5fb00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5d5fb80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5d42b7c) 0 + primary-for std::num_put > > (0xb5d5fb80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5d5fc00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5d5fc40) 0 + primary-for std::numpunct_byname (0xb5d5fc00) + std::locale::facet (0xb5d42c6c) 0 + primary-for std::numpunct (0xb5d5fc40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5d5fcc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5d42d5c) 0 + primary-for std::num_get > > (0xb5d5fcc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5d5fd40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5d42e4c) 0 + primary-for std::num_put > > (0xb5d5fd40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5db3d80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5db44b0) 0 + primary-for std::basic_ios > (0xb5db3d80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5db3dc0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5db45a0) 0 + primary-for std::basic_ios > (0xb5db3dc0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5bfca40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5bfca80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb5bf621c) 4 + primary-for std::basic_ios > (0xb5bfca80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5bf63fc) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5bfcbc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5bfcc00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5bf6438) 4 + primary-for std::basic_ios > (0xb5bfcc00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5bf65dc) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5c3d480) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5c3d4c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5bf6b40) 8 + primary-for std::basic_ios > (0xb5c3d4c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5c3d580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5c3d5c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5bf6ec4) 8 + primary-for std::basic_ios > (0xb5c3d5c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5c5b4ec) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5c5b528) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5c69480) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5c5b564) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5c5bb40) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb5ca4380 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb5ca4400 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5cadb40) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb5ca4380) 0 + primary-for std::basic_iostream > (0xb5cadb40) + subvttidx=4u + std::basic_ios > (0xb5ca43c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5c5bb7c) 12 + primary-for std::basic_ios > (0xb5ca43c0) + std::basic_ostream > (0xb5ca4400) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb5ca43c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5c5be10) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb5ca4700 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb5ca4780 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5cbbbe0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb5ca4700) 0 + primary-for std::basic_iostream > (0xb5cbbbe0) + subvttidx=4u + std::basic_ios > (0xb5ca4740) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb5c5be4c) 12 + primary-for std::basic_ios > (0xb5ca4740) + std::basic_ostream > (0xb5ca4780) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb5ca4740) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb5ac5618) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb5ac55a0) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb5ac5528) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb5ac5474) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb5ac59d8) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5af51e0) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb59e0654) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb59ef370) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb59dfa00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb59ef370) + QFutureInterfaceBase (0xb59e0834) 0 + primary-for QFutureInterface (0xb59dfa00) + QRunnable (0xb59e0870) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb59dfa80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb59ef780) 0 + primary-for QtConcurrent::RunFunctionTask (0xb59dfa80) + QFutureInterface (0xb59dfac0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb59ef780) + QFutureInterfaceBase (0xb59e0a14) 0 + primary-for QFutureInterface (0xb59dfac0) + QRunnable (0xb59e0a50) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb593eca8) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb5943e00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb5943e40) 0 + primary-for QFile (0xb5943e00) + QObject (0xb593ed98) 0 + primary-for QIODevice (0xb5943e40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb597a708) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb598a2d0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5998960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5998c6c) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb59ad9d8) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb59ad960) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb59adac8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57dd03c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57dd12c) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb580cca8) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb580cce4) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb57fd240) 0 + QAbstractFileEngine::ExtensionOption (0xb580cd20) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb57fd2c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb580ce10) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb57fd340) 0 + QAbstractFileEngine::ExtensionOption (0xb580ce4c) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb580c3fc) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb581c4ec) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb582a348) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb582a4ec) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb57fd580) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb57fd5c0) 0 + primary-for QBuffer (0xb57fd580) + QObject (0xb582aa14) 0 + primary-for QIODevice (0xb57fd5c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb5840690) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5840e88) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb57fda00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb584fc6c) 0 + primary-for QFileSystemWatcher (0xb57fda00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb57fdcc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb585f618) 0 + primary-for QFSFileEngine (0xb57fdcc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb57fddc0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb57fde00) 0 + primary-for QProcess (0xb57fddc0) + QObject (0xb585fd98) 0 + primary-for QIODevice (0xb57fde00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb5881a50) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb58a1e4c) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb58a1ec4) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb5881c6c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb58af6cc) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb58af834) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb58bac30) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb56d112c) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56d1564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56d1744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56d1924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56d1b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56d1ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56d1ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56e70b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56e7294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56e7474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56e7654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56e7834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56e7a14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56e7bf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56e7dd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56e7fb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ef1a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ef384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ef564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ef744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ef924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56efb04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56efce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56efec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56f70b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56f7294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56f7474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56f7654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56f7834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56f7a14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56f7bf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56f7dd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56f7fb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb57001a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5700384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5700564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5700744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5700924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5700b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5700ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5700ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb57070b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5707294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5707474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5707654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5707834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5707a14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5707bf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5707dd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5707fb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb570e1a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb570e384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb570e564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb570e744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb570e924) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb57237bc) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb572399c) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb5723870) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb5730078) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb570eb04) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb574a5a0) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb574a528) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb574a690) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb574a618) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb577fa14) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb579203c) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb579221c) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb57923fc) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb578e2c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb57925dc) 0 + primary-for QSettings (0xb578e2c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb578eec0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb578ef00) 0 + primary-for QTemporaryFile (0xb578eec0) + QIODevice (0xb578ef40) 0 + primary-for QFile (0xb578ef00) + QObject (0xb55ca30c) 0 + primary-for QIODevice (0xb578ef40) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb55da474) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55e73c0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55fce4c) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb55d6ac0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb5610ca8) 0 + primary-for QEventLoop (0xb55d6ac0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56222d0) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb55d6e40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb5630690) 0 + primary-for QAbstractEventDispatcher (0xb55d6e40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb5644528) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb565a924) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb565aa14) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5661168) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb5645a00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb5661258) 0 + primary-for QAbstractItemModel (0xb5645a00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb5645ec0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb5645f00) 0 + primary-for QAbstractTableModel (0xb5645ec0) + QObject (0xb5684dd4) 0 + primary-for QAbstractItemModel (0xb5645f00) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb5696140) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb5696180) 0 + primary-for QAbstractListModel (0xb5696140) + QObject (0xb5690870) 0 + primary-for QAbstractItemModel (0xb5696180) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb56b12d0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb56b1a50) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb56b1b40) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb5696b80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb54be870) 0 + primary-for QTimerEvent (0xb5696b80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb5696c40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb54beac8) 0 + primary-for QChildEvent (0xb5696c40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb5696e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb54cc294) 0 + primary-for QCustomEvent (0xb5696e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb5696f00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb54cc690) 0 + primary-for QDynamicPropertyChangeEvent (0xb5696f00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb5696fc0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb54cc8e8) 0 + primary-for QCoreApplication (0xb5696fc0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb54ee30c) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb54ee690) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54eeb40) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb54eec30) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5528078) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb5528168) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb5528474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55287bc) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb5530240) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb55288ac) 0 + primary-for QMimeData (0xb5530240) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb5530500) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb553f3fc) 0 + primary-for QObjectCleanupHandler (0xb5530500) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb5530740) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb553fca8) 0 + primary-for QSharedMemory (0xb5530740) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb5530a00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb554fac8) 0 + primary-for QSignalMapper (0xb5530a00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb5530cc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb555cc30) 0 + primary-for QSocketNotifier (0xb5530cc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb5568ca8) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb5571040) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb55741a4) 0 + primary-for QTimer (0xb5571040) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb55714c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb55852d0) 0 + primary-for QTranslator (0xb55714c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb55717c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb55950f0) 0 + primary-for QLibrary (0xb55717c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55a403c) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb5571b40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb55a4bf4) 0 + primary-for QPluginLoader (0xb5571b40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb53bb7f8) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb53ce618) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb53ceca8) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb53ce99c) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb53e51a4) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb53dee88) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb53ea384) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb53ea654) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb53eaa50) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb541f780) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb542c474) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb542c708) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb544d0f0) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb544d474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5461e10) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb5461f00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5477474) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb5477564) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb547fc6c) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb547fe4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5496d20) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb54a3e4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5294dd4) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb52a3e10) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52b31e0) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb52ce348) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52ced5c) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb52fb99c) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb5348ca8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5372d98) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb538e924) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5198a50) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb51b8780) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51d0654) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb5216258) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5230780) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb5269e10) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb509703c) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb528e7c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb50979d8) 0 + primary-for QTimeLine (0xb528e7c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb50a6dd4) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb50c7f3c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50e04b0) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb50e0618) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb50e05a0) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb50db240) 0 + QVector (0xb50e0654) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb50e0690) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51050b4) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb51051e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5105d98) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb5105ec4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5117e4c) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb5117f78) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb512e12c) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb5147708) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4f9d168) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4fb0708) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50568ac) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb5056924) 0 + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb5075564) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb5075690) 0 + diff --git a/tests/auto/bic/data/QtDBus.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtDBus.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..64b9425 --- /dev/null +++ b/tests/auto/bic/data/QtDBus.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,5260 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb77b9c30) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb77b9c6c) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7c16b40) 0 empty + QUintForSize<4> (0xb77b9ce4) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb77b9e10) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb77b9e4c) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7c16d00) 0 empty + QIntForSize<4> (0xb77b9ec4) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb77c0258) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb77c0870) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb77d521c) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb77d52d0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d54b0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d55a0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d5690) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d5780) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d5870) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d5960) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d5a50) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d5b40) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d5c30) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d5d20) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d5e10) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77d5f00) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77f0000) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77f00f0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77f01e0) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb77f02d0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb77f0d5c) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb780c1e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7828e88) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb6a0c960) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6a3c240) 0 + QBasicAtomicInt (0xb6a33924) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6a44870) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6a80a50) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6a44e4c) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb6aaba50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6af2b40) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6af2dd4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb693f708) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb694a03c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb694a960) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb695c294) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb695cbb8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb696e4ec) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb696ee10) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6983744) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6991078) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb699199c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69a92d0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69a9bf4) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb69bd528) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb69fc834) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb6a02d5c) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb69bd690) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb680b924) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb686f99c) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb68cd258) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb6734b00) 0 + QString (0xb6769ce4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6784000) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb6784e88) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb67cabf4) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb67eb100) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb67caf00) 0 nearly-empty + primary-for std::bad_exception (0xb67eb100) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb67eb240) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb67f01a4) 0 nearly-empty + primary-for std::bad_alloc (0xb67eb240) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb67f0474) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb67f06cc) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb67f0690) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6697960) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb6697744) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb6665ca8) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb66a50b4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb66a5f78) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb66cc258) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb66cc7bc) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb66ccd98) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb66da000) 0 + QGenericArgument (0xb66d81e0) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb66d86cc) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb66d84ec) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb66ec834) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb66ec7bc) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb66ec708) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb66ec960) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb6525ec4) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb652be80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb6530834) 0 + primary-for QIODevice (0xb652be80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb654fb40) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb65729d8) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb6591a50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb65c3258) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb65c3348) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb65c38ac) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb65c3834) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb659df80) 0 + QList (0xb65c38e8) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb65f2654) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb65f2870) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb640b8e8) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb65e2f40) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb640bec4) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb65e2f40) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb6416960) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb641c1a4) 0 + primary-for QTextCodecPlugin (0xb6416960) + QTextCodecFactoryInterface (0xb641b0c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb641c1e0) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb641b0c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb641cb04) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb642b690) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb642b384) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb641b980) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb6438870) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb641b980) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb641ba40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb641ba80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb641ba40) + std::exception (0xb6438a14) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb641ba80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb6438bb8) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb6438d98) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb6438e10) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb6438dd4) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb64ee6cc) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb64ee690) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb62fcfb4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6301078) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb639f000) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb639f0f0) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb639f078) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb639f168) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb639f1e0) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb639f21c) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb639f258) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb639f2d0) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb639f30c) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb63d8a8c) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb63e6708) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb639be00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb63f1780) 0 + primary-for QTextIStream (0xb639be00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb62030c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb62041e0) 0 + primary-for QTextOStream (0xb62030c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb6204ca8) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb6204d20) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb6204c30) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6204d98) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6204e10) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6204e88) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb6204f00) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb6204f3c) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb6204f78) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb62045a0) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb621f03c) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb621f078) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb621f1a4) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb621f12c) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb621f0f0) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb621f21c) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb621f30c) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb621f294) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb621f384) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb621f474) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb621f3fc) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb621f528) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb621f5a0) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb621f618) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb621f654) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb621f690) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb621f6cc) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb62dc618) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb62dc5dc) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb612f3c0) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb6148000) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb612ffb4) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb6148348) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb612fec4) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb6148474) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb6148b7c) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb6148bf4) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb618a780) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb61836cc) 0 + primary-for QFutureInterface (0xb618a780) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb61b4e4c) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb61e26c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb61e54ec) 0 + primary-for QFutureWatcherBase (0xb61e26c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb61e2dc0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb61e2e00) 0 + primary-for QFutureWatcher (0xb61e2dc0) + QObject (0xb6001000) 0 + primary-for QFutureWatcherBase (0xb61e2e00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb6001f3c) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb60068c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb6015834) 0 + primary-for QThread (0xb60068c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb6006c00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb6028618) 0 + primary-for QThreadPool (0xb6006c00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb6038000) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb60382d0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb603f2c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb6044000) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb603f2c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb60447f8) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb603fc40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb6044870) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb603fe00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb603fe40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb6044d20) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb603fe40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb605d294) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb605d2d0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb6061140) 0 empty + std::input_iterator_tag (0xb605d30c) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb60611c0) 0 empty + std::forward_iterator_tag (0xb6061200) 0 empty + std::input_iterator_tag (0xb605d348) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb6061280) 0 empty + std::bidirectional_iterator_tag (0xb60612c0) 0 empty + std::forward_iterator_tag (0xb6061300) 0 empty + std::input_iterator_tag (0xb605d384) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb605d690) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb605d6cc) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb605d744) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb605d960) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605da50) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605dac8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605db40) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605dbb8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605dc30) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605dca8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605dd20) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605dd98) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605de10) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605de88) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605df00) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605df78) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb607c000) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb607c0f0) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb607c168) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb607c1e0) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb607c564) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb607c5dc) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb607c6cc) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb607c744) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb607c7bc) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb607c9d8) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb607ca14) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb607ca50) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb607ca8c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb607cac8) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb607cb04) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb607cb7c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb607cbb8) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb607cbf4) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb607cc30) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb607cc6c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb607cca8) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb609d690) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb60c2c6c) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb5f150b4) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb5f152d0) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb5f156cc) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb5f15834) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb5f1599c) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5f59078) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5f5cac8) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb5f6b3fc) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb5f6b654) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb5f6b690) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb5f6b708) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb5f6b744) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb5f6b7bc) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb5f6b9d8) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb5f6bb40) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb5f6bac8) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb5f6bb7c) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb5f6bbb8) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb5dfa0f0) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5dfa3c0) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5dfb7c0) 0 empty + __gnu_cxx::new_allocator (0xb5dfa3fc) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5dfa438) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5dfb880) 0 empty + __gnu_cxx::new_allocator (0xb5dfa474) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb5dfa690) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5e5bf78) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5e5bfb4) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5ea0b40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5e5bf3c) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5eedc6c) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5d3a100) 0 + std::allocator (0xb5d3a140) 0 empty + __gnu_cxx::new_allocator (0xb5eedce4) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5eedbf4) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5eedd20) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5d3a2c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5eedd5c) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5eede10) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5d3a4c0) 0 + std::allocator (0xb5d3a500) 0 empty + __gnu_cxx::new_allocator (0xb5eede88) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5eedd98) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5eedec4) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5eedf78) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5d3a680) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5eedf00) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5eedfb4) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5dd2438) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5dd2e10) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5de012c) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5de8640) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5de6ac8) 0 + primary-for std::collate (0xb5de8640) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5de8740) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5de6bb8) 0 + primary-for std::collate (0xb5de8740) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5de6b7c) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5de6c6c) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5c096c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5c0f000) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5c09800) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5c09840) 0 + primary-for std::collate_byname (0xb5c09800) + std::locale::facet (0xb5c0f078) 0 + primary-for std::collate (0xb5c09840) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5c098c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5c09900) 0 + primary-for std::collate_byname (0xb5c098c0) + std::locale::facet (0xb5c0f168) 0 + primary-for std::collate (0xb5c09900) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5c09f40) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5c29000) 0 nearly-empty + primary-for std::ios_base::failure (0xb5c09f40) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5c2d294) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5c2d834) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5c2dc30) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5c0f21c) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5c69654) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5c698e8) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5c69b7c) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5cd4fa0) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5cb1ac8) 0 + primary-for std::ctype (0xb5cd4fa0) + std::ctype_base (0xb5cb1b04) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5ce3870) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5cf3690) 0 + primary-for std::__ctype_abstract_base (0xb5ce3870) + std::ctype_base (0xb5cf36cc) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5ce7800) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5afe6e0) 0 + primary-for std::ctype (0xb5ce7800) + std::locale::facet (0xb5cf37bc) 0 + primary-for std::__ctype_abstract_base (0xb5afe6e0) + std::ctype_base (0xb5cf37f8) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5ce79c0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5b05e60) 0 + primary-for std::ctype_byname (0xb5ce79c0) + std::locale::facet (0xb5b04b04) 0 + primary-for std::ctype (0xb5b05e60) + std::ctype_base (0xb5b04b40) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5ce7a40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5ce7a80) 0 + primary-for std::ctype_byname (0xb5ce7a40) + std::__ctype_abstract_base (0xb5b094b0) 0 + primary-for std::ctype (0xb5ce7a80) + std::locale::facet (0xb5b04ca8) 0 + primary-for std::__ctype_abstract_base (0xb5b094b0) + std::ctype_base (0xb5b04ce4) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5b0d654) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5b17480) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5b0dec4) 0 + primary-for std::numpunct (0xb5b17480) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5b17540) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5b0dfb4) 0 + primary-for std::numpunct (0xb5b17540) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5b69618) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5b9ba80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5b9bac0) 0 + primary-for std::numpunct_byname (0xb5b9ba80) + std::locale::facet (0xb5b69c6c) 0 + primary-for std::numpunct (0xb5b9bac0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5b9bb00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5b69d5c) 0 + primary-for std::num_get > > (0xb5b9bb00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5b9bb80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5b69e4c) 0 + primary-for std::num_put > > (0xb5b9bb80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5b9bc00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5b9bc40) 0 + primary-for std::numpunct_byname (0xb5b9bc00) + std::locale::facet (0xb5b69f3c) 0 + primary-for std::numpunct (0xb5b9bc40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5b9bcc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5b695dc) 0 + primary-for std::num_get > > (0xb5b9bcc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5b9bd40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5b69f00) 0 + primary-for std::num_put > > (0xb5b9bd40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5bf0d80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5be27bc) 0 + primary-for std::basic_ios > (0xb5bf0d80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5bf0dc0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5be28ac) 0 + primary-for std::basic_ios > (0xb5bf0dc0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5a3aa40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5a3aa80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb5a224ec) 4 + primary-for std::basic_ios > (0xb5a3aa80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5a226cc) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5a3abc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5a3ac00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5a22708) 4 + primary-for std::basic_ios > (0xb5a3ac00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5a228ac) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5a79480) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5a794c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5a22e10) 8 + primary-for std::basic_ios > (0xb5a794c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5a79580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5a795c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5a880f0) 8 + primary-for std::basic_ios > (0xb5a795c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5a887f8) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5a88834) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5aa6480) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5a88870) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5a88e4c) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb5ae0380 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb5ae0400 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5aeab40) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb5ae0380) 0 + primary-for std::basic_iostream > (0xb5aeab40) + subvttidx=4u + std::basic_ios > (0xb5ae03c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5a88e88) 12 + primary-for std::basic_ios > (0xb5ae03c0) + std::basic_ostream > (0xb5ae0400) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb5ae03c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5af3000) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb5ae0700 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb5ae0780 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb58f4be0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb5ae0700) 0 + primary-for std::basic_iostream > (0xb58f4be0) + subvttidx=4u + std::basic_ios > (0xb5ae0740) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb5af303c) 12 + primary-for std::basic_ios > (0xb5ae0740) + std::basic_ostream > (0xb5ae0780) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb5ae0740) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb5af3924) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb5af38ac) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb5af3834) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb5af3780) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb5af3ce4) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb59264b0) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb5817924) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb582c370) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb581ca00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb582c370) + QFutureInterfaceBase (0xb5817b04) 0 + primary-for QFutureInterface (0xb581ca00) + QRunnable (0xb5817b40) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb581ca80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb582c780) 0 + primary-for QtConcurrent::RunFunctionTask (0xb581ca80) + QFutureInterface (0xb581cac0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb582c780) + QFutureInterfaceBase (0xb5817ce4) 0 + primary-for QFutureInterface (0xb581cac0) + QRunnable (0xb5817d20) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb5771f78) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb577fe00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb577fe40) 0 + primary-for QFile (0xb577fe00) + QObject (0xb579e078) 0 + primary-for QIODevice (0xb577fe40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57b59d8) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb57c65a0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57d4c30) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb57d4f3c) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb57eaca8) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb57eac30) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb57ead98) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb561630c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56163fc) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb5644f78) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb5644fb4) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb5639240) 0 + QAbstractFileEngine::ExtensionOption (0xb5657000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb56392c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb56570f0) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb5639340) 0 + QAbstractFileEngine::ExtensionOption (0xb565712c) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb56446cc) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56577bc) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb5662618) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb56627bc) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb5639580) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb56395c0) 0 + primary-for QBuffer (0xb5639580) + QObject (0xb5662ce4) 0 + primary-for QIODevice (0xb56395c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb567799c) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5686168) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb5639a00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb5686f78) 0 + primary-for QFileSystemWatcher (0xb5639a00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb5639cc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb5698924) 0 + primary-for QFSFileEngine (0xb5639cc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb5639dc0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb5639e00) 0 + primary-for QProcess (0xb5639dc0) + QObject (0xb56ac2d0) 0 + primary-for QIODevice (0xb5639e00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb56bcd20) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb56e712c) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb56e71a4) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb56bcf3c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb56e799c) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56e7b04) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb54ecf00) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb550c3fc) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550c834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550ca14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550cbf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550cdd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550cfb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55211a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5521384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5521564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5521744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5521924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5521b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5521ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5521ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552b0b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552b294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552b474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552b654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552b834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552ba14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552bbf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552bdd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552bfb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55321a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5532384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5532564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5532744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5532924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5532b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5532ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5532ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553a0b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553a294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553a474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553a654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553a834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553aa14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553abf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553add4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553afb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55431a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5543384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5543564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5543744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5543924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5543b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5543ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5543ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55480b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548a14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548bf4) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb5560a8c) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb5560c6c) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb5560b40) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb556c348) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb5548dd4) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb5582870) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb55827f8) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb5582960) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb55828e8) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb55bace4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55c530c) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb55c54ec) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb55c56cc) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb55cc2c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb55c58ac) 0 + primary-for QSettings (0xb55cc2c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb55ccec0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb55ccf00) 0 + primary-for QTemporaryFile (0xb55ccec0) + QIODevice (0xb55ccf40) 0 + primary-for QFile (0xb55ccf00) + QObject (0xb5403618) 0 + primary-for QIODevice (0xb55ccf40) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb5415744) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5423690) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb544a0f0) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb5412ac0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb544af78) 0 + primary-for QEventLoop (0xb5412ac0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb545c5a0) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb5412e40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb546b960) 0 + primary-for QAbstractEventDispatcher (0xb5412e40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb547e834) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5493bf4) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb5493ce4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb549c438) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb5481a00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb549c528) 0 + primary-for QAbstractItemModel (0xb5481a00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb5481ec0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb5481f00) 0 + primary-for QAbstractTableModel (0xb5481ec0) + QObject (0xb54c80b4) 0 + primary-for QAbstractItemModel (0xb5481f00) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb54d2140) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb54d2180) 0 + primary-for QAbstractListModel (0xb54d2140) + QObject (0xb54c8b40) 0 + primary-for QAbstractItemModel (0xb54d2180) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb54e95a0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54e9d20) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb54e9e10) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb54d2b80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb52f4b40) 0 + primary-for QTimerEvent (0xb54d2b80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb54d2c40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb52f4d98) 0 + primary-for QChildEvent (0xb54d2c40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb54d2e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb5305564) 0 + primary-for QCustomEvent (0xb54d2e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb54d2f00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb5305960) 0 + primary-for QDynamicPropertyChangeEvent (0xb54d2f00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb54d2fc0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb5305bb8) 0 + primary-for QCoreApplication (0xb54d2fc0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb532a5dc) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb532a960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb532ae10) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb532af00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5362348) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb5362438) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb5362744) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5362a8c) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb536c240) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb5362b7c) 0 + primary-for QMimeData (0xb536c240) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb536c500) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb53786cc) 0 + primary-for QObjectCleanupHandler (0xb536c500) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb536c740) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb5378f78) 0 + primary-for QSharedMemory (0xb536c740) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb536ca00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb538ad98) 0 + primary-for QSignalMapper (0xb536ca00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb536ccc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb5399f00) 0 + primary-for QSocketNotifier (0xb536ccc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb53a4f78) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb53ad040) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb53b0474) 0 + primary-for QTimer (0xb53ad040) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb53ad4c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb53c15a0) 0 + primary-for QTranslator (0xb53ad4c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb53ad7c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb53d03c0) 0 + primary-for QLibrary (0xb53ad7c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb53de30c) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb53adb40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb53deec4) 0 + primary-for QPluginLoader (0xb53adb40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb51f4ac8) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb52098e8) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb5209f78) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb5209c6c) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb5220474) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb5220168) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb5225654) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb5225924) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb5225d20) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb5259a50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5268744) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb52689d8) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb52843c0) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb5284744) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52a40f0) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb52a41e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52b2744) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb52b2834) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52baf3c) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb52cc0b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52cc690) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb50ca12c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50caa14) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb50ec0f0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50ec4b0) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb510a618) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb511b03c) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb5134c6c) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb5178f78) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51ac960) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb51c6bf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fd4d20) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb4ff2a50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb500b924) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb5052528) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb506ca50) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb50b00b4) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb4ec830c) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb4ecc7c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb4ec8ca8) 0 + primary-for QTimeLine (0xb4ecc7c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb4efa078) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb4f101e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f1a780) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4f1a8e8) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4f1a870) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb4f17240) 0 + QVector (0xb4f1a924) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb4f1a960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f3d384) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb4f3d4b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f4e078) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb4f4e1a4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f6312c) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb4f63258) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb4f633fc) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb4f809d8) 0 + +Class QDomImplementation + size=4 align=4 + base size=4 base align=4 +QDomImplementation (0xb4f80fb4) 0 + +Class QDomNode + size=4 align=4 + base size=4 base align=4 +QDomNode (0xb4f964b0) 0 + +Class QDomNodeList + size=4 align=4 + base size=4 base align=4 +QDomNodeList (0xb4f9d6cc) 0 + +Class QDomDocumentType + size=4 align=4 + base size=4 base align=4 +QDomDocumentType (0xb4fad000) 0 + QDomNode (0xb4f9de88) 0 + +Class QDomDocument + size=4 align=4 + base size=4 base align=4 +QDomDocument (0xb4fad0c0) 0 + QDomNode (0xb4fae438) 0 + +Class QDomNamedNodeMap + size=4 align=4 + base size=4 base align=4 +QDomNamedNodeMap (0xb4faebb8) 0 + +Class QDomDocumentFragment + size=4 align=4 + base size=4 base align=4 +QDomDocumentFragment (0xb4fad280) 0 + QDomNode (0xb4fbd294) 0 + +Class QDomCharacterData + size=4 align=4 + base size=4 base align=4 +QDomCharacterData (0xb4fad340) 0 + QDomNode (0xb4fbd834) 0 + +Class QDomAttr + size=4 align=4 + base size=4 base align=4 +QDomAttr (0xb4fad380) 0 + QDomNode (0xb4fbdd5c) 0 + +Class QDomElement + size=4 align=4 + base size=4 base align=4 +QDomElement (0xb4fad480) 0 + QDomNode (0xb4fc530c) 0 + +Class QDomText + size=4 align=4 + base size=4 base align=4 +QDomText (0xb4fad640) 0 + QDomCharacterData (0xb4fad680) 0 + QDomNode (0xb4fc5b7c) 0 + +Class QDomComment + size=4 align=4 + base size=4 base align=4 +QDomComment (0xb4fad740) 0 + QDomCharacterData (0xb4fad780) 0 + QDomNode (0xb4dd11e0) 0 + +Class QDomCDATASection + size=4 align=4 + base size=4 base align=4 +QDomCDATASection (0xb4fad840) 0 + QDomText (0xb4fad880) 0 + QDomCharacterData (0xb4fad8c0) 0 + QDomNode (0xb4dd1780) 0 + +Class QDomNotation + size=4 align=4 + base size=4 base align=4 +QDomNotation (0xb4fad980) 0 + QDomNode (0xb4dd1d20) 0 + +Class QDomEntity + size=4 align=4 + base size=4 base align=4 +QDomEntity (0xb4fada40) 0 + QDomNode (0xb4dd62d0) 0 + +Class QDomEntityReference + size=4 align=4 + base size=4 base align=4 +QDomEntityReference (0xb4fadb00) 0 + QDomNode (0xb4dd6870) 0 + +Class QDomProcessingInstruction + size=4 align=4 + base size=4 base align=4 +QDomProcessingInstruction (0xb4fadbc0) 0 + QDomNode (0xb4dd6e10) 0 + +Class QXmlNamespaceSupport + size=4 align=4 + base size=4 base align=4 +QXmlNamespaceSupport (0xb4dde3c0) 0 + +Class QXmlAttributes::Attribute + size=16 align=4 + base size=16 base align=4 +QXmlAttributes::Attribute (0xb4dde744) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4ddea50) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4dde9d8) 0 + +Vtable for QXmlAttributes +QXmlAttributes::_ZTV14QXmlAttributes: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QXmlAttributes) +8 QXmlAttributes::~QXmlAttributes +12 QXmlAttributes::~QXmlAttributes + +Class QXmlAttributes + size=12 align=4 + base size=12 base align=4 +QXmlAttributes (0xb4dde690) 0 + vptr=((& QXmlAttributes::_ZTV14QXmlAttributes) + 8u) + +Vtable for QXmlInputSource +QXmlInputSource::_ZTV15QXmlInputSource: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QXmlInputSource) +8 QXmlInputSource::~QXmlInputSource +12 QXmlInputSource::~QXmlInputSource +16 QXmlInputSource::setData +20 QXmlInputSource::setData +24 QXmlInputSource::fetchData +28 QXmlInputSource::data +32 QXmlInputSource::next +36 QXmlInputSource::reset +40 QXmlInputSource::fromRawData + +Class QXmlInputSource + size=8 align=4 + base size=8 base align=4 +QXmlInputSource (0xb4ddeec4) 0 + vptr=((& QXmlInputSource::_ZTV15QXmlInputSource) + 8u) + +Class QXmlParseException + size=4 align=4 + base size=4 base align=4 +QXmlParseException (0xb4e080b4) 0 + +Vtable for QXmlReader +QXmlReader::_ZTV10QXmlReader: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QXmlReader) +8 QXmlReader::~QXmlReader +12 QXmlReader::~QXmlReader +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual + +Class QXmlReader + size=4 align=4 + base size=4 base align=4 +QXmlReader (0xb4e0821c) 0 nearly-empty + vptr=((& QXmlReader::_ZTV10QXmlReader) + 8u) + +Vtable for QXmlSimpleReader +QXmlSimpleReader::_ZTV16QXmlSimpleReader: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QXmlSimpleReader) +8 QXmlSimpleReader::~QXmlSimpleReader +12 QXmlSimpleReader::~QXmlSimpleReader +16 QXmlSimpleReader::feature +20 QXmlSimpleReader::setFeature +24 QXmlSimpleReader::hasFeature +28 QXmlSimpleReader::property +32 QXmlSimpleReader::setProperty +36 QXmlSimpleReader::hasProperty +40 QXmlSimpleReader::setEntityResolver +44 QXmlSimpleReader::entityResolver +48 QXmlSimpleReader::setDTDHandler +52 QXmlSimpleReader::DTDHandler +56 QXmlSimpleReader::setContentHandler +60 QXmlSimpleReader::contentHandler +64 QXmlSimpleReader::setErrorHandler +68 QXmlSimpleReader::errorHandler +72 QXmlSimpleReader::setLexicalHandler +76 QXmlSimpleReader::lexicalHandler +80 QXmlSimpleReader::setDeclHandler +84 QXmlSimpleReader::declHandler +88 QXmlSimpleReader::parse +92 QXmlSimpleReader::parse +96 QXmlSimpleReader::parse +100 QXmlSimpleReader::parseContinue + +Class QXmlSimpleReader + size=8 align=4 + base size=8 base align=4 +QXmlSimpleReader (0xb4e0a100) 0 + vptr=((& QXmlSimpleReader::_ZTV16QXmlSimpleReader) + 8u) + QXmlReader (0xb4e08564) 0 nearly-empty + primary-for QXmlSimpleReader (0xb4e0a100) + +Vtable for QXmlLocator +QXmlLocator::_ZTV11QXmlLocator: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QXmlLocator) +8 QXmlLocator::~QXmlLocator +12 QXmlLocator::~QXmlLocator +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QXmlLocator + size=4 align=4 + base size=4 base align=4 +QXmlLocator (0xb4e08b04) 0 nearly-empty + vptr=((& QXmlLocator::_ZTV11QXmlLocator) + 8u) + +Vtable for QXmlContentHandler +QXmlContentHandler::_ZTV18QXmlContentHandler: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlContentHandler) +8 QXmlContentHandler::~QXmlContentHandler +12 QXmlContentHandler::~QXmlContentHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QXmlContentHandler + size=4 align=4 + base size=4 base align=4 +QXmlContentHandler (0xb4e08ce4) 0 nearly-empty + vptr=((& QXmlContentHandler::_ZTV18QXmlContentHandler) + 8u) + +Vtable for QXmlErrorHandler +QXmlErrorHandler::_ZTV16QXmlErrorHandler: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QXmlErrorHandler) +8 QXmlErrorHandler::~QXmlErrorHandler +12 QXmlErrorHandler::~QXmlErrorHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QXmlErrorHandler + size=4 align=4 + base size=4 base align=4 +QXmlErrorHandler (0xb4e08348) 0 nearly-empty + vptr=((& QXmlErrorHandler::_ZTV16QXmlErrorHandler) + 8u) + +Vtable for QXmlDTDHandler +QXmlDTDHandler::_ZTV14QXmlDTDHandler: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QXmlDTDHandler) +8 QXmlDTDHandler::~QXmlDTDHandler +12 QXmlDTDHandler::~QXmlDTDHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QXmlDTDHandler + size=4 align=4 + base size=4 base align=4 +QXmlDTDHandler (0xb4e1e258) 0 nearly-empty + vptr=((& QXmlDTDHandler::_ZTV14QXmlDTDHandler) + 8u) + +Vtable for QXmlEntityResolver +QXmlEntityResolver::_ZTV18QXmlEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlEntityResolver) +8 QXmlEntityResolver::~QXmlEntityResolver +12 QXmlEntityResolver::~QXmlEntityResolver +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QXmlEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlEntityResolver (0xb4e1e5a0) 0 nearly-empty + vptr=((& QXmlEntityResolver::_ZTV18QXmlEntityResolver) + 8u) + +Vtable for QXmlLexicalHandler +QXmlLexicalHandler::_ZTV18QXmlLexicalHandler: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlLexicalHandler) +8 QXmlLexicalHandler::~QXmlLexicalHandler +12 QXmlLexicalHandler::~QXmlLexicalHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual + +Class QXmlLexicalHandler + size=4 align=4 + base size=4 base align=4 +QXmlLexicalHandler (0xb4e1e924) 0 nearly-empty + vptr=((& QXmlLexicalHandler::_ZTV18QXmlLexicalHandler) + 8u) + +Vtable for QXmlDeclHandler +QXmlDeclHandler::_ZTV15QXmlDeclHandler: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QXmlDeclHandler) +8 QXmlDeclHandler::~QXmlDeclHandler +12 QXmlDeclHandler::~QXmlDeclHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QXmlDeclHandler + size=4 align=4 + base size=4 base align=4 +QXmlDeclHandler (0xb4e1ec6c) 0 nearly-empty + vptr=((& QXmlDeclHandler::_ZTV15QXmlDeclHandler) + 8u) + +Vtable for QXmlDefaultHandler +QXmlDefaultHandler::_ZTV18QXmlDefaultHandler: 73u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +8 QXmlDefaultHandler::~QXmlDefaultHandler +12 QXmlDefaultHandler::~QXmlDefaultHandler +16 QXmlDefaultHandler::setDocumentLocator +20 QXmlDefaultHandler::startDocument +24 QXmlDefaultHandler::endDocument +28 QXmlDefaultHandler::startPrefixMapping +32 QXmlDefaultHandler::endPrefixMapping +36 QXmlDefaultHandler::startElement +40 QXmlDefaultHandler::endElement +44 QXmlDefaultHandler::characters +48 QXmlDefaultHandler::ignorableWhitespace +52 QXmlDefaultHandler::processingInstruction +56 QXmlDefaultHandler::skippedEntity +60 QXmlDefaultHandler::errorString +64 QXmlDefaultHandler::warning +68 QXmlDefaultHandler::error +72 QXmlDefaultHandler::fatalError +76 QXmlDefaultHandler::notationDecl +80 QXmlDefaultHandler::unparsedEntityDecl +84 QXmlDefaultHandler::resolveEntity +88 QXmlDefaultHandler::startDTD +92 QXmlDefaultHandler::endDTD +96 QXmlDefaultHandler::startEntity +100 QXmlDefaultHandler::endEntity +104 QXmlDefaultHandler::startCDATA +108 QXmlDefaultHandler::endCDATA +112 QXmlDefaultHandler::comment +116 QXmlDefaultHandler::attributeDecl +120 QXmlDefaultHandler::internalEntityDecl +124 QXmlDefaultHandler::externalEntityDecl +128 (int (*)(...))-0x000000004 +132 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +136 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandlerD1Ev +140 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandlerD0Ev +144 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandler7warningERK18QXmlParseException +148 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandler5errorERK18QXmlParseException +152 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandler10fatalErrorERK18QXmlParseException +156 QXmlDefaultHandler::_ZThn4_NK18QXmlDefaultHandler11errorStringEv +160 (int (*)(...))-0x000000008 +164 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +168 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD1Ev +172 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD0Ev +176 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler12notationDeclERK7QStringS2_S2_ +180 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler18unparsedEntityDeclERK7QStringS2_S2_S2_ +184 QXmlDefaultHandler::_ZThn8_NK18QXmlDefaultHandler11errorStringEv +188 (int (*)(...))-0x00000000c +192 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +196 QXmlDefaultHandler::_ZThn12_N18QXmlDefaultHandlerD1Ev +200 QXmlDefaultHandler::_ZThn12_N18QXmlDefaultHandlerD0Ev +204 QXmlDefaultHandler::_ZThn12_N18QXmlDefaultHandler13resolveEntityERK7QStringS2_RP15QXmlInputSource +208 QXmlDefaultHandler::_ZThn12_NK18QXmlDefaultHandler11errorStringEv +212 (int (*)(...))-0x000000010 +216 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +220 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD1Ev +224 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD0Ev +228 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler8startDTDERK7QStringS2_S2_ +232 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler6endDTDEv +236 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler11startEntityERK7QString +240 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler9endEntityERK7QString +244 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler10startCDATAEv +248 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler8endCDATAEv +252 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler7commentERK7QString +256 QXmlDefaultHandler::_ZThn16_NK18QXmlDefaultHandler11errorStringEv +260 (int (*)(...))-0x000000014 +264 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +268 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandlerD1Ev +272 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandlerD0Ev +276 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandler13attributeDeclERK7QStringS2_S2_S2_S2_ +280 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandler18internalEntityDeclERK7QStringS2_ +284 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandler18externalEntityDeclERK7QStringS2_S2_ +288 QXmlDefaultHandler::_ZThn20_NK18QXmlDefaultHandler11errorStringEv + +Class QXmlDefaultHandler + size=28 align=4 + base size=28 base align=4 +QXmlDefaultHandler (0xb4e2f7e8) 0 + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 8u) + QXmlContentHandler (0xb4e1efb4) 0 nearly-empty + primary-for QXmlDefaultHandler (0xb4e2f7e8) + QXmlErrorHandler (0xb4e1e03c) 4 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 136u) + QXmlDTDHandler (0xb4e1e384) 8 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 168u) + QXmlEntityResolver (0xb4e1e6cc) 12 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 196u) + QXmlLexicalHandler (0xb4e1ea50) 16 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 220u) + QXmlDeclHandler (0xb4e1ed98) 20 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 268u) + +Vtable for QDBusAbstractAdaptor +QDBusAbstractAdaptor::_ZTV20QDBusAbstractAdaptor: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QDBusAbstractAdaptor) +8 QDBusAbstractAdaptor::metaObject +12 QDBusAbstractAdaptor::qt_metacast +16 QDBusAbstractAdaptor::qt_metacall +20 QDBusAbstractAdaptor::~QDBusAbstractAdaptor +24 QDBusAbstractAdaptor::~QDBusAbstractAdaptor +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QDBusAbstractAdaptor + size=8 align=4 + base size=8 base align=4 +QDBusAbstractAdaptor (0xb4e4d240) 0 + vptr=((& QDBusAbstractAdaptor::_ZTV20QDBusAbstractAdaptor) + 8u) + QObject (0xb4e468ac) 0 + primary-for QDBusAbstractAdaptor (0xb4e4d240) + +Class QDBusError + size=16 align=4 + base size=16 base align=4 +QDBusError (0xb4e641e0) 0 + +Class QDBusMessage + size=4 align=4 + base size=4 base align=4 +QDBusMessage (0xb4e64780) 0 + +Class QDBusObjectPath + size=4 align=4 + base size=4 base align=4 +QDBusObjectPath (0xb4e4d6c0) 0 + QString (0xb4e6b6cc) 0 + +Class QDBusSignature + size=4 align=4 + base size=4 base align=4 +QDBusSignature (0xb4e4db00) 0 + QString (0xb4e7fec4) 0 + +Class QDBusVariant + size=12 align=4 + base size=12 base align=4 +QDBusVariant (0xb4e4df40) 0 + QVariant (0xb4e946cc) 0 + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4e9e0b4) 0 empty + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4e9e258) 0 empty + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb4e9e3fc) 0 empty + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4e9e5a0) 0 empty + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb4e9e744) 0 empty + +Class QDBusConnection + size=4 align=4 + base size=4 base align=4 +QDBusConnection (0xb4e9e8e8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4eac690) 0 + +Vtable for QDBusAbstractInterface +QDBusAbstractInterface::_ZTV22QDBusAbstractInterface: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QDBusAbstractInterface) +8 QDBusAbstractInterface::metaObject +12 QDBusAbstractInterface::qt_metacast +16 QDBusAbstractInterface::qt_metacall +20 QDBusAbstractInterface::~QDBusAbstractInterface +24 QDBusAbstractInterface::~QDBusAbstractInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QDBusAbstractInterface::connectNotify +52 QDBusAbstractInterface::disconnectNotify + +Class QDBusAbstractInterface + size=8 align=4 + base size=8 base align=4 +QDBusAbstractInterface (0xb4e99940) 0 + vptr=((& QDBusAbstractInterface::_ZTV22QDBusAbstractInterface) + 8u) + QObject (0xb4ec1348) 0 + primary-for QDBusAbstractInterface (0xb4e99940) + +Class QDBusArgument + size=4 align=4 + base size=4 base align=4 +QDBusArgument (0xb4cd712c) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb4cdf9d8) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb4cdfa50) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb4d0c000) 0 + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb4d0c078) 0 + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4d0c21c) 0 empty + +Class QDBusReply + size=28 align=4 + base size=28 base align=4 +QDBusReply (0xb4d0c654) 0 + +Class QDBusReply + size=16 align=4 + base size=16 base align=4 +QDBusReply (0xb4d0c924) 0 + +Vtable for QDBusConnectionInterface +QDBusConnectionInterface::_ZTV24QDBusConnectionInterface: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QDBusConnectionInterface) +8 QDBusConnectionInterface::metaObject +12 QDBusConnectionInterface::qt_metacast +16 QDBusConnectionInterface::qt_metacall +20 QDBusConnectionInterface::~QDBusConnectionInterface +24 QDBusConnectionInterface::~QDBusConnectionInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QDBusConnectionInterface::connectNotify +52 QDBusConnectionInterface::disconnectNotify + +Class QDBusConnectionInterface + size=8 align=4 + base size=8 base align=4 +QDBusConnectionInterface (0xb4d3f100) 0 + vptr=((& QDBusConnectionInterface::_ZTV24QDBusConnectionInterface) + 8u) + QDBusAbstractInterface (0xb4d3f140) 0 + primary-for QDBusConnectionInterface (0xb4d3f100) + QObject (0xb4d42078) 0 + primary-for QDBusAbstractInterface (0xb4d3f140) + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb4d42c6c) 0 empty + +Class QDBusContext + size=4 align=4 + base size=4 base align=4 +QDBusContext (0xb4d42e4c) 0 + +Vtable for QDBusInterface +QDBusInterface::_ZTV14QDBusInterface: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDBusInterface) +8 QDBusInterface::metaObject +12 QDBusInterface::qt_metacast +16 QDBusInterface::qt_metacall +20 QDBusInterface::~QDBusInterface +24 QDBusInterface::~QDBusInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QDBusAbstractInterface::connectNotify +52 QDBusAbstractInterface::disconnectNotify + +Class QDBusInterface + size=8 align=4 + base size=8 base align=4 +QDBusInterface (0xb4d3f540) 0 + vptr=((& QDBusInterface::_ZTV14QDBusInterface) + 8u) + QDBusAbstractInterface (0xb4d3f580) 0 + primary-for QDBusInterface (0xb4d3f540) + QObject (0xb4d4f168) 0 + primary-for QDBusAbstractInterface (0xb4d3f580) + +Class QDBusMetaType + size=1 align=1 + base size=0 base align=1 +QDBusMetaType (0xb4d4f5a0) 0 empty + +Vtable for QDBusServer +QDBusServer::_ZTV11QDBusServer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDBusServer) +8 QDBusServer::metaObject +12 QDBusServer::qt_metacast +16 QDBusServer::qt_metacall +20 QDBusServer::~QDBusServer +24 QDBusServer::~QDBusServer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QDBusServer + size=12 align=4 + base size=12 base align=4 +QDBusServer (0xb4d3f840) 0 + vptr=((& QDBusServer::_ZTV11QDBusServer) + 8u) + QObject (0xb4d4f708) 0 + primary-for QDBusServer (0xb4d3f840) + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4daa474) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4dbda14) 0 + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb4c545dc) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4c54b04) 0 + +Class QMap::Node + size=24 align=4 + base size=24 base align=4 +QMap::Node (0xb4c54fb4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ca621c) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb4ca6294) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4ad5690) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4ad5618) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4ad5f00) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4ad5e88) 0 + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb4b08e10) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4b08f3c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4b191a4) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4b1921c) 0 + +Class QMap::PayloadNode + size=20 align=4 + base size=20 base align=4 +QMap::PayloadNode (0xb4b374b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4b37ce4) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4b37d5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4b37fb4) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4b5d03c) 0 + diff --git a/tests/auto/bic/data/QtDesigner.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtDesigner.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..2ed7da0 --- /dev/null +++ b/tests/auto/bic/data/QtDesigner.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,6940 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb77a5654) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb77a5690) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7be5f40) 0 empty + QUintForSize<4> (0xb77a5708) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb77a5834) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb77a5870) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb77ab100) 0 empty + QIntForSize<4> (0xb77a58e8) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb77a5c6c) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb77b3294) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb77b3c30) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb77b3ce4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77b3ec4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77b3fb4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77ca0b4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77ca1a4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77ca294) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77ca384) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77ca474) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77ca564) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77ca654) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77ca744) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77ca834) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77ca924) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77caa14) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cab04) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cabf4) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb77cace4) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb77e3780) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb77e3bf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb69e88ac) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb69fc384) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6a21640) 0 + QBasicAtomicInt (0xb6a23348) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6a34294) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6a6f474) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6a34870) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb6a9e474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb68e6564) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68e67f8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb692c12c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb692ca50) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb693f384) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb693fca8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69515dc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6951f00) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6964834) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6972168) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6972a8c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69873c0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6987ce4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb699d618) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb699df3c) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb67ec258) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb67f4780) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb69b20b4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68032d0) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb68623c0) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb68b4c6c) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb6706f00) 0 + QString (0xb6761708) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6761a14) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb67798ac) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb67c5618) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb65d3500) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb67c5924) 0 nearly-empty + primary-for std::bad_exception (0xb65d3500) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb65d3640) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb67c5bf4) 0 nearly-empty + primary-for std::bad_alloc (0xb65d3640) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb67c5ec4) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb65e7078) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb65e703c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6684384) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb6684168) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb66716cc) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb66989d8) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6698960) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb66b0c6c) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb66bc1e0) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb66bc7bc) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb66bd400) 0 + QGenericArgument (0xb66bcbf4) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb64d10f0) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb66bcf00) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb64e0258) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb64e01e0) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb64e012c) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb64e0384) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb65168e8) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb652e280) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb652c258) 0 + primary-for QIODevice (0xb652e280) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6547528) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb65623fc) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb6583474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb65aac6c) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb65aad5c) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb65b72d0) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb65b7258) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb65ad380) 0 + QList (0xb65b730c) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb63da078) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb63da294) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb63fc30c) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb63fb340) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb63fc8e8) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb63fb340) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb63fef00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb63fcc30) 0 + primary-for QTextCodecPlugin (0xb63fef00) + QTextCodecFactoryInterface (0xb63fb4c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb63fcc6c) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb63fb4c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb64124b0) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb641d0b4) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb6412d98) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb63fbd80) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb6425294) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb63fbd80) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb63fbe40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb63fbe80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb63fbe40) + std::exception (0xb6425438) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb63fbe80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb64255dc) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb64257bc) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb6425834) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb64257f8) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb62e40f0) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb62e40b4) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb62ed9d8) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb62eda8c) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb636ea14) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb636eb04) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb636ea8c) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb636eb7c) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb636ebf4) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb636ec30) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb636ec6c) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb636ece4) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb636ed20) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb63c74b0) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb61d512c) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb61dd200) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb61e81a4) 0 + primary-for QTextIStream (0xb61dd200) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb61dd4c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb61e8c30) 0 + primary-for QTextOStream (0xb61dd4c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb61f5690) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb61f5708) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb61f5618) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb61f5780) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb61f57f8) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb61f5870) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb61f58e8) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb61f5924) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb61f5960) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb61f59d8) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb61f5a50) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb61f5a8c) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb61f5bb8) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb61f5b40) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb61f5b04) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb61f5c30) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb61f5d20) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb61f5ca8) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb61f5d98) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb61f5e88) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb61f5e10) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb61f5f3c) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb61f5fb4) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb620e03c) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb620e078) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb620e0b4) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb620e0f0) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb60d403c) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb60d4000) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb6117dd4) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb6133a14) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb613399c) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb6133d5c) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb61338ac) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb6133e88) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb6156528) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb61565a0) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb616bb80) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb61840b4) 0 + primary-for QFutureInterface (0xb616bb80) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb61aa870) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb5fc9ac0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb5fcff00) 0 + primary-for QFutureWatcherBase (0xb5fc9ac0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb5fed1c0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb5fed200) 0 + primary-for QFutureWatcher (0xb5fed1c0) + QObject (0xb5fdea50) 0 + primary-for QFutureWatcherBase (0xb5fed200) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb5ff6924) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb5fedcc0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb600621c) 0 + primary-for QThread (0xb5fedcc0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb601b000) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb601903c) 0 + primary-for QThreadPool (0xb601b000) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb6019a50) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb6019d20) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb601b6c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb602ea14) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb601b6c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb60411e0) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb6044040) 0 + QtConcurrent::ThreadEngineStarterBase (0xb6041258) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb6044200) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb6044240) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb6041708) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb6044240) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb6041d20) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb6041d5c) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb6044540) 0 empty + std::input_iterator_tag (0xb6041d98) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb60445c0) 0 empty + std::forward_iterator_tag (0xb6044600) 0 empty + std::input_iterator_tag (0xb6041dd4) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb6044680) 0 empty + std::bidirectional_iterator_tag (0xb60446c0) 0 empty + std::forward_iterator_tag (0xb6044700) 0 empty + std::input_iterator_tag (0xb6041e10) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb605e0b4) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb605e0f0) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb605e168) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb605e384) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e474) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e4ec) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e564) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e5dc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e654) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e6cc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e744) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e7bc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e834) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e8ac) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e924) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605e99c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb605ea14) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb605eb04) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb605eb7c) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb605ebf4) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb605ef78) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb6072000) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb60720f0) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb6072168) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb60721e0) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60723fc) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6072438) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6072474) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60724b0) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60724ec) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6072528) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60725a0) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60725dc) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6072618) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6072654) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6072690) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60726cc) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb60970b4) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb5ed8690) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb5ed8ac8) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb5ed8ce4) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb5f1e0f0) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb5f1e258) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb5f1e3c0) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5f1eac8) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5f4e4ec) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb5f52e10) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb5f5f078) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb5f5f0b4) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb5f5f12c) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb5f5f168) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb5f5f1e0) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb5f5f3fc) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb5f5f564) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb5f5f4ec) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb5f5f5a0) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb5f5f5dc) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb5dd5b04) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5dd5dd4) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5de5bc0) 0 empty + __gnu_cxx::new_allocator (0xb5dd5e10) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5dd5e4c) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5de5c80) 0 empty + __gnu_cxx::new_allocator (0xb5dd5e88) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb5e050b4) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5e5a99c) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5e5a9d8) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5e89f40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5e5aa14) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5cfd690) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5d20500) 0 + std::allocator (0xb5d20540) 0 empty + __gnu_cxx::new_allocator (0xb5cfd708) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5cfd618) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5cfd744) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5d206c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5cfd780) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5cfd834) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5d208c0) 0 + std::allocator (0xb5d20900) 0 empty + __gnu_cxx::new_allocator (0xb5cfd8ac) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5cfd7bc) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5cfd8e8) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5cfd99c) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5d20a80) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5cfd924) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5cfd9d8) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5db9e4c) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5dc4834) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5dc4b7c) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5bc7a40) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5bd44ec) 0 + primary-for std::collate (0xb5bc7a40) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5bc7b40) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5bd45dc) 0 + primary-for std::collate (0xb5bc7b40) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5bd4a50) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5bd4a8c) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5bf1ac0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5bd4ac8) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5bf1c00) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5bf1c40) 0 + primary-for std::collate_byname (0xb5bf1c00) + std::locale::facet (0xb5bd4b40) 0 + primary-for std::collate (0xb5bf1c40) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5bf1cc0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5bf1d00) 0 + primary-for std::collate_byname (0xb5bf1cc0) + std::locale::facet (0xb5bd4c30) 0 + primary-for std::collate (0xb5bf1d00) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5c0b340) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5c09a14) 0 nearly-empty + primary-for std::ios_base::failure (0xb5c0b340) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5c18ca8) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5c1a258) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5c1a654) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5c099d8) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5c6603c) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5c662d0) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5c66564) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5ac7550) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5cb44ec) 0 + primary-for std::ctype (0xb5ac7550) + std::ctype_base (0xb5cb4528) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5ad0e10) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5ae30b4) 0 + primary-for std::__ctype_abstract_base (0xb5ad0e10) + std::ctype_base (0xb5ae30f0) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5cc3c00) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5aeac80) 0 + primary-for std::ctype (0xb5cc3c00) + std::locale::facet (0xb5ae31e0) 0 + primary-for std::__ctype_abstract_base (0xb5aeac80) + std::ctype_base (0xb5ae321c) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5cc3dc0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5af4410) 0 + primary-for std::ctype_byname (0xb5cc3dc0) + std::locale::facet (0xb5af1528) 0 + primary-for std::ctype (0xb5af4410) + std::ctype_base (0xb5af1564) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5cc3e40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5cc3e80) 0 + primary-for std::ctype_byname (0xb5cc3e40) + std::__ctype_abstract_base (0xb5af4aa0) 0 + primary-for std::ctype (0xb5cc3e80) + std::locale::facet (0xb5af16cc) 0 + primary-for std::__ctype_abstract_base (0xb5af4aa0) + std::ctype_base (0xb5af1708) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5afe078) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5afc880) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5afe8e8) 0 + primary-for std::numpunct (0xb5afc880) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5afc940) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5afe9d8) 0 + primary-for std::numpunct (0xb5afc940) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5b7303c) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5b83e80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5b83ec0) 0 + primary-for std::numpunct_byname (0xb5b83e80) + std::locale::facet (0xb5b73690) 0 + primary-for std::numpunct (0xb5b83ec0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5b83f00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5b73780) 0 + primary-for std::num_get > > (0xb5b83f00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5b83f80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5b73870) 0 + primary-for std::num_put > > (0xb5b83f80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5bb8000) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5bb8040) 0 + primary-for std::numpunct_byname (0xb5bb8000) + std::locale::facet (0xb5b73960) 0 + primary-for std::numpunct (0xb5bb8040) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5bb80c0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5b73a50) 0 + primary-for std::num_get > > (0xb5bb80c0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5bb8140) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5b73b40) 0 + primary-for std::num_put > > (0xb5bb8140) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb59e9180) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb59e21a4) 0 + primary-for std::basic_ios > (0xb59e9180) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb59e91c0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb59e2294) 0 + primary-for std::basic_ios > (0xb59e91c0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5a1fe40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5a1fe80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb59e2f78) 4 + primary-for std::basic_ios > (0xb5a1fe80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5a340f0) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5a1ffc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5a41000) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5a3412c) 4 + primary-for std::basic_ios > (0xb5a41000) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5a342d0) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5a41880) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5a418c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5a34834) 8 + primary-for std::basic_ios > (0xb5a418c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5a41980) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5a419c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5a34bb8) 8 + primary-for std::basic_ios > (0xb5a419c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5a8c1e0) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5a8c21c) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5a8f880) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5a8c258) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5a8c834) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb58c2780 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb58c2800 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb58d50f0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb58c2780) 0 + primary-for std::basic_iostream > (0xb58d50f0) + subvttidx=4u + std::basic_ios > (0xb58c27c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5a8c870) 12 + primary-for std::basic_ios > (0xb58c27c0) + std::basic_ostream > (0xb58c2800) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb58c27c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5a8cb04) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb58c2b00 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb58c2b80 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb58e5190) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb58c2b00) 0 + primary-for std::basic_iostream > (0xb58e5190) + subvttidx=4u + std::basic_ios > (0xb58c2b40) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb5a8cb40) 12 + primary-for std::basic_ios > (0xb58c2b40) + std::basic_ostream > (0xb58c2b80) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb58c2b40) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb58f630c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb58f6294) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb58f621c) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb58f6168) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb58f66cc) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb58f6f3c) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb580f348) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb5812910) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb57f9e00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb5812910) + QFutureInterfaceBase (0xb580f528) 0 + primary-for QFutureInterface (0xb57f9e00) + QRunnable (0xb580f564) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb57f9e80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb5812d20) 0 + primary-for QtConcurrent::RunFunctionTask (0xb57f9e80) + QFutureInterface (0xb57f9ec0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb5812d20) + QFutureInterfaceBase (0xb580f708) 0 + primary-for QFutureInterface (0xb57f9ec0) + QRunnable (0xb580f744) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb577399c) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb5789200) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb5789240) 0 + primary-for QFile (0xb5789200) + QObject (0xb5773a8c) 0 + primary-for QIODevice (0xb5789240) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57a73fc) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb57a7fb4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55c5654) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55c5960) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb55d76cc) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb55d7654) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb55d77bc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55f9d20) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55f9e10) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb563899c) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb56389d8) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb5614640) 0 + QAbstractFileEngine::ExtensionOption (0xb5638a14) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb56146c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb5638b04) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb5614740) 0 + QAbstractFileEngine::ExtensionOption (0xb5638b40) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb56380f0) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56461e0) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb565703c) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb56571e0) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb5614980) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb56149c0) 0 + primary-for QBuffer (0xb5614980) + QObject (0xb5657708) 0 + primary-for QIODevice (0xb56149c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb5669384) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5669b7c) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb5614e00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb5677960) 0 + primary-for QFileSystemWatcher (0xb5614e00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb568c0c0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb568d30c) 0 + primary-for QFSFileEngine (0xb568c0c0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb568c1c0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb568c200) 0 + primary-for QProcess (0xb568c1c0) + QObject (0xb568dce4) 0 + primary-for QIODevice (0xb568c200) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb56ad708) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb54c7b40) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb54c7bb8) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb56ad924) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54d43c0) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb54d4528) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb54e1924) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb54e1e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5505258) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5505438) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5505618) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55057f8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55059d8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5505bb8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5505d98) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5505f78) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5518168) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5518348) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5518528) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5518708) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55188e8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5518ac8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5518ca8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5518e88) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb551e078) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb551e258) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb551e438) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb551e618) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb551e7f8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb551e9d8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb551ebb8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb551ed98) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb551ef78) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5526168) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5526348) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5526528) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5526708) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55268e8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5526ac8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5526ca8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5526e88) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5530078) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5530258) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5530438) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5530618) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55307f8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55309d8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5530bb8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5530d98) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5530f78) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5535168) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5535348) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5535528) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5535708) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55358e8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5535ac8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5535ca8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5535e88) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553d078) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553d258) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553d438) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553d618) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb55544b0) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb5554690) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb5554564) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb5554d5c) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb553d7f8) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb5578294) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb557821c) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb5578384) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb557830c) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb55ad708) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55add20) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb55adf00) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb53bd0f0) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb55b66c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb53bd2d0) 0 + primary-for QSettings (0xb55b66c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb53ea2c0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb53ea300) 0 + primary-for QTemporaryFile (0xb53ea2c0) + QIODevice (0xb53ea340) 0 + primary-for QFile (0xb53ea300) + QObject (0xb53f7000) 0 + primary-for QIODevice (0xb53ea340) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb5403168) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb54170b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5428b40) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb53eaec0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb543b99c) 0 + primary-for QEventLoop (0xb53eaec0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb543bfb4) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb5454240) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb545f384) 0 + primary-for QAbstractEventDispatcher (0xb5454240) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb547321c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5484618) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb5484708) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5484e4c) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb5454e00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb5484f3c) 0 + primary-for QAbstractItemModel (0xb5454e00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb54ab2c0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb54ab300) 0 + primary-for QAbstractTableModel (0xb54ab2c0) + QObject (0xb54aeac8) 0 + primary-for QAbstractItemModel (0xb54ab300) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb54ab540) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb54ab580) 0 + primary-for QAbstractListModel (0xb54ab540) + QObject (0xb52ba528) 0 + primary-for QAbstractItemModel (0xb54ab580) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb52cbfb4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52d9744) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb52d9834) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb54abf80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb52eb528) 0 + primary-for QTimerEvent (0xb54abf80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb52ef040) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb52eb780) 0 + primary-for QChildEvent (0xb52ef040) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb52ef200) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb52eb654) 0 + primary-for QCustomEvent (0xb52ef200) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb52ef300) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb52fb384) 0 + primary-for QDynamicPropertyChangeEvent (0xb52ef300) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb52ef3c0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb52fb5dc) 0 + primary-for QCoreApplication (0xb52ef3c0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb5340000) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb5340384) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5340834) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb5340924) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5340d5c) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb5340e4c) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb5357168) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53574b0) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb5349640) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb53575a0) 0 + primary-for QMimeData (0xb5349640) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb5349900) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb536a0f0) 0 + primary-for QObjectCleanupHandler (0xb5349900) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb5349b40) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb536a99c) 0 + primary-for QSharedMemory (0xb5349b40) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb5349e00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb537b780) 0 + primary-for QSignalMapper (0xb5349e00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb538d0c0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb5385924) 0 + primary-for QSocketNotifier (0xb538d0c0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb5396960) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb538d440) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb5396e88) 0 + primary-for QTimer (0xb538d440) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb538d8c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb53a03c0) 0 + primary-for QTranslator (0xb538d8c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb538dbc0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb53b4e10) 0 + primary-for QLibrary (0xb538dbc0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb51c3d5c) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb538df40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb51d48e8) 0 + primary-for QPluginLoader (0xb538df40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb51e64b0) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb51f730c) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb51f799c) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb51f7690) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb5206e88) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb5206b7c) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb5215078) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb5215348) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb5215744) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb524e474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5259168) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb52593fc) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb5259dd4) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb527f168) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb528ab04) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb528abf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52a1168) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb52a1258) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52a8960) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb52a8b40) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb509fa14) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb50acb40) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50bdac8) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb50ceb04) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50ceec4) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb50fb03c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50fba50) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb5125690) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb518399c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f9ba8c) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb4fb9618) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fc2708) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb4fe4474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ffb348) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb5037f3c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb505a438) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb5092b04) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb4e9dd20) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb4eb3bc0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb4ec16cc) 0 + primary-for QTimeLine (0xb4eb3bc0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb4ed3a8c) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb4ef6c30) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f0f1a4) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4f0f30c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4f0f294) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb4ef7640) 0 + QVector (0xb4f0f348) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb4f0f384) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f0fd98) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb4f0fec4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f32a8c) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb4f32bb8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f45b40) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb4f45c6c) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb4f45e10) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb4f763fc) 0 + +Class QDomImplementation + size=4 align=4 + base size=4 base align=4 +QDomImplementation (0xb4f769d8) 0 + +Class QDomNode + size=4 align=4 + base size=4 base align=4 +QDomNode (0xb4f76ec4) 0 + +Class QDomNodeList + size=4 align=4 + base size=4 base align=4 +QDomNodeList (0xb4f960f0) 0 + +Class QDomDocumentType + size=4 align=4 + base size=4 base align=4 +QDomDocumentType (0xb4f70400) 0 + QDomNode (0xb4f968ac) 0 + +Class QDomDocument + size=4 align=4 + base size=4 base align=4 +QDomDocument (0xb4f704c0) 0 + QDomNode (0xb4f96e4c) 0 + +Class QDomNamedNodeMap + size=4 align=4 + base size=4 base align=4 +QDomNamedNodeMap (0xb4d9c5dc) 0 + +Class QDomDocumentFragment + size=4 align=4 + base size=4 base align=4 +QDomDocumentFragment (0xb4f70680) 0 + QDomNode (0xb4d9cca8) 0 + +Class QDomCharacterData + size=4 align=4 + base size=4 base align=4 +QDomCharacterData (0xb4f70740) 0 + QDomNode (0xb4daa258) 0 + +Class QDomAttr + size=4 align=4 + base size=4 base align=4 +QDomAttr (0xb4f70780) 0 + QDomNode (0xb4daa780) 0 + +Class QDomElement + size=4 align=4 + base size=4 base align=4 +QDomElement (0xb4f70880) 0 + QDomNode (0xb4daad20) 0 + +Class QDomText + size=4 align=4 + base size=4 base align=4 +QDomText (0xb4f70a40) 0 + QDomCharacterData (0xb4f70a80) 0 + QDomNode (0xb4db75a0) 0 + +Class QDomComment + size=4 align=4 + base size=4 base align=4 +QDomComment (0xb4f70b40) 0 + QDomCharacterData (0xb4f70b80) 0 + QDomNode (0xb4db7bf4) 0 + +Class QDomCDATASection + size=4 align=4 + base size=4 base align=4 +QDomCDATASection (0xb4f70c40) 0 + QDomText (0xb4f70c80) 0 + QDomCharacterData (0xb4f70cc0) 0 + QDomNode (0xb4dc11a4) 0 + +Class QDomNotation + size=4 align=4 + base size=4 base align=4 +QDomNotation (0xb4f70d80) 0 + QDomNode (0xb4dc1744) 0 + +Class QDomEntity + size=4 align=4 + base size=4 base align=4 +QDomEntity (0xb4f70e40) 0 + QDomNode (0xb4dc1ce4) 0 + +Class QDomEntityReference + size=4 align=4 + base size=4 base align=4 +QDomEntityReference (0xb4f70f00) 0 + QDomNode (0xb4dc7294) 0 + +Class QDomProcessingInstruction + size=4 align=4 + base size=4 base align=4 +QDomProcessingInstruction (0xb4f70fc0) 0 + QDomNode (0xb4dc7834) 0 + +Class QXmlNamespaceSupport + size=4 align=4 + base size=4 base align=4 +QXmlNamespaceSupport (0xb4dc7dd4) 0 + +Class QXmlAttributes::Attribute + size=16 align=4 + base size=16 base align=4 +QXmlAttributes::Attribute (0xb4dd3168) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4dd3474) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4dd33fc) 0 + +Vtable for QXmlAttributes +QXmlAttributes::_ZTV14QXmlAttributes: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QXmlAttributes) +8 QXmlAttributes::~QXmlAttributes +12 QXmlAttributes::~QXmlAttributes + +Class QXmlAttributes + size=12 align=4 + base size=12 base align=4 +QXmlAttributes (0xb4dd30b4) 0 + vptr=((& QXmlAttributes::_ZTV14QXmlAttributes) + 8u) + +Vtable for QXmlInputSource +QXmlInputSource::_ZTV15QXmlInputSource: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QXmlInputSource) +8 QXmlInputSource::~QXmlInputSource +12 QXmlInputSource::~QXmlInputSource +16 QXmlInputSource::setData +20 QXmlInputSource::setData +24 QXmlInputSource::fetchData +28 QXmlInputSource::data +32 QXmlInputSource::next +36 QXmlInputSource::reset +40 QXmlInputSource::fromRawData + +Class QXmlInputSource + size=8 align=4 + base size=8 base align=4 +QXmlInputSource (0xb4dd38e8) 0 + vptr=((& QXmlInputSource::_ZTV15QXmlInputSource) + 8u) + +Class QXmlParseException + size=4 align=4 + base size=4 base align=4 +QXmlParseException (0xb4dd3b40) 0 + +Vtable for QXmlReader +QXmlReader::_ZTV10QXmlReader: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QXmlReader) +8 QXmlReader::~QXmlReader +12 QXmlReader::~QXmlReader +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual + +Class QXmlReader + size=4 align=4 + base size=4 base align=4 +QXmlReader (0xb4dd3ca8) 0 nearly-empty + vptr=((& QXmlReader::_ZTV10QXmlReader) + 8u) + +Vtable for QXmlSimpleReader +QXmlSimpleReader::_ZTV16QXmlSimpleReader: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QXmlSimpleReader) +8 QXmlSimpleReader::~QXmlSimpleReader +12 QXmlSimpleReader::~QXmlSimpleReader +16 QXmlSimpleReader::feature +20 QXmlSimpleReader::setFeature +24 QXmlSimpleReader::hasFeature +28 QXmlSimpleReader::property +32 QXmlSimpleReader::setProperty +36 QXmlSimpleReader::hasProperty +40 QXmlSimpleReader::setEntityResolver +44 QXmlSimpleReader::entityResolver +48 QXmlSimpleReader::setDTDHandler +52 QXmlSimpleReader::DTDHandler +56 QXmlSimpleReader::setContentHandler +60 QXmlSimpleReader::contentHandler +64 QXmlSimpleReader::setErrorHandler +68 QXmlSimpleReader::errorHandler +72 QXmlSimpleReader::setLexicalHandler +76 QXmlSimpleReader::lexicalHandler +80 QXmlSimpleReader::setDeclHandler +84 QXmlSimpleReader::declHandler +88 QXmlSimpleReader::parse +92 QXmlSimpleReader::parse +96 QXmlSimpleReader::parse +100 QXmlSimpleReader::parseContinue + +Class QXmlSimpleReader + size=8 align=4 + base size=8 base align=4 +QXmlSimpleReader (0xb4dcd500) 0 + vptr=((& QXmlSimpleReader::_ZTV16QXmlSimpleReader) + 8u) + QXmlReader (0xb4dd33c0) 0 nearly-empty + primary-for QXmlSimpleReader (0xb4dcd500) + +Vtable for QXmlLocator +QXmlLocator::_ZTV11QXmlLocator: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QXmlLocator) +8 QXmlLocator::~QXmlLocator +12 QXmlLocator::~QXmlLocator +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QXmlLocator + size=4 align=4 + base size=4 base align=4 +QXmlLocator (0xb4e014b0) 0 nearly-empty + vptr=((& QXmlLocator::_ZTV11QXmlLocator) + 8u) + +Vtable for QXmlContentHandler +QXmlContentHandler::_ZTV18QXmlContentHandler: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlContentHandler) +8 QXmlContentHandler::~QXmlContentHandler +12 QXmlContentHandler::~QXmlContentHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QXmlContentHandler + size=4 align=4 + base size=4 base align=4 +QXmlContentHandler (0xb4e01690) 0 nearly-empty + vptr=((& QXmlContentHandler::_ZTV18QXmlContentHandler) + 8u) + +Vtable for QXmlErrorHandler +QXmlErrorHandler::_ZTV16QXmlErrorHandler: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QXmlErrorHandler) +8 QXmlErrorHandler::~QXmlErrorHandler +12 QXmlErrorHandler::~QXmlErrorHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QXmlErrorHandler + size=4 align=4 + base size=4 base align=4 +QXmlErrorHandler (0xb4e019d8) 0 nearly-empty + vptr=((& QXmlErrorHandler::_ZTV16QXmlErrorHandler) + 8u) + +Vtable for QXmlDTDHandler +QXmlDTDHandler::_ZTV14QXmlDTDHandler: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QXmlDTDHandler) +8 QXmlDTDHandler::~QXmlDTDHandler +12 QXmlDTDHandler::~QXmlDTDHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QXmlDTDHandler + size=4 align=4 + base size=4 base align=4 +QXmlDTDHandler (0xb4e01d20) 0 nearly-empty + vptr=((& QXmlDTDHandler::_ZTV14QXmlDTDHandler) + 8u) + +Vtable for QXmlEntityResolver +QXmlEntityResolver::_ZTV18QXmlEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlEntityResolver) +8 QXmlEntityResolver::~QXmlEntityResolver +12 QXmlEntityResolver::~QXmlEntityResolver +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QXmlEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlEntityResolver (0xb4e017bc) 0 nearly-empty + vptr=((& QXmlEntityResolver::_ZTV18QXmlEntityResolver) + 8u) + +Vtable for QXmlLexicalHandler +QXmlLexicalHandler::_ZTV18QXmlLexicalHandler: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlLexicalHandler) +8 QXmlLexicalHandler::~QXmlLexicalHandler +12 QXmlLexicalHandler::~QXmlLexicalHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual + +Class QXmlLexicalHandler + size=4 align=4 + base size=4 base align=4 +QXmlLexicalHandler (0xb4e132d0) 0 nearly-empty + vptr=((& QXmlLexicalHandler::_ZTV18QXmlLexicalHandler) + 8u) + +Vtable for QXmlDeclHandler +QXmlDeclHandler::_ZTV15QXmlDeclHandler: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QXmlDeclHandler) +8 QXmlDeclHandler::~QXmlDeclHandler +12 QXmlDeclHandler::~QXmlDeclHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QXmlDeclHandler + size=4 align=4 + base size=4 base align=4 +QXmlDeclHandler (0xb4e13618) 0 nearly-empty + vptr=((& QXmlDeclHandler::_ZTV15QXmlDeclHandler) + 8u) + +Vtable for QXmlDefaultHandler +QXmlDefaultHandler::_ZTV18QXmlDefaultHandler: 73u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +8 QXmlDefaultHandler::~QXmlDefaultHandler +12 QXmlDefaultHandler::~QXmlDefaultHandler +16 QXmlDefaultHandler::setDocumentLocator +20 QXmlDefaultHandler::startDocument +24 QXmlDefaultHandler::endDocument +28 QXmlDefaultHandler::startPrefixMapping +32 QXmlDefaultHandler::endPrefixMapping +36 QXmlDefaultHandler::startElement +40 QXmlDefaultHandler::endElement +44 QXmlDefaultHandler::characters +48 QXmlDefaultHandler::ignorableWhitespace +52 QXmlDefaultHandler::processingInstruction +56 QXmlDefaultHandler::skippedEntity +60 QXmlDefaultHandler::errorString +64 QXmlDefaultHandler::warning +68 QXmlDefaultHandler::error +72 QXmlDefaultHandler::fatalError +76 QXmlDefaultHandler::notationDecl +80 QXmlDefaultHandler::unparsedEntityDecl +84 QXmlDefaultHandler::resolveEntity +88 QXmlDefaultHandler::startDTD +92 QXmlDefaultHandler::endDTD +96 QXmlDefaultHandler::startEntity +100 QXmlDefaultHandler::endEntity +104 QXmlDefaultHandler::startCDATA +108 QXmlDefaultHandler::endCDATA +112 QXmlDefaultHandler::comment +116 QXmlDefaultHandler::attributeDecl +120 QXmlDefaultHandler::internalEntityDecl +124 QXmlDefaultHandler::externalEntityDecl +128 (int (*)(...))-0x000000004 +132 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +136 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandlerD1Ev +140 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandlerD0Ev +144 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandler7warningERK18QXmlParseException +148 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandler5errorERK18QXmlParseException +152 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandler10fatalErrorERK18QXmlParseException +156 QXmlDefaultHandler::_ZThn4_NK18QXmlDefaultHandler11errorStringEv +160 (int (*)(...))-0x000000008 +164 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +168 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD1Ev +172 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD0Ev +176 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler12notationDeclERK7QStringS2_S2_ +180 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler18unparsedEntityDeclERK7QStringS2_S2_S2_ +184 QXmlDefaultHandler::_ZThn8_NK18QXmlDefaultHandler11errorStringEv +188 (int (*)(...))-0x00000000c +192 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +196 QXmlDefaultHandler::_ZThn12_N18QXmlDefaultHandlerD1Ev +200 QXmlDefaultHandler::_ZThn12_N18QXmlDefaultHandlerD0Ev +204 QXmlDefaultHandler::_ZThn12_N18QXmlDefaultHandler13resolveEntityERK7QStringS2_RP15QXmlInputSource +208 QXmlDefaultHandler::_ZThn12_NK18QXmlDefaultHandler11errorStringEv +212 (int (*)(...))-0x000000010 +216 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +220 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD1Ev +224 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD0Ev +228 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler8startDTDERK7QStringS2_S2_ +232 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler6endDTDEv +236 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler11startEntityERK7QString +240 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler9endEntityERK7QString +244 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler10startCDATAEv +248 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler8endCDATAEv +252 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler7commentERK7QString +256 QXmlDefaultHandler::_ZThn16_NK18QXmlDefaultHandler11errorStringEv +260 (int (*)(...))-0x000000014 +264 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +268 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandlerD1Ev +272 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandlerD0Ev +276 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandler13attributeDeclERK7QStringS2_S2_S2_S2_ +280 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandler18internalEntityDeclERK7QStringS2_ +284 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandler18externalEntityDeclERK7QStringS2_S2_ +288 QXmlDefaultHandler::_ZThn20_NK18QXmlDefaultHandler11errorStringEv + +Class QXmlDefaultHandler + size=28 align=4 + base size=28 base align=4 +QXmlDefaultHandler (0xb4e1c8f0) 0 + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 8u) + QXmlContentHandler (0xb4e13960) 0 nearly-empty + primary-for QXmlDefaultHandler (0xb4e1c8f0) + QXmlErrorHandler (0xb4e1399c) 4 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 136u) + QXmlDTDHandler (0xb4e139d8) 8 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 168u) + QXmlEntityResolver (0xb4e13a14) 12 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 196u) + QXmlLexicalHandler (0xb4e13a50) 16 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 220u) + QXmlDeclHandler (0xb4e13a8c) 20 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 268u) + +Vtable for QAbstractExtensionFactory +QAbstractExtensionFactory::_ZTV25QAbstractExtensionFactory: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QAbstractExtensionFactory) +8 QAbstractExtensionFactory::~QAbstractExtensionFactory +12 QAbstractExtensionFactory::~QAbstractExtensionFactory +16 __cxa_pure_virtual + +Class QAbstractExtensionFactory + size=4 align=4 + base size=4 base align=4 +QAbstractExtensionFactory (0xb4e3f2d0) 0 nearly-empty + vptr=((& QAbstractExtensionFactory::_ZTV25QAbstractExtensionFactory) + 8u) + +Vtable for QAbstractExtensionManager +QAbstractExtensionManager::_ZTV25QAbstractExtensionManager: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QAbstractExtensionManager) +8 QAbstractExtensionManager::~QAbstractExtensionManager +12 QAbstractExtensionManager::~QAbstractExtensionManager +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QAbstractExtensionManager + size=4 align=4 + base size=4 base align=4 +QAbstractExtensionManager (0xb4e3f834) 0 nearly-empty + vptr=((& QAbstractExtensionManager::_ZTV25QAbstractExtensionManager) + 8u) + +Class QHash >:: + size=4 align=4 + base size=4 base align=4 +QHash >:: (0xb4e5930c) 0 + +Class QHash > + size=4 align=4 + base size=4 base align=4 +QHash > (0xb4e59294) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4e594b0) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4e59438) 0 + +Vtable for QExtensionManager +QExtensionManager::_ZTV17QExtensionManager: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QExtensionManager) +8 QExtensionManager::metaObject +12 QExtensionManager::qt_metacast +16 QExtensionManager::qt_metacall +20 QExtensionManager::~QExtensionManager +24 QExtensionManager::~QExtensionManager +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QExtensionManager::registerExtensions +60 QExtensionManager::unregisterExtensions +64 QExtensionManager::extension +68 (int (*)(...))-0x000000008 +72 (int (*)(...))(& _ZTI17QExtensionManager) +76 QExtensionManager::_ZThn8_N17QExtensionManagerD1Ev +80 QExtensionManager::_ZThn8_N17QExtensionManagerD0Ev +84 QExtensionManager::_ZThn8_N17QExtensionManager18registerExtensionsEP25QAbstractExtensionFactoryRK7QString +88 QExtensionManager::_ZThn8_N17QExtensionManager20unregisterExtensionsEP25QAbstractExtensionFactoryRK7QString +92 QExtensionManager::_ZThn8_NK17QExtensionManager9extensionEP7QObjectRK7QString + +Class QExtensionManager + size=20 align=4 + base size=20 base align=4 +QExtensionManager (0xb4e4f870) 0 + vptr=((& QExtensionManager::_ZTV17QExtensionManager) + 8u) + QObject (0xb4e3fdd4) 0 + primary-for QExtensionManager (0xb4e4f870) + QAbstractExtensionManager (0xb4e3fe10) 8 nearly-empty + vptr=((& QExtensionManager::_ZTV17QExtensionManager) + 76u) + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPaintDevice) +8 QPaintDevice::~QPaintDevice +12 QPaintDevice::~QPaintDevice +16 QPaintDevice::devType +20 __cxa_pure_virtual +24 QPaintDevice::metric + +Class QPaintDevice + size=8 align=4 + base size=6 base align=4 +QPaintDevice (0xb4e59ca8) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 8u) + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4caea50) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4caeac8) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4caeb40) 0 + +Class QColor:: + size=10 align=2 + base size=10 base align=2 +QColor:: (0xb4cae9d8) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0xb4c965a0) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4cbe960) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4cbe8e8) 0 + +Class QPolygon + size=4 align=4 + base size=4 base align=4 +QPolygon (0xb4e8fd40) 0 + QVector (0xb4cbe99c) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4cdea50) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4cde9d8) 0 + +Class QPolygonF + size=4 align=4 + base size=4 base align=4 +QPolygonF (0xb4ce1340) 0 + QVector (0xb4cdea8c) 0 + +Class QRegion::QRegionData + size=16 align=4 + base size=16 base align=4 +QRegion::QRegionData (0xb4d13ce4) 0 + +Class QRegion + size=4 align=4 + base size=4 base align=4 +QRegion (0xb4cfe99c) 0 + +Class QMatrix + size=48 align=4 + base size=48 base align=4 +QMatrix (0xb4d18960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4d29fb4) 0 empty + +Class QPainterPath::Element + size=20 align=4 + base size=20 base align=4 +QPainterPath::Element (0xb4d337bc) 0 + +Class QPainterPath + size=4 align=4 + base size=4 base align=4 +QPainterPath (0xb4d33780) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4d5e834) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4d5e7bc) 0 + +Class QPainterPathPrivate + size=8 align=4 + base size=8 base align=4 +QPainterPathPrivate (0xb4d5e438) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4d5e870) 0 empty + +Class QPainterPathStroker + size=4 align=4 + base size=4 base align=4 +QPainterPathStroker (0xb4d5ea14) 0 + +Class QTransform + size=80 align=4 + base size=80 base align=4 +QTransform (0xb4b980f0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ba61e0) 0 empty + +Class QImageTextKeyLang + size=8 align=4 + base size=8 base align=4 +QImageTextKeyLang (0xb4bc8d98) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QImage) +8 QImage::~QImage +12 QImage::~QImage +16 QImage::devType +20 QImage::paintEngine +24 QImage::metric + +Class QImage + size=12 align=4 + base size=12 base align=4 +QImage (0xb4baac80) 0 + vptr=((& QImage::_ZTV6QImage) + 8u) + QPaintDevice (0xb4bde9d8) 0 + primary-for QImage (0xb4baac80) + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4c34ec4) 0 empty + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QPixmap) +8 QPixmap::~QPixmap +12 QPixmap::~QPixmap +16 QPixmap::devType +20 QPixmap::paintEngine +24 QPixmap::metric + +Class QPixmap + size=12 align=4 + base size=12 base align=4 +QPixmap (0xb4c36580) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 8u) + QPaintDevice (0xb4c411e0) 0 + primary-for QPixmap (0xb4c36580) + +Class QBrush + size=4 align=4 + base size=4 base align=4 +QBrush (0xb4c668e8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4c773c0) 0 empty + +Class QBrushData + size=124 align=4 + base size=121 base align=4 +QBrushData (0xb4c77654) 0 + +Class QVector >:: + size=4 align=4 + base size=4 base align=4 +QVector >:: (0xb4c8a30c) 0 + +Class QVector > + size=4 align=4 + base size=4 base align=4 +QVector > (0xb4c8a294) 0 + +Class QGradient:::: + size=32 align=4 + base size=32 base align=4 +QGradient:::: (0xb4c8a3fc) 0 + +Class QGradient:::: + size=40 align=4 + base size=40 base align=4 +QGradient:::: (0xb4c8a474) 0 + +Class QGradient:::: + size=24 align=4 + base size=24 base align=4 +QGradient:::: (0xb4c8a4ec) 0 + +Class QGradient:: + size=40 align=4 + base size=40 base align=4 +QGradient:: (0xb4c8a384) 0 + +Class QGradient + size=56 align=4 + base size=56 base align=4 +QGradient (0xb4c77c30) 0 + +Class QLinearGradient + size=56 align=4 + base size=56 base align=4 +QLinearGradient (0xb4c88300) 0 + QGradient (0xb4c8a99c) 0 + +Class QRadialGradient + size=56 align=4 + base size=56 base align=4 +QRadialGradient (0xb4c88400) 0 + QGradient (0xb4c8abf4) 0 + +Class QConicalGradient + size=56 align=4 + base size=56 base align=4 +QConicalGradient (0xb4c88500) 0 + QGradient (0xb4c8aec4) 0 + +Class QPalette + size=8 align=4 + base size=8 base align=4 +QPalette (0xb4aaa03c) 0 + +Class QColorGroup + size=8 align=4 + base size=8 base align=4 +QColorGroup (0xb4c88f40) 0 + QPalette (0xb4ace8ac) 0 + +Class QFont + size=8 align=4 + base size=8 base align=4 +QFont (0xb4aedbb8) 0 + +Class QFontMetrics + size=4 align=4 + base size=4 base align=4 +QFontMetrics (0xb4b09a14) 0 + +Class QFontMetricsF + size=4 align=4 + base size=4 base align=4 +QFontMetricsF (0xb4b17474) 0 + +Class QFontInfo + size=4 align=4 + base size=4 base align=4 +QFontInfo (0xb4b17bf4) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0xb4b281a4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4b7221c) 0 + +Class QCursor + size=4 align=4 + base size=4 base align=4 +QCursor (0xb4b895dc) 0 + +Class QKeySequence + size=4 align=4 + base size=4 base align=4 +QKeySequence (0xb4b89a14) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4995ce4) 0 empty + +Class QWidgetData + size=64 align=4 + base size=64 base align=4 +QWidgetData (0xb4995f78) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QWidget) +8 QWidget::metaObject +12 QWidget::qt_metacast +16 QWidget::qt_metacall +20 QWidget::~QWidget +24 QWidget::~QWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI7QWidget) +232 QWidget::_ZThn8_N7QWidgetD1Ev +236 QWidget::_ZThn8_N7QWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=20 align=4 + base size=20 base align=4 +QWidget (0xb49aeb90) 0 + vptr=((& QWidget::_ZTV7QWidget) + 8u) + QObject (0xb4995fb4) 0 + primary-for QWidget (0xb49aeb90) + QPaintDevice (0xb4995780) 8 + vptr=((& QWidget::_ZTV7QWidget) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb49e1348) 0 + +Vtable for QDesignerActionEditorInterface +QDesignerActionEditorInterface::_ZTV30QDesignerActionEditorInterface: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI30QDesignerActionEditorInterface) +8 QDesignerActionEditorInterface::metaObject +12 QDesignerActionEditorInterface::qt_metacast +16 QDesignerActionEditorInterface::qt_metacall +20 QDesignerActionEditorInterface::~QDesignerActionEditorInterface +24 QDesignerActionEditorInterface::~QDesignerActionEditorInterface +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDesignerActionEditorInterface::core +228 __cxa_pure_virtual +232 __cxa_pure_virtual +236 __cxa_pure_virtual +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI30QDesignerActionEditorInterface) +248 QDesignerActionEditorInterface::_ZThn8_N30QDesignerActionEditorInterfaceD1Ev +252 QDesignerActionEditorInterface::_ZThn8_N30QDesignerActionEditorInterfaceD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerActionEditorInterface + size=20 align=4 + base size=20 base align=4 +QDesignerActionEditorInterface (0xb4a62500) 0 + vptr=((& QDesignerActionEditorInterface::_ZTV30QDesignerActionEditorInterface) + 8u) + QWidget (0xb4a66f00) 0 + primary-for QDesignerActionEditorInterface (0xb4a62500) + QObject (0xb4a74744) 0 + primary-for QWidget (0xb4a66f00) + QPaintDevice (0xb4a74780) 8 + vptr=((& QDesignerActionEditorInterface::_ZTV30QDesignerActionEditorInterface) + 248u) + +Vtable for QDesignerBrushManagerInterface +QDesignerBrushManagerInterface::_ZTV30QDesignerBrushManagerInterface: 21u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI30QDesignerBrushManagerInterface) +8 QDesignerBrushManagerInterface::metaObject +12 QDesignerBrushManagerInterface::qt_metacast +16 QDesignerBrushManagerInterface::qt_metacall +20 QDesignerBrushManagerInterface::~QDesignerBrushManagerInterface +24 QDesignerBrushManagerInterface::~QDesignerBrushManagerInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QDesignerBrushManagerInterface + size=8 align=4 + base size=8 base align=4 +QDesignerBrushManagerInterface (0xb4a62740) 0 + vptr=((& QDesignerBrushManagerInterface::_ZTV30QDesignerBrushManagerInterface) + 8u) + QObject (0xb4a74f78) 0 + primary-for QDesignerBrushManagerInterface (0xb4a62740) + +Vtable for QDesignerDnDItemInterface +QDesignerDnDItemInterface::_ZTV25QDesignerDnDItemInterface: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QDesignerDnDItemInterface) +8 QDesignerDnDItemInterface::~QDesignerDnDItemInterface +12 QDesignerDnDItemInterface::~QDesignerDnDItemInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual + +Class QDesignerDnDItemInterface + size=4 align=4 + base size=4 base align=4 +QDesignerDnDItemInterface (0xb4a8c834) 0 nearly-empty + vptr=((& QDesignerDnDItemInterface::_ZTV25QDesignerDnDItemInterface) + 8u) + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb4a8cf78) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb4a8c0f0) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb4a8cf3c) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb48a9078) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb48a912c) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb48a91e0) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb48a9294) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb48a9348) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb48a93fc) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb48a94b0) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb48a9564) 0 + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb48a9618) 0 + +Vtable for QDesignerFormEditorInterface +QDesignerFormEditorInterface::_ZTV28QDesignerFormEditorInterface: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI28QDesignerFormEditorInterface) +8 QDesignerFormEditorInterface::metaObject +12 QDesignerFormEditorInterface::qt_metacast +16 QDesignerFormEditorInterface::qt_metacall +20 QDesignerFormEditorInterface::~QDesignerFormEditorInterface +24 QDesignerFormEditorInterface::~QDesignerFormEditorInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QDesignerFormEditorInterface + size=60 align=4 + base size=60 base align=4 +QDesignerFormEditorInterface (0xb4a62c00) 0 + vptr=((& QDesignerFormEditorInterface::_ZTV28QDesignerFormEditorInterface) + 8u) + QObject (0xb4a8cdd4) 0 + primary-for QDesignerFormEditorInterface (0xb4a62c00) + +Vtable for QDesignerFormEditorPluginInterface +QDesignerFormEditorPluginInterface::_ZTV34QDesignerFormEditorPluginInterface: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI34QDesignerFormEditorPluginInterface) +8 QDesignerFormEditorPluginInterface::~QDesignerFormEditorPluginInterface +12 QDesignerFormEditorPluginInterface::~QDesignerFormEditorPluginInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QDesignerFormEditorPluginInterface + size=4 align=4 + base size=4 base align=4 +QDesignerFormEditorPluginInterface (0xb48a9e10) 0 nearly-empty + vptr=((& QDesignerFormEditorPluginInterface::_ZTV34QDesignerFormEditorPluginInterface) + 8u) + +Vtable for QDesignerFormWindowInterface +QDesignerFormWindowInterface::_ZTV28QDesignerFormWindowInterface: 114u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI28QDesignerFormWindowInterface) +8 QDesignerFormWindowInterface::metaObject +12 QDesignerFormWindowInterface::qt_metacast +16 QDesignerFormWindowInterface::qt_metacall +20 QDesignerFormWindowInterface::~QDesignerFormWindowInterface +24 QDesignerFormWindowInterface::~QDesignerFormWindowInterface +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 __cxa_pure_virtual +228 __cxa_pure_virtual +232 __cxa_pure_virtual +236 __cxa_pure_virtual +240 __cxa_pure_virtual +244 __cxa_pure_virtual +248 __cxa_pure_virtual +252 __cxa_pure_virtual +256 __cxa_pure_virtual +260 __cxa_pure_virtual +264 __cxa_pure_virtual +268 __cxa_pure_virtual +272 __cxa_pure_virtual +276 __cxa_pure_virtual +280 __cxa_pure_virtual +284 __cxa_pure_virtual +288 __cxa_pure_virtual +292 __cxa_pure_virtual +296 __cxa_pure_virtual +300 __cxa_pure_virtual +304 QDesignerFormWindowInterface::core +308 __cxa_pure_virtual +312 __cxa_pure_virtual +316 __cxa_pure_virtual +320 __cxa_pure_virtual +324 __cxa_pure_virtual +328 __cxa_pure_virtual +332 __cxa_pure_virtual +336 __cxa_pure_virtual +340 __cxa_pure_virtual +344 __cxa_pure_virtual +348 __cxa_pure_virtual +352 __cxa_pure_virtual +356 __cxa_pure_virtual +360 __cxa_pure_virtual +364 __cxa_pure_virtual +368 __cxa_pure_virtual +372 __cxa_pure_virtual +376 __cxa_pure_virtual +380 __cxa_pure_virtual +384 __cxa_pure_virtual +388 __cxa_pure_virtual +392 __cxa_pure_virtual +396 __cxa_pure_virtual +400 __cxa_pure_virtual +404 __cxa_pure_virtual +408 __cxa_pure_virtual +412 __cxa_pure_virtual +416 __cxa_pure_virtual +420 __cxa_pure_virtual +424 __cxa_pure_virtual +428 (int (*)(...))-0x000000008 +432 (int (*)(...))(& _ZTI28QDesignerFormWindowInterface) +436 QDesignerFormWindowInterface::_ZThn8_N28QDesignerFormWindowInterfaceD1Ev +440 QDesignerFormWindowInterface::_ZThn8_N28QDesignerFormWindowInterfaceD0Ev +444 QWidget::_ZThn8_NK7QWidget7devTypeEv +448 QWidget::_ZThn8_NK7QWidget11paintEngineEv +452 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerFormWindowInterface + size=20 align=4 + base size=20 base align=4 +QDesignerFormWindowInterface (0xb48cd340) 0 + vptr=((& QDesignerFormWindowInterface::_ZTV28QDesignerFormWindowInterface) + 8u) + QWidget (0xb48d61e0) 0 + primary-for QDesignerFormWindowInterface (0xb48cd340) + QObject (0xb48d70f0) 0 + primary-for QWidget (0xb48d61e0) + QPaintDevice (0xb48d712c) 8 + vptr=((& QDesignerFormWindowInterface::_ZTV28QDesignerFormWindowInterface) + 436u) + +Vtable for QDesignerFormWindowCursorInterface +QDesignerFormWindowCursorInterface::_ZTV34QDesignerFormWindowCursorInterface: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI34QDesignerFormWindowCursorInterface) +8 QDesignerFormWindowCursorInterface::~QDesignerFormWindowCursorInterface +12 QDesignerFormWindowCursorInterface::~QDesignerFormWindowCursorInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual + +Class QDesignerFormWindowCursorInterface + size=4 align=4 + base size=4 base align=4 +QDesignerFormWindowCursorInterface (0xb48ec3c0) 0 nearly-empty + vptr=((& QDesignerFormWindowCursorInterface::_ZTV34QDesignerFormWindowCursorInterface) + 8u) + +Vtable for QDesignerFormWindowManagerInterface +QDesignerFormWindowManagerInterface::_ZTV35QDesignerFormWindowManagerInterface: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI35QDesignerFormWindowManagerInterface) +8 QDesignerFormWindowManagerInterface::metaObject +12 QDesignerFormWindowManagerInterface::qt_metacast +16 QDesignerFormWindowManagerInterface::qt_metacall +20 QDesignerFormWindowManagerInterface::~QDesignerFormWindowManagerInterface +24 QDesignerFormWindowManagerInterface::~QDesignerFormWindowManagerInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDesignerFormWindowManagerInterface::actionCut +60 QDesignerFormWindowManagerInterface::actionCopy +64 QDesignerFormWindowManagerInterface::actionPaste +68 QDesignerFormWindowManagerInterface::actionDelete +72 QDesignerFormWindowManagerInterface::actionSelectAll +76 QDesignerFormWindowManagerInterface::actionLower +80 QDesignerFormWindowManagerInterface::actionRaise +84 QDesignerFormWindowManagerInterface::actionUndo +88 QDesignerFormWindowManagerInterface::actionRedo +92 QDesignerFormWindowManagerInterface::actionHorizontalLayout +96 QDesignerFormWindowManagerInterface::actionVerticalLayout +100 QDesignerFormWindowManagerInterface::actionSplitHorizontal +104 QDesignerFormWindowManagerInterface::actionSplitVertical +108 QDesignerFormWindowManagerInterface::actionGridLayout +112 QDesignerFormWindowManagerInterface::actionBreakLayout +116 QDesignerFormWindowManagerInterface::actionAdjustSize +120 QDesignerFormWindowManagerInterface::activeFormWindow +124 QDesignerFormWindowManagerInterface::formWindowCount +128 QDesignerFormWindowManagerInterface::formWindow +132 QDesignerFormWindowManagerInterface::createFormWindow +136 QDesignerFormWindowManagerInterface::core +140 __cxa_pure_virtual +144 QDesignerFormWindowManagerInterface::addFormWindow +148 QDesignerFormWindowManagerInterface::removeFormWindow +152 QDesignerFormWindowManagerInterface::setActiveFormWindow + +Class QDesignerFormWindowManagerInterface + size=8 align=4 + base size=8 base align=4 +QDesignerFormWindowManagerInterface (0xb48cd680) 0 + vptr=((& QDesignerFormWindowManagerInterface::_ZTV35QDesignerFormWindowManagerInterface) + 8u) + QObject (0xb48ec8ac) 0 + primary-for QDesignerFormWindowManagerInterface (0xb48cd680) + +Vtable for QDesignerFormWindowToolInterface +QDesignerFormWindowToolInterface::_ZTV32QDesignerFormWindowToolInterface: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI32QDesignerFormWindowToolInterface) +8 QDesignerFormWindowToolInterface::metaObject +12 QDesignerFormWindowToolInterface::qt_metacast +16 QDesignerFormWindowToolInterface::qt_metacall +20 QDesignerFormWindowToolInterface::~QDesignerFormWindowToolInterface +24 QDesignerFormWindowToolInterface::~QDesignerFormWindowToolInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 QDesignerFormWindowToolInterface::saveToDom +84 QDesignerFormWindowToolInterface::loadFromDom +88 __cxa_pure_virtual + +Class QDesignerFormWindowToolInterface + size=8 align=4 + base size=8 base align=4 +QDesignerFormWindowToolInterface (0xb48cd8c0) 0 + vptr=((& QDesignerFormWindowToolInterface::_ZTV32QDesignerFormWindowToolInterface) + 8u) + QObject (0xb490421c) 0 + primary-for QDesignerFormWindowToolInterface (0xb48cd8c0) + +Vtable for QDesignerIconCacheInterface +QDesignerIconCacheInterface::_ZTV27QDesignerIconCacheInterface: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDesignerIconCacheInterface) +8 QDesignerIconCacheInterface::metaObject +12 QDesignerIconCacheInterface::qt_metacast +16 QDesignerIconCacheInterface::qt_metacall +20 QDesignerIconCacheInterface::~QDesignerIconCacheInterface +24 QDesignerIconCacheInterface::~QDesignerIconCacheInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QDesignerIconCacheInterface + size=8 align=4 + base size=8 base align=4 +QDesignerIconCacheInterface (0xb48cdb80) 0 + vptr=((& QDesignerIconCacheInterface::_ZTV27QDesignerIconCacheInterface) + 8u) + QObject (0xb4904a8c) 0 + primary-for QDesignerIconCacheInterface (0xb48cdb80) + +Vtable for QDesignerIntegrationInterface +QDesignerIntegrationInterface::_ZTV29QDesignerIntegrationInterface: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI29QDesignerIntegrationInterface) +8 QDesignerIntegrationInterface::metaObject +12 QDesignerIntegrationInterface::qt_metacast +16 QDesignerIntegrationInterface::qt_metacall +20 QDesignerIntegrationInterface::~QDesignerIntegrationInterface +24 QDesignerIntegrationInterface::~QDesignerIntegrationInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual + +Class QDesignerIntegrationInterface + size=12 align=4 + base size=12 base align=4 +QDesignerIntegrationInterface (0xb48cde80) 0 + vptr=((& QDesignerIntegrationInterface::_ZTV29QDesignerIntegrationInterface) + 8u) + QObject (0xb49173c0) 0 + primary-for QDesignerIntegrationInterface (0xb48cde80) + +Vtable for QDesignerLanguageExtension +QDesignerLanguageExtension::_ZTV26QDesignerLanguageExtension: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QDesignerLanguageExtension) +8 QDesignerLanguageExtension::~QDesignerLanguageExtension +12 QDesignerLanguageExtension::~QDesignerLanguageExtension +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QDesignerLanguageExtension + size=4 align=4 + base size=4 base align=4 +QDesignerLanguageExtension (0xb4917bb8) 0 nearly-empty + vptr=((& QDesignerLanguageExtension::_ZTV26QDesignerLanguageExtension) + 8u) + +Vtable for QDesignerMetaDataBaseItemInterface +QDesignerMetaDataBaseItemInterface::_ZTV34QDesignerMetaDataBaseItemInterface: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI34QDesignerMetaDataBaseItemInterface) +8 QDesignerMetaDataBaseItemInterface::~QDesignerMetaDataBaseItemInterface +12 QDesignerMetaDataBaseItemInterface::~QDesignerMetaDataBaseItemInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual + +Class QDesignerMetaDataBaseItemInterface + size=4 align=4 + base size=4 base align=4 +QDesignerMetaDataBaseItemInterface (0xb492c1e0) 0 nearly-empty + vptr=((& QDesignerMetaDataBaseItemInterface::_ZTV34QDesignerMetaDataBaseItemInterface) + 8u) + +Vtable for QDesignerMetaDataBaseInterface +QDesignerMetaDataBaseInterface::_ZTV30QDesignerMetaDataBaseInterface: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI30QDesignerMetaDataBaseInterface) +8 QDesignerMetaDataBaseInterface::metaObject +12 QDesignerMetaDataBaseInterface::qt_metacast +16 QDesignerMetaDataBaseInterface::qt_metacall +20 QDesignerMetaDataBaseInterface::~QDesignerMetaDataBaseInterface +24 QDesignerMetaDataBaseInterface::~QDesignerMetaDataBaseInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QDesignerMetaDataBaseInterface + size=8 align=4 + base size=8 base align=4 +QDesignerMetaDataBaseInterface (0xb4922540) 0 + vptr=((& QDesignerMetaDataBaseInterface::_ZTV30QDesignerMetaDataBaseInterface) + 8u) + QObject (0xb492c528) 0 + primary-for QDesignerMetaDataBaseInterface (0xb4922540) + +Vtable for QDesignerObjectInspectorInterface +QDesignerObjectInspectorInterface::_ZTV33QDesignerObjectInspectorInterface: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI33QDesignerObjectInspectorInterface) +8 QDesignerObjectInspectorInterface::metaObject +12 QDesignerObjectInspectorInterface::qt_metacast +16 QDesignerObjectInspectorInterface::qt_metacall +20 QDesignerObjectInspectorInterface::~QDesignerObjectInspectorInterface +24 QDesignerObjectInspectorInterface::~QDesignerObjectInspectorInterface +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDesignerObjectInspectorInterface::core +228 __cxa_pure_virtual +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI33QDesignerObjectInspectorInterface) +240 QDesignerObjectInspectorInterface::_ZThn8_N33QDesignerObjectInspectorInterfaceD1Ev +244 QDesignerObjectInspectorInterface::_ZThn8_N33QDesignerObjectInspectorInterfaceD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerObjectInspectorInterface + size=20 align=4 + base size=20 base align=4 +QDesignerObjectInspectorInterface (0xb4922780) 0 + vptr=((& QDesignerObjectInspectorInterface::_ZTV33QDesignerObjectInspectorInterface) + 8u) + QWidget (0xb4936c80) 0 + primary-for QDesignerObjectInspectorInterface (0xb4922780) + QObject (0xb492cfb4) 0 + primary-for QWidget (0xb4936c80) + QPaintDevice (0xb492c30c) 8 + vptr=((& QDesignerObjectInspectorInterface::_ZTV33QDesignerObjectInspectorInterface) + 240u) + +Class QDesignerPromotionInterface::PromotedClass + size=8 align=4 + base size=8 base align=4 +QDesignerPromotionInterface::PromotedClass (0xb49407f8) 0 + +Vtable for QDesignerPromotionInterface +QDesignerPromotionInterface::_ZTV27QDesignerPromotionInterface: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDesignerPromotionInterface) +8 QDesignerPromotionInterface::~QDesignerPromotionInterface +12 QDesignerPromotionInterface::~QDesignerPromotionInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QDesignerPromotionInterface + size=4 align=4 + base size=4 base align=4 +QDesignerPromotionInterface (0xb4940780) 0 nearly-empty + vptr=((& QDesignerPromotionInterface::_ZTV27QDesignerPromotionInterface) + 8u) + +Vtable for QDesignerPropertyEditorInterface +QDesignerPropertyEditorInterface::_ZTV32QDesignerPropertyEditorInterface: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI32QDesignerPropertyEditorInterface) +8 QDesignerPropertyEditorInterface::metaObject +12 QDesignerPropertyEditorInterface::qt_metacast +16 QDesignerPropertyEditorInterface::qt_metacall +20 QDesignerPropertyEditorInterface::~QDesignerPropertyEditorInterface +24 QDesignerPropertyEditorInterface::~QDesignerPropertyEditorInterface +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDesignerPropertyEditorInterface::core +228 __cxa_pure_virtual +232 __cxa_pure_virtual +236 __cxa_pure_virtual +240 __cxa_pure_virtual +244 __cxa_pure_virtual +248 __cxa_pure_virtual +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI32QDesignerPropertyEditorInterface) +260 QDesignerPropertyEditorInterface::_ZThn8_N32QDesignerPropertyEditorInterfaceD1Ev +264 QDesignerPropertyEditorInterface::_ZThn8_N32QDesignerPropertyEditorInterfaceD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerPropertyEditorInterface + size=20 align=4 + base size=20 base align=4 +QDesignerPropertyEditorInterface (0xb4922a00) 0 + vptr=((& QDesignerPropertyEditorInterface::_ZTV32QDesignerPropertyEditorInterface) + 8u) + QWidget (0xb4949690) 0 + primary-for QDesignerPropertyEditorInterface (0xb4922a00) + QObject (0xb4940b40) 0 + primary-for QWidget (0xb4949690) + QPaintDevice (0xb4940b7c) 8 + vptr=((& QDesignerPropertyEditorInterface::_ZTV32QDesignerPropertyEditorInterface) + 260u) + +Vtable for QDesignerResourceBrowserInterface +QDesignerResourceBrowserInterface::_ZTV33QDesignerResourceBrowserInterface: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI33QDesignerResourceBrowserInterface) +8 QDesignerResourceBrowserInterface::metaObject +12 QDesignerResourceBrowserInterface::qt_metacast +16 QDesignerResourceBrowserInterface::qt_metacall +20 QDesignerResourceBrowserInterface::~QDesignerResourceBrowserInterface +24 QDesignerResourceBrowserInterface::~QDesignerResourceBrowserInterface +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 __cxa_pure_virtual +228 __cxa_pure_virtual +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI33QDesignerResourceBrowserInterface) +240 QDesignerResourceBrowserInterface::_ZThn8_N33QDesignerResourceBrowserInterfaceD1Ev +244 QDesignerResourceBrowserInterface::_ZThn8_N33QDesignerResourceBrowserInterfaceD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerResourceBrowserInterface + size=20 align=4 + base size=20 base align=4 +QDesignerResourceBrowserInterface (0xb4922c80) 0 + vptr=((& QDesignerResourceBrowserInterface::_ZTV33QDesignerResourceBrowserInterface) + 8u) + QWidget (0xb494faa0) 0 + primary-for QDesignerResourceBrowserInterface (0xb4922c80) + QObject (0xb49583c0) 0 + primary-for QWidget (0xb494faa0) + QPaintDevice (0xb49583fc) 8 + vptr=((& QDesignerResourceBrowserInterface::_ZTV33QDesignerResourceBrowserInterface) + 240u) + +Class QIcon + size=4 align=4 + base size=4 base align=4 +QIcon (0xb4958bf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4971f78) 0 empty + +Class QDesignerWidgetBoxInterface::Widget + size=16 align=4 + base size=16 base align=4 +QDesignerWidgetBoxInterface::Widget (0xb497c12c) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb497cbb8) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb497cb40) 0 + +Class QDesignerWidgetBoxInterface::Category + size=12 align=4 + base size=12 base align=4 +QDesignerWidgetBoxInterface::Category (0xb497c4ec) 0 + +Vtable for QDesignerWidgetBoxInterface +QDesignerWidgetBoxInterface::_ZTV27QDesignerWidgetBoxInterface: 76u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDesignerWidgetBoxInterface) +8 QDesignerWidgetBoxInterface::metaObject +12 QDesignerWidgetBoxInterface::qt_metacast +16 QDesignerWidgetBoxInterface::qt_metacall +20 QDesignerWidgetBoxInterface::~QDesignerWidgetBoxInterface +24 QDesignerWidgetBoxInterface::~QDesignerWidgetBoxInterface +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 __cxa_pure_virtual +228 __cxa_pure_virtual +232 __cxa_pure_virtual +236 __cxa_pure_virtual +240 __cxa_pure_virtual +244 __cxa_pure_virtual +248 __cxa_pure_virtual +252 __cxa_pure_virtual +256 __cxa_pure_virtual +260 __cxa_pure_virtual +264 __cxa_pure_virtual +268 __cxa_pure_virtual +272 __cxa_pure_virtual +276 (int (*)(...))-0x000000008 +280 (int (*)(...))(& _ZTI27QDesignerWidgetBoxInterface) +284 QDesignerWidgetBoxInterface::_ZThn8_N27QDesignerWidgetBoxInterfaceD1Ev +288 QDesignerWidgetBoxInterface::_ZThn8_N27QDesignerWidgetBoxInterfaceD0Ev +292 QWidget::_ZThn8_NK7QWidget7devTypeEv +296 QWidget::_ZThn8_NK7QWidget11paintEngineEv +300 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesignerWidgetBoxInterface + size=20 align=4 + base size=20 base align=4 +QDesignerWidgetBoxInterface (0xb49752c0) 0 + vptr=((& QDesignerWidgetBoxInterface::_ZTV27QDesignerWidgetBoxInterface) + 8u) + QWidget (0xb496fc30) 0 + primary-for QDesignerWidgetBoxInterface (0xb49752c0) + QObject (0xb497c078) 0 + primary-for QWidget (0xb496fc30) + QPaintDevice (0xb497c0b4) 8 + vptr=((& QDesignerWidgetBoxInterface::_ZTV27QDesignerWidgetBoxInterface) + 284u) + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb47c04ec) 0 empty + +Vtable for QDesignerWidgetDataBaseItemInterface +QDesignerWidgetDataBaseItemInterface::_ZTV36QDesignerWidgetDataBaseItemInterface: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI36QDesignerWidgetDataBaseItemInterface) +8 QDesignerWidgetDataBaseItemInterface::~QDesignerWidgetDataBaseItemInterface +12 QDesignerWidgetDataBaseItemInterface::~QDesignerWidgetDataBaseItemInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 __cxa_pure_virtual + +Class QDesignerWidgetDataBaseItemInterface + size=4 align=4 + base size=4 base align=4 +QDesignerWidgetDataBaseItemInterface (0xb47c07f8) 0 nearly-empty + vptr=((& QDesignerWidgetDataBaseItemInterface::_ZTV36QDesignerWidgetDataBaseItemInterface) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb47c0e10) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb47c0d98) 0 + +Vtable for QDesignerWidgetDataBaseInterface +QDesignerWidgetDataBaseInterface::_ZTV32QDesignerWidgetDataBaseInterface: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI32QDesignerWidgetDataBaseInterface) +8 QDesignerWidgetDataBaseInterface::metaObject +12 QDesignerWidgetDataBaseInterface::qt_metacast +16 QDesignerWidgetDataBaseInterface::qt_metacall +20 QDesignerWidgetDataBaseInterface::~QDesignerWidgetDataBaseInterface +24 QDesignerWidgetDataBaseInterface::~QDesignerWidgetDataBaseInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDesignerWidgetDataBaseInterface::count +60 QDesignerWidgetDataBaseInterface::item +64 QDesignerWidgetDataBaseInterface::indexOf +68 QDesignerWidgetDataBaseInterface::insert +72 QDesignerWidgetDataBaseInterface::append +76 QDesignerWidgetDataBaseInterface::indexOfObject +80 QDesignerWidgetDataBaseInterface::indexOfClassName +84 QDesignerWidgetDataBaseInterface::core + +Class QDesignerWidgetDataBaseInterface + size=12 align=4 + base size=12 base align=4 +QDesignerWidgetDataBaseInterface (0xb47b5940) 0 + vptr=((& QDesignerWidgetDataBaseInterface::_ZTV32QDesignerWidgetDataBaseInterface) + 8u) + QObject (0xb47c0b40) 0 + primary-for QDesignerWidgetDataBaseInterface (0xb47b5940) + +Vtable for QDesignerWidgetFactoryInterface +QDesignerWidgetFactoryInterface::_ZTV31QDesignerWidgetFactoryInterface: 21u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI31QDesignerWidgetFactoryInterface) +8 QDesignerWidgetFactoryInterface::metaObject +12 QDesignerWidgetFactoryInterface::qt_metacast +16 QDesignerWidgetFactoryInterface::qt_metacall +20 QDesignerWidgetFactoryInterface::~QDesignerWidgetFactoryInterface +24 QDesignerWidgetFactoryInterface::~QDesignerWidgetFactoryInterface +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual + +Class QDesignerWidgetFactoryInterface + size=8 align=4 + base size=8 base align=4 +QDesignerWidgetFactoryInterface (0xb47b5c40) 0 + vptr=((& QDesignerWidgetFactoryInterface::_ZTV31QDesignerWidgetFactoryInterface) + 8u) + QObject (0xb47e63c0) 0 + primary-for QDesignerWidgetFactoryInterface (0xb47b5c40) + +Vtable for QDesignerDynamicPropertySheetExtension +QDesignerDynamicPropertySheetExtension::_ZTV38QDesignerDynamicPropertySheetExtension: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI38QDesignerDynamicPropertySheetExtension) +8 QDesignerDynamicPropertySheetExtension::~QDesignerDynamicPropertySheetExtension +12 QDesignerDynamicPropertySheetExtension::~QDesignerDynamicPropertySheetExtension +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual + +Class QDesignerDynamicPropertySheetExtension + size=4 align=4 + base size=4 base align=4 +QDesignerDynamicPropertySheetExtension (0xb47e6b7c) 0 nearly-empty + vptr=((& QDesignerDynamicPropertySheetExtension::_ZTV38QDesignerDynamicPropertySheetExtension) + 8u) + +Vtable for QDesignerExtraInfoExtension +QDesignerExtraInfoExtension::_ZTV27QDesignerExtraInfoExtension: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDesignerExtraInfoExtension) +8 QDesignerExtraInfoExtension::~QDesignerExtraInfoExtension +12 QDesignerExtraInfoExtension::~QDesignerExtraInfoExtension +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual + +Class QDesignerExtraInfoExtension + size=8 align=4 + base size=8 base align=4 +QDesignerExtraInfoExtension (0xb47fa1a4) 0 + vptr=((& QDesignerExtraInfoExtension::_ZTV27QDesignerExtraInfoExtension) + 8u) + +Vtable for QDesignerLayoutDecorationExtension +QDesignerLayoutDecorationExtension::_ZTV34QDesignerLayoutDecorationExtension: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI34QDesignerLayoutDecorationExtension) +8 QDesignerLayoutDecorationExtension::~QDesignerLayoutDecorationExtension +12 QDesignerLayoutDecorationExtension::~QDesignerLayoutDecorationExtension +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QDesignerLayoutDecorationExtension + size=4 align=4 + base size=4 base align=4 +QDesignerLayoutDecorationExtension (0xb47fa834) 0 nearly-empty + vptr=((& QDesignerLayoutDecorationExtension::_ZTV34QDesignerLayoutDecorationExtension) + 8u) + +Vtable for QDesignerMemberSheetExtension +QDesignerMemberSheetExtension::_ZTV29QDesignerMemberSheetExtension: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI29QDesignerMemberSheetExtension) +8 QDesignerMemberSheetExtension::~QDesignerMemberSheetExtension +12 QDesignerMemberSheetExtension::~QDesignerMemberSheetExtension +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual + +Class QDesignerMemberSheetExtension + size=4 align=4 + base size=4 base align=4 +QDesignerMemberSheetExtension (0xb47faf78) 0 nearly-empty + vptr=((& QDesignerMemberSheetExtension::_ZTV29QDesignerMemberSheetExtension) + 8u) + +Vtable for QDesignerPropertySheetExtension +QDesignerPropertySheetExtension::_ZTV31QDesignerPropertySheetExtension: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI31QDesignerPropertySheetExtension) +8 QDesignerPropertySheetExtension::~QDesignerPropertySheetExtension +12 QDesignerPropertySheetExtension::~QDesignerPropertySheetExtension +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QDesignerPropertySheetExtension + size=4 align=4 + base size=4 base align=4 +QDesignerPropertySheetExtension (0xb48185a0) 0 nearly-empty + vptr=((& QDesignerPropertySheetExtension::_ZTV31QDesignerPropertySheetExtension) + 8u) + +Vtable for QDesignerTaskMenuExtension +QDesignerTaskMenuExtension::_ZTV26QDesignerTaskMenuExtension: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QDesignerTaskMenuExtension) +8 QDesignerTaskMenuExtension::~QDesignerTaskMenuExtension +12 QDesignerTaskMenuExtension::~QDesignerTaskMenuExtension +16 QDesignerTaskMenuExtension::preferredEditAction +20 __cxa_pure_virtual + +Class QDesignerTaskMenuExtension + size=4 align=4 + base size=4 base align=4 +QDesignerTaskMenuExtension (0xb4818c30) 0 nearly-empty + vptr=((& QDesignerTaskMenuExtension::_ZTV26QDesignerTaskMenuExtension) + 8u) + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb4830834) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb48307bc) 0 + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb4830924) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb48308ac) 0 + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb4830a14) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb483099c) 0 + +Vtable for QAbstractFormBuilder +QAbstractFormBuilder::_ZTV20QAbstractFormBuilder: 48u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAbstractFormBuilder) +8 QAbstractFormBuilder::~QAbstractFormBuilder +12 QAbstractFormBuilder::~QAbstractFormBuilder +16 QAbstractFormBuilder::load +20 QAbstractFormBuilder::save +24 QAbstractFormBuilder::loadExtraInfo +28 QAbstractFormBuilder::create +32 QAbstractFormBuilder::create +36 QAbstractFormBuilder::create +40 QAbstractFormBuilder::create +44 QAbstractFormBuilder::create +48 QAbstractFormBuilder::create +52 QAbstractFormBuilder::addMenuAction +56 QAbstractFormBuilder::applyProperties +60 QAbstractFormBuilder::applyTabStops +64 QAbstractFormBuilder::createWidget +68 QAbstractFormBuilder::createLayout +72 QAbstractFormBuilder::createAction +76 QAbstractFormBuilder::createActionGroup +80 QAbstractFormBuilder::createCustomWidgets +84 QAbstractFormBuilder::createConnections +88 QAbstractFormBuilder::createResources +92 QAbstractFormBuilder::addItem +96 QAbstractFormBuilder::addItem +100 QAbstractFormBuilder::saveExtraInfo +104 QAbstractFormBuilder::saveDom +108 QAbstractFormBuilder::createActionRefDom +112 QAbstractFormBuilder::createDom +116 QAbstractFormBuilder::createDom +120 QAbstractFormBuilder::createDom +124 QAbstractFormBuilder::createDom +128 QAbstractFormBuilder::createDom +132 QAbstractFormBuilder::createDom +136 QAbstractFormBuilder::saveConnections +140 QAbstractFormBuilder::saveCustomWidgets +144 QAbstractFormBuilder::saveTabStops +148 QAbstractFormBuilder::saveResources +152 QAbstractFormBuilder::computeProperties +156 QAbstractFormBuilder::checkProperty +160 QAbstractFormBuilder::createProperty +164 QAbstractFormBuilder::layoutInfo +168 QAbstractFormBuilder::nameToIcon +172 QAbstractFormBuilder::iconToFilePath +176 QAbstractFormBuilder::iconToQrcPath +180 QAbstractFormBuilder::nameToPixmap +184 QAbstractFormBuilder::pixmapToFilePath +188 QAbstractFormBuilder::pixmapToQrcPath + +Class QAbstractFormBuilder + size=28 align=4 + base size=28 base align=4 +QAbstractFormBuilder (0xb4830384) 0 + vptr=((& QAbstractFormBuilder::_ZTV20QAbstractFormBuilder) + 8u) + +Vtable for QDesignerContainerExtension +QDesignerContainerExtension::_ZTV27QDesignerContainerExtension: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDesignerContainerExtension) +8 QDesignerContainerExtension::~QDesignerContainerExtension +12 QDesignerContainerExtension::~QDesignerContainerExtension +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QDesignerContainerExtension + size=4 align=4 + base size=4 base align=4 +QDesignerContainerExtension (0xb4830f78) 0 nearly-empty + vptr=((& QDesignerContainerExtension::_ZTV27QDesignerContainerExtension) + 8u) + +Vtable for QDesignerCustomWidgetInterface +QDesignerCustomWidgetInterface::_ZTV30QDesignerCustomWidgetInterface: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI30QDesignerCustomWidgetInterface) +8 QDesignerCustomWidgetInterface::~QDesignerCustomWidgetInterface +12 QDesignerCustomWidgetInterface::~QDesignerCustomWidgetInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 QDesignerCustomWidgetInterface::isInitialized +52 QDesignerCustomWidgetInterface::initialize +56 QDesignerCustomWidgetInterface::domXml +60 QDesignerCustomWidgetInterface::codeTemplate + +Class QDesignerCustomWidgetInterface + size=4 align=4 + base size=4 base align=4 +QDesignerCustomWidgetInterface (0xb4876474) 0 nearly-empty + vptr=((& QDesignerCustomWidgetInterface::_ZTV30QDesignerCustomWidgetInterface) + 8u) + +Vtable for QDesignerCustomWidgetCollectionInterface +QDesignerCustomWidgetCollectionInterface::_ZTV40QDesignerCustomWidgetCollectionInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI40QDesignerCustomWidgetCollectionInterface) +8 QDesignerCustomWidgetCollectionInterface::~QDesignerCustomWidgetCollectionInterface +12 QDesignerCustomWidgetCollectionInterface::~QDesignerCustomWidgetCollectionInterface +16 __cxa_pure_virtual + +Class QDesignerCustomWidgetCollectionInterface + size=4 align=4 + base size=4 base align=4 +QDesignerCustomWidgetCollectionInterface (0xb4876e88) 0 nearly-empty + vptr=((& QDesignerCustomWidgetCollectionInterface::_ZTV40QDesignerCustomWidgetCollectionInterface) + 8u) + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb488c4ec) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb488c474) 0 + +Vtable for QFormBuilder +QFormBuilder::_ZTV12QFormBuilder: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QFormBuilder) +8 QFormBuilder::~QFormBuilder +12 QFormBuilder::~QFormBuilder +16 QAbstractFormBuilder::load +20 QAbstractFormBuilder::save +24 QAbstractFormBuilder::loadExtraInfo +28 QFormBuilder::create +32 QFormBuilder::create +36 QFormBuilder::create +40 QFormBuilder::create +44 QFormBuilder::create +48 QFormBuilder::create +52 QAbstractFormBuilder::addMenuAction +56 QFormBuilder::applyProperties +60 QAbstractFormBuilder::applyTabStops +64 QFormBuilder::createWidget +68 QFormBuilder::createLayout +72 QAbstractFormBuilder::createAction +76 QAbstractFormBuilder::createActionGroup +80 QAbstractFormBuilder::createCustomWidgets +84 QFormBuilder::createConnections +88 QAbstractFormBuilder::createResources +92 QFormBuilder::addItem +96 QFormBuilder::addItem +100 QAbstractFormBuilder::saveExtraInfo +104 QAbstractFormBuilder::saveDom +108 QAbstractFormBuilder::createActionRefDom +112 QAbstractFormBuilder::createDom +116 QAbstractFormBuilder::createDom +120 QAbstractFormBuilder::createDom +124 QAbstractFormBuilder::createDom +128 QAbstractFormBuilder::createDom +132 QAbstractFormBuilder::createDom +136 QAbstractFormBuilder::saveConnections +140 QAbstractFormBuilder::saveCustomWidgets +144 QAbstractFormBuilder::saveTabStops +148 QAbstractFormBuilder::saveResources +152 QAbstractFormBuilder::computeProperties +156 QAbstractFormBuilder::checkProperty +160 QAbstractFormBuilder::createProperty +164 QAbstractFormBuilder::layoutInfo +168 QAbstractFormBuilder::nameToIcon +172 QAbstractFormBuilder::iconToFilePath +176 QAbstractFormBuilder::iconToQrcPath +180 QAbstractFormBuilder::nameToPixmap +184 QAbstractFormBuilder::pixmapToFilePath +188 QAbstractFormBuilder::pixmapToQrcPath +192 QFormBuilder::updateCustomWidgets + +Class QFormBuilder + size=36 align=4 + base size=36 base align=4 +QFormBuilder (0xb4853b40) 0 + vptr=((& QFormBuilder::_ZTV12QFormBuilder) + 8u) + QAbstractFormBuilder (0xb488c384) 0 + primary-for QFormBuilder (0xb4853b40) + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb46e39d8) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb46f6f78) 0 + +Class QVectorTypedData + size=24 align=4 + base size=24 base align=4 +QVectorTypedData (0xb477aa14) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb458d528) 0 + +Class QVectorTypedData + size=36 align=4 + base size=36 base align=4 +QVectorTypedData (0xb45af000) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb45bfc30) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb45bfe88) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb45ffb04) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb45ffb7c) 0 + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb465812c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4658258) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb46584b0) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4658528) 0 + +Class QVector::realloc(int, int) [with T = QPoint]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPoint]:: (0xb46588ac) 0 + +Class QVector::realloc(int, int) [with T = QPointF]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPointF]:: (0xb4658870) 0 + +Class QVector::realloc(int, int) [with T = QPainterPath::Element]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPainterPath::Element]:: (0xb4497b40) 0 + diff --git a/tests/auto/bic/data/QtGui.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtGui.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..255a42e --- /dev/null +++ b/tests/auto/bic/data/QtGui.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,18398 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb78b3294) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb78b32d0) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7ca2c40) 0 empty + QUintForSize<4> (0xb78b3348) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb78b3474) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb78b34b0) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7ca2e00) 0 empty + QIntForSize<4> (0xb78b3528) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb78b38ac) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb78b3ec4) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb6a76870) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb6a76924) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a76b04) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a76bf4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a76ce4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a76dd4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a76ec4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a76fb4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a8e0b4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a8e1a4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a8e294) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a8e384) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a8e474) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a8e564) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a8e654) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a8e744) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a8e834) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb6a8e924) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb6aab3c0) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb6aab834) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6ad44ec) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb6ae1fb4) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6b13340) 0 + QBasicAtomicInt (0xb6b05f78) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6b19ec4) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6b5f0b4) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6b364b0) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb698a0b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb69d81a4) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69d8438) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69d8d5c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a1f690) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a1ffb4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a348e8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a3e21c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a3eb40) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a54474) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a54d98) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a666cc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6877000) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6877924) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb688c258) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb688cb7c) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb68d2e88) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb68e03c0) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb688cce4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68e0f78) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb6954000) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb67a08ac) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb6805c00) 0 + QString (0xb6859348) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6859654) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb68674ec) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb66bd258) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb66c3200) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb66bd564) 0 nearly-empty + primary-for std::bad_exception (0xb66c3200) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb66c3340) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb66bd834) 0 nearly-empty + primary-for std::bad_alloc (0xb66c3340) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb66bdb04) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb66bdd5c) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb66bdd20) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6766fb4) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb6766d98) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb676630c) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6585618) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb65855a0) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb65a08ac) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb65a0e10) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb65aa3fc) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb65b3100) 0 + QGenericArgument (0xb65aa834) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb65aad20) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb65aab40) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb65c1e88) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb65c1e10) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb65c1d5c) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb65c1fb4) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb6602528) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb6600f80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb6602e88) 0 + primary-for QIODevice (0xb6600f80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6637168) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb665203c) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb64820b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb64978ac) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb649799c) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6497f00) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6497e88) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb64a6080) 0 + QList (0xb6497f3c) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb64c3ca8) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb64c3ec4) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb64e2f3c) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb64fa040) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb64f6528) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb64fa040) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb64f4e60) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb64f6870) 0 + primary-for QTextCodecPlugin (0xb64f4e60) + QTextCodecFactoryInterface (0xb64fa1c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb64f68ac) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb64fa1c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb65090f0) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb6509ce4) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb65099d8) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb64faa80) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb6513ec4) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb64faa80) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb64fab40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb64fab80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb64fab40) + std::exception (0xb651a078) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb64fab80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb651a21c) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb651a3fc) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb651a474) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb651a438) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb63b8d20) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb63b8ce4) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb63d7618) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb63d76cc) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6265654) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb6265744) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62656cc) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb62657bc) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6265834) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb6265870) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb62658ac) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6265924) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb6265960) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb62b40f0) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb62b4d5c) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb6272f00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb62c6dd4) 0 + primary-for QTextIStream (0xb6272f00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb62d91c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb62d5870) 0 + primary-for QTextOStream (0xb62d91c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb62e42d0) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb62e4348) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb62e4258) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62e43c0) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62e4438) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb62e44b0) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb62e4528) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb62e4564) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb62e45a0) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb62e4618) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb62e4690) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb62e46cc) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb62e47f8) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb62e4780) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb62e4744) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb62e4870) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb62e4960) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb62e48e8) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb62e49d8) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb62e4ac8) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb62e4a50) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62e4b7c) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb62e4bf4) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb62e4c6c) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb62e4ca8) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb62e4ce4) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb62e4d20) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb61a5c6c) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb61a5c30) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb6207a14) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb6220654) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb62205dc) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb622099c) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb62204ec) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb6220ac8) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb624a168) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb624a1e0) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb6063880) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb624ad20) 0 + primary-for QFutureInterface (0xb6063880) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb60984b0) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb60ba7c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb60bbb40) 0 + primary-for QFutureWatcherBase (0xb60ba7c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb60baec0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb60baf00) 0 + primary-for QFutureWatcher (0xb60baec0) + QObject (0xb60cf654) 0 + primary-for QFutureWatcherBase (0xb60baf00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb60e8564) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb60dd9c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb60e8e88) 0 + primary-for QThread (0xb60dd9c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb60ddd00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb60f8ca8) 0 + primary-for QThreadPool (0xb60ddd00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb610d654) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb610d924) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb61113c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb611c654) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb61113c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb611ce4c) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb6111d40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb611cec4) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb6111f00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb6111f40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb612f348) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb6111f40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb612f960) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb612f99c) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb6136240) 0 empty + std::input_iterator_tag (0xb612f9d8) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb61362c0) 0 empty + std::forward_iterator_tag (0xb6136300) 0 empty + std::input_iterator_tag (0xb612fa14) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb6136380) 0 empty + std::bidirectional_iterator_tag (0xb61363c0) 0 empty + std::forward_iterator_tag (0xb6136400) 0 empty + std::input_iterator_tag (0xb612fa50) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb612fd5c) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb612fd98) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb612fe10) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb612f4b0) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e0b4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e12c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e1a4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e21c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e294) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e30c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e384) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e3fc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e474) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e4ec) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e564) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e5dc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614e654) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb614e744) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb614e7bc) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb614e834) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb614ebb8) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb614ec30) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb614ed20) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb614ed98) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb614ee10) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb5f6303c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb5f63078) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb5f630b4) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb5f630f0) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb5f6312c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb5f63168) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb5f631e0) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb5f6321c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb5f63258) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb5f63294) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb5f632d0) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb5f6330c) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb5f63ce4) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb5fdb2d0) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb5fdb708) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb5fdb924) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb5fdbd20) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb5fdbe88) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb6018000) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb6018708) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb603b12c) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb603da50) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb603dca8) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb603dce4) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb603dd5c) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb603dd98) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb603de10) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb5e6a03c) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb5e6a1a4) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb5e6a12c) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb5e6a1e0) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb5e6a21c) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb5ec6744) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5ec6a14) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5ed38c0) 0 empty + __gnu_cxx::new_allocator (0xb5ec6a50) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5ec6a8c) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5ed3980) 0 empty + __gnu_cxx::new_allocator (0xb5ec6ac8) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb5ec6ce4) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5d785dc) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5d78618) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5d7ac40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5d78654) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5dfe2d0) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5e13200) 0 + std::allocator (0xb5e13240) 0 empty + __gnu_cxx::new_allocator (0xb5dfe348) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5dfe258) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5dfe384) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5e133c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5dfe3c0) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5dfe474) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5e135c0) 0 + std::allocator (0xb5e13600) 0 empty + __gnu_cxx::new_allocator (0xb5dfe4ec) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5dfe3fc) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5dfe528) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5dfe5dc) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5e13780) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5dfe564) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5dfe618) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5ca9a8c) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5cb5438) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5cb5780) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5cc1740) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5ccd12c) 0 + primary-for std::collate (0xb5cc1740) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5cc1840) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5ccd21c) 0 + primary-for std::collate (0xb5cc1840) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5ccd690) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5ccd6cc) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5ce57c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5ccd708) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5ce5900) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5ce5940) 0 + primary-for std::collate_byname (0xb5ce5900) + std::locale::facet (0xb5ccd780) 0 + primary-for std::collate (0xb5ce5940) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5ce59c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5ce5a00) 0 + primary-for std::collate_byname (0xb5ce59c0) + std::locale::facet (0xb5ccd870) 0 + primary-for std::collate (0xb5ce5a00) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5d04040) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5cfb654) 0 nearly-empty + primary-for std::ios_base::failure (0xb5d04040) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5d078e8) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5d07e88) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5d0c294) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5cfb618) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5d2bca8) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5d2bf3c) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5d2bd98) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5bb24b0) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5bae12c) 0 + primary-for std::ctype (0xb5bb24b0) + std::ctype_base (0xb5bae168) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5bbad70) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5bcace4) 0 + primary-for std::__ctype_abstract_base (0xb5bbad70) + std::ctype_base (0xb5bcad20) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5bbb900) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5bd4be0) 0 + primary-for std::ctype (0xb5bbb900) + std::locale::facet (0xb5bcae10) 0 + primary-for std::__ctype_abstract_base (0xb5bd4be0) + std::ctype_base (0xb5bcae4c) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5bbbac0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5bde370) 0 + primary-for std::ctype_byname (0xb5bbbac0) + std::locale::facet (0xb5bdc168) 0 + primary-for std::ctype (0xb5bde370) + std::ctype_base (0xb5bdc1a4) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5bbbb40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5bbbb80) 0 + primary-for std::ctype_byname (0xb5bbbb40) + std::__ctype_abstract_base (0xb5bdea00) 0 + primary-for std::ctype (0xb5bbbb80) + std::locale::facet (0xb5bdc30c) 0 + primary-for std::__ctype_abstract_base (0xb5bdea00) + std::ctype_base (0xb5bdc348) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5bdcd5c) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5bf0580) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5bec528) 0 + primary-for std::numpunct (0xb5bf0580) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5bf0640) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5bec618) 0 + primary-for std::numpunct (0xb5bf0640) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5c28c6c) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5a74b80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5a74bc0) 0 + primary-for std::numpunct_byname (0xb5a74b80) + std::locale::facet (0xb5a7d294) 0 + primary-for std::numpunct (0xb5a74bc0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5a74c00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5a7d384) 0 + primary-for std::num_get > > (0xb5a74c00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5a74c80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5a7d474) 0 + primary-for std::num_put > > (0xb5a74c80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5a74d00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5a74d40) 0 + primary-for std::numpunct_byname (0xb5a74d00) + std::locale::facet (0xb5a7d564) 0 + primary-for std::numpunct (0xb5a74d40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5a74dc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5a7d654) 0 + primary-for std::num_get > > (0xb5a74dc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5a74e40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5a7d744) 0 + primary-for std::num_put > > (0xb5a74e40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5abfe80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5a7df3c) 0 + primary-for std::basic_ios > (0xb5abfe80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5abfec0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5a7d348) 0 + primary-for std::basic_ios > (0xb5abfec0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5b10b40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5b10b80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb5aefb40) 4 + primary-for std::basic_ios > (0xb5b10b80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5aefd20) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5b10cc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5b10d00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5aefd5c) 4 + primary-for std::basic_ios > (0xb5b10d00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5aeff00) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5b4f580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5b4f5c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5b513fc) 8 + primary-for std::basic_ios > (0xb5b4f5c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5b4f680) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5b4f6c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5b51780) 8 + primary-for std::basic_ios > (0xb5b4f6c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5b51e88) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5b51ec4) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb597d580) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5b51f00) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb59953c0) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb59b7480 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb59b7500 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb59c7050) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb59b7480) 0 + primary-for std::basic_iostream > (0xb59c7050) + subvttidx=4u + std::basic_ios > (0xb59b74c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb59953fc) 12 + primary-for std::basic_ios > (0xb59b74c0) + std::basic_ostream > (0xb59b7500) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb59b74c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5995690) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb59b7800 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb59b7880 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb59d50f0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb59b7800) 0 + primary-for std::basic_iostream > (0xb59d50f0) + subvttidx=4u + std::basic_ios > (0xb59b7840) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb59956cc) 12 + primary-for std::basic_ios > (0xb59b7840) + std::basic_ostream > (0xb59b7880) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb59b7840) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb5995fb4) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb5995f3c) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb5995ec4) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb5995e10) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb59fa294) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb59fab04) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb58dff78) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb58ff870) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb58f2b00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb58ff870) + QFutureInterfaceBase (0xb5906168) 0 + primary-for QFutureInterface (0xb58f2b00) + QRunnable (0xb59061a4) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb58f2b80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb58ffc80) 0 + primary-for QtConcurrent::RunFunctionTask (0xb58f2b80) + QFutureInterface (0xb58f2bc0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb58ffc80) + QFutureInterfaceBase (0xb5906348) 0 + primary-for QFutureInterface (0xb58f2bc0) + QRunnable (0xb5906384) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb56695dc) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb5853f00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb5853f40) 0 + primary-for QFile (0xb5853f00) + QObject (0xb56696cc) 0 + primary-for QIODevice (0xb5853f40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb569503c) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb5695bf4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56b8294) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb56b85a0) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb56c730c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb56c7294) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb56c73fc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56e7960) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56e7a50) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb57275dc) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb5727618) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb570d340) 0 + QAbstractFileEngine::ExtensionOption (0xb5727654) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb570d3c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb5727744) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb570d440) 0 + QAbstractFileEngine::ExtensionOption (0xb5727780) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb5717d20) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5727e10) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb5739c6c) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb5739e10) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb570d680) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb570d6c0) 0 + primary-for QBuffer (0xb570d680) + QObject (0xb574630c) 0 + primary-for QIODevice (0xb570d6c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb57467f8) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb575a7bc) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb570db00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb55695a0) 0 + primary-for QFileSystemWatcher (0xb570db00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb570ddc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb5569f78) 0 + primary-for QFSFileEngine (0xb570ddc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb570dec0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb570df00) 0 + primary-for QProcess (0xb570dec0) + QObject (0xb557c924) 0 + primary-for QIODevice (0xb570df00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb559c348) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb55bd780) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb55bd7f8) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb559c564) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55c2000) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55c2168) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb55da564) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb55daa50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55dae88) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fc078) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fc258) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fc438) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fc618) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fc7f8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fc9d8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fcbb8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fcd98) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fcf78) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5605168) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5605348) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5605528) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5605708) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56058e8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5605ac8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5605ca8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5605e88) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560b078) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560b258) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560b438) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560b618) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560b7f8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560b9d8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560bbb8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560bd98) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560bf78) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5615168) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5615348) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5615528) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5615708) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56158e8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5615ac8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5615ca8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5615e88) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb561e078) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb561e258) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb561e438) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb561e618) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb561e7f8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb561e9d8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb561ebb8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb561ed98) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb561ef78) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5625168) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5625348) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5625528) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5625708) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56258e8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5625ac8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5625ca8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5625e88) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb562c078) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb562c258) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb56440f0) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb56442d0) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb56441a4) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb564499c) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb562c438) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb5457ec4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb5457e4c) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb5457fb4) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb5457f3c) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb5497348) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5497960) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5497b40) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5497d20) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb549f3c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb5497f00) 0 + primary-for QSettings (0xb549f3c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb549ffc0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb54e4000) 0 + primary-for QTemporaryFile (0xb549ffc0) + QIODevice (0xb54e4040) 0 + primary-for QFile (0xb54e4000) + QObject (0xb54d7c6c) 0 + primary-for QIODevice (0xb54e4040) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb54e8dd4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb54f2ce4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb551c780) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb54e4bc0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb552d5dc) 0 + primary-for QEventLoop (0xb54e4bc0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb552dbf4) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb54e4f40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb5541fb4) 0 + primary-for QAbstractEventDispatcher (0xb54e4f40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb5550e88) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb536b258) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb536b348) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb536ba8c) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb5556b00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb536bb7c) 0 + primary-for QAbstractItemModel (0xb5556b00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb5556fc0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb539f000) 0 + primary-for QAbstractTableModel (0xb5556fc0) + QObject (0xb539a708) 0 + primary-for QAbstractItemModel (0xb539f000) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb539f240) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb539f280) 0 + primary-for QAbstractListModel (0xb539f240) + QObject (0xb53a9168) 0 + primary-for QAbstractItemModel (0xb539f280) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb53b9bf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53c8384) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb53c8474) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb539fc80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb53d9168) 0 + primary-for QTimerEvent (0xb539fc80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb539fd40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb53d93c0) 0 + primary-for QChildEvent (0xb539fd40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb539ff00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb53d9c30) 0 + primary-for QCustomEvent (0xb539ff00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb53e8000) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb53d9564) 0 + primary-for QDynamicPropertyChangeEvent (0xb53e8000) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb53e80c0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb53e91e0) 0 + primary-for QCoreApplication (0xb53e80c0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb53ffc30) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb53fffb4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5433474) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb5433564) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb543399c) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb5433a8c) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb5433d98) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54480f0) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb543e340) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb54481e0) 0 + primary-for QMimeData (0xb543e340) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb543e600) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb5448d5c) 0 + primary-for QObjectCleanupHandler (0xb543e600) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb543e840) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb52565dc) 0 + primary-for QSharedMemory (0xb543e840) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb543eb00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb52663c0) 0 + primary-for QSignalMapper (0xb543eb00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb543edc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb5274528) 0 + primary-for QSocketNotifier (0xb543edc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb52815a0) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb5283140) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb5281ac8) 0 + primary-for QTimer (0xb5283140) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb52835c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb5290c30) 0 + primary-for QTranslator (0xb52835c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb52838c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb52a0a50) 0 + primary-for QLibrary (0xb52838c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb52af99c) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb5283c40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb52c0528) 0 + primary-for QPluginLoader (0xb5283c40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb52d00f0) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb52ddf3c) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb52e75dc) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb52e72d0) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb52f0ac8) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb52f07bc) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb52f7ca8) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb52f7f78) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb5300384) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb53390b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5339d98) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb534703c) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb5347a14) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb5347d98) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5157744) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb5157834) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5161e10) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb5161f00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5172564) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb5172744) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51885a0) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb5197780) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51a4690) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb51ba744) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51bab04) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb51dac6c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51e8690) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb520f2d0) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb50795dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5084654) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb50a2258) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50aa294) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb50cb0b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50d9258) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb5120b7c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f42078) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb4f7c744) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb4f8e960) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb4f9d8c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb4fab30c) 0 + primary-for QTimeLine (0xb4f9d8c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb4fbe6cc) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb4fe3870) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fece10) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4fecf78) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4fecf00) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb4fe9340) 0 + QVector (0xb4fecfb4) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb4fec000) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb500f9d8) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb500fb04) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb501d6cc) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb501d7f8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4e2f780) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb4e2f8ac) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb4e2fa50) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb4e6003c) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4e7df78) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4e85000) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4e85078) 0 + +Class QColor:: + size=10 align=2 + base size=10 base align=2 +QColor:: (0xb4e7df00) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0xb4e60ac8) 0 + +Class QRegion::QRegionData + size=16 align=4 + base size=16 base align=4 +QRegion::QRegionData (0xb4ea74b0) 0 + +Class QRegion + size=4 align=4 + base size=4 base align=4 +QRegion (0xb4e90e10) 0 + +Class QKeySequence + size=4 align=4 + base size=4 base align=4 +QKeySequence (0xb4ea7ec4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ed203c) 0 empty + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMimeSource) +8 QMimeSource::~QMimeSource +12 QMimeSource::~QMimeSource +16 __cxa_pure_virtual +20 QMimeSource::provides +24 __cxa_pure_virtual + +Class QMimeSource + size=4 align=4 + base size=4 base align=4 +QMimeSource (0xb4ed22d0) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 8u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QDrag) +8 QDrag::metaObject +12 QDrag::qt_metacast +16 QDrag::qt_metacall +20 QDrag::~QDrag +24 QDrag::~QDrag +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QDrag + size=8 align=4 + base size=8 base align=4 +QDrag (0xb4ed5100) 0 + vptr=((& QDrag::_ZTV5QDrag) + 8u) + QObject (0xb4ed2438) 0 + primary-for QDrag (0xb4ed5100) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QInputEvent) +8 QInputEvent::~QInputEvent +12 QInputEvent::~QInputEvent + +Class QInputEvent + size=16 align=4 + base size=16 base align=4 +QInputEvent (0xb4ed5400) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 8u) + QEvent (0xb4ed2f78) 0 + primary-for QInputEvent (0xb4ed5400) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMouseEvent) +8 QMouseEvent::~QMouseEvent +12 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=40 align=4 + base size=40 base align=4 +QMouseEvent (0xb4ed54c0) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 8u) + QInputEvent (0xb4ed5500) 0 + primary-for QMouseEvent (0xb4ed54c0) + QEvent (0xb4ee81e0) 0 + primary-for QInputEvent (0xb4ed5500) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHoverEvent) +8 QHoverEvent::~QHoverEvent +12 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=28 align=4 + base size=28 base align=4 +QHoverEvent (0xb4ed5840) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 8u) + QEvent (0xb4ef64ec) 0 + primary-for QHoverEvent (0xb4ed5840) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWheelEvent) +8 QWheelEvent::~QWheelEvent +12 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=44 align=4 + base size=44 base align=4 +QWheelEvent (0xb4ed5940) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 8u) + QInputEvent (0xb4ed5980) 0 + primary-for QWheelEvent (0xb4ed5940) + QEvent (0xb4ef68ac) 0 + primary-for QInputEvent (0xb4ed5980) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTabletEvent) +8 QTabletEvent::~QTabletEvent +12 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=104 align=4 + base size=104 base align=4 +QTabletEvent (0xb4ed5c80) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 8u) + QInputEvent (0xb4ed5cc0) 0 + primary-for QTabletEvent (0xb4ed5c80) + QEvent (0xb4f0a474) 0 + primary-for QInputEvent (0xb4ed5cc0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QKeyEvent) +8 QKeyEvent::~QKeyEvent +12 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=28 align=4 + base size=27 base align=4 +QKeyEvent (0xb4f1a1c0) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 8u) + QInputEvent (0xb4f1a200) 0 + primary-for QKeyEvent (0xb4f1a1c0) + QEvent (0xb4f19960) 0 + primary-for QInputEvent (0xb4f1a200) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFocusEvent) +8 QFocusEvent::~QFocusEvent +12 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=16 align=4 + base size=16 base align=4 +QFocusEvent (0xb4f1a5c0) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 8u) + QEvent (0xb4f25c6c) 0 + primary-for QFocusEvent (0xb4f1a5c0) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QPaintEvent) +8 QPaintEvent::~QPaintEvent +12 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=36 align=4 + base size=33 base align=4 +QPaintEvent (0xb4f1a6c0) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 8u) + QEvent (0xb4d3412c) 0 + primary-for QPaintEvent (0xb4f1a6c0) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +8 QUpdateLaterEvent::~QUpdateLaterEvent +12 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=16 align=4 + base size=16 base align=4 +QUpdateLaterEvent (0xb4f1a840) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 8u) + QEvent (0xb4d34744) 0 + primary-for QUpdateLaterEvent (0xb4f1a840) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QMoveEvent) +8 QMoveEvent::~QMoveEvent +12 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=28 align=4 + base size=28 base align=4 +QMoveEvent (0xb4f1a900) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 8u) + QEvent (0xb4d3499c) 0 + primary-for QMoveEvent (0xb4f1a900) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QResizeEvent) +8 QResizeEvent::~QResizeEvent +12 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=28 align=4 + base size=28 base align=4 +QResizeEvent (0xb4f1aa00) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 8u) + QEvent (0xb4d34ce4) 0 + primary-for QResizeEvent (0xb4f1aa00) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QCloseEvent) +8 QCloseEvent::~QCloseEvent +12 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=12 align=4 + base size=12 base align=4 +QCloseEvent (0xb4f1ab00) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 8u) + QEvent (0xb4d34870) 0 + primary-for QCloseEvent (0xb4f1ab00) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QIconDragEvent) +8 QIconDragEvent::~QIconDragEvent +12 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=12 align=4 + base size=12 base align=4 +QIconDragEvent (0xb4f1ab40) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 8u) + QEvent (0xb4d410b4) 0 + primary-for QIconDragEvent (0xb4f1ab40) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QShowEvent) +8 QShowEvent::~QShowEvent +12 QShowEvent::~QShowEvent + +Class QShowEvent + size=12 align=4 + base size=12 base align=4 +QShowEvent (0xb4f1abc0) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 8u) + QEvent (0xb4d4121c) 0 + primary-for QShowEvent (0xb4f1abc0) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QHideEvent) +8 QHideEvent::~QHideEvent +12 QHideEvent::~QHideEvent + +Class QHideEvent + size=12 align=4 + base size=12 base align=4 +QHideEvent (0xb4f1ac40) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 8u) + QEvent (0xb4d41384) 0 + primary-for QHideEvent (0xb4f1ac40) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QContextMenuEvent) +8 QContextMenuEvent::~QContextMenuEvent +12 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=36 align=4 + base size=33 base align=4 +QContextMenuEvent (0xb4f1acc0) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 8u) + QInputEvent (0xb4f1ad00) 0 + primary-for QContextMenuEvent (0xb4f1acc0) + QEvent (0xb4d414ec) 0 + primary-for QInputEvent (0xb4f1ad00) + +Class QInputMethodEvent::Attribute + size=24 align=4 + base size=24 base align=4 +QInputMethodEvent::Attribute (0xb4d4f078) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4d4f960) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4d4f8e8) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QInputMethodEvent) +8 QInputMethodEvent::~QInputMethodEvent +12 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=32 align=4 + base size=32 base align=4 +QInputMethodEvent (0xb4f1af80) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 8u) + QEvent (0xb4d4f03c) 0 + primary-for QInputMethodEvent (0xb4f1af80) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QDropEvent) +8 QDropEvent::~QDropEvent +12 QDropEvent::~QDropEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI10QDropEvent) +36 QDropEvent::_ZThn12_N10QDropEventD1Ev +40 QDropEvent::_ZThn12_N10QDropEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=52 align=4 + base size=52 base align=4 +QDropEvent (0xb4d66af0) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 8u) + QEvent (0xb4d6f12c) 0 + primary-for QDropEvent (0xb4d66af0) + QMimeSource (0xb4d6f168) 12 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 36u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDragMoveEvent) +8 QDragMoveEvent::~QDragMoveEvent +12 QDragMoveEvent::~QDragMoveEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI14QDragMoveEvent) +36 QDragMoveEvent::_ZThn12_N14QDragMoveEventD1Ev +40 QDragMoveEvent::_ZThn12_N14QDragMoveEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=68 align=4 + base size=68 base align=4 +QDragMoveEvent (0xb4d527c0) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 8u) + QDropEvent (0xb4d794b0) 0 + primary-for QDragMoveEvent (0xb4d527c0) + QEvent (0xb4d7d5a0) 0 + primary-for QDropEvent (0xb4d794b0) + QMimeSource (0xb4d7d5dc) 12 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 36u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QDragEnterEvent) +8 QDragEnterEvent::~QDragEnterEvent +12 QDragEnterEvent::~QDragEnterEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI15QDragEnterEvent) +36 QDragEnterEvent::_ZThn12_N15QDragEnterEventD1Ev +40 QDragEnterEvent::_ZThn12_N15QDragEnterEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=68 align=4 + base size=68 base align=4 +QDragEnterEvent (0xb4d529c0) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 8u) + QDragMoveEvent (0xb4d52a00) 0 + primary-for QDragEnterEvent (0xb4d529c0) + QDropEvent (0xb4d80410) 0 + primary-for QDragMoveEvent (0xb4d52a00) + QEvent (0xb4d8412c) 0 + primary-for QDropEvent (0xb4d80410) + QMimeSource (0xb4d84168) 12 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 36u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QDragResponseEvent) +8 QDragResponseEvent::~QDragResponseEvent +12 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=16 align=4 + base size=13 base align=4 +QDragResponseEvent (0xb4d52a40) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 8u) + QEvent (0xb4d84348) 0 + primary-for QDragResponseEvent (0xb4d52a40) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QDragLeaveEvent) +8 QDragLeaveEvent::~QDragLeaveEvent +12 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=12 align=4 + base size=12 base align=4 +QDragLeaveEvent (0xb4d52b40) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 8u) + QEvent (0xb4d845a0) 0 + primary-for QDragLeaveEvent (0xb4d52b40) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QHelpEvent) +8 QHelpEvent::~QHelpEvent +12 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=28 align=4 + base size=28 base align=4 +QHelpEvent (0xb4d52b80) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 8u) + QEvent (0xb4d84708) 0 + primary-for QHelpEvent (0xb4d52b80) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QStatusTipEvent) +8 QStatusTipEvent::~QStatusTipEvent +12 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=16 align=4 + base size=16 base align=4 +QStatusTipEvent (0xb4d52dc0) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 8u) + QEvent (0xb4d84e88) 0 + primary-for QStatusTipEvent (0xb4d52dc0) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +8 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +12 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=16 align=4 + base size=16 base align=4 +QWhatsThisClickedEvent (0xb4d52e80) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 8u) + QEvent (0xb4d84fb4) 0 + primary-for QWhatsThisClickedEvent (0xb4d52e80) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QActionEvent) +8 QActionEvent::~QActionEvent +12 QActionEvent::~QActionEvent + +Class QActionEvent + size=20 align=4 + base size=20 base align=4 +QActionEvent (0xb4d52f40) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 8u) + QEvent (0xb4d9621c) 0 + primary-for QActionEvent (0xb4d52f40) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFileOpenEvent) +8 QFileOpenEvent::~QFileOpenEvent +12 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=16 align=4 + base size=16 base align=4 +QFileOpenEvent (0xb4d9b040) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 8u) + QEvent (0xb4d96564) 0 + primary-for QFileOpenEvent (0xb4d9b040) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +8 QToolBarChangeEvent::~QToolBarChangeEvent +12 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=16 align=4 + base size=13 base align=4 +QToolBarChangeEvent (0xb4d9b100) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 8u) + QEvent (0xb4d967bc) 0 + primary-for QToolBarChangeEvent (0xb4d9b100) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QShortcutEvent) +8 QShortcutEvent::~QShortcutEvent +12 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=24 align=4 + base size=24 base align=4 +QShortcutEvent (0xb4d9b1c0) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 8u) + QEvent (0xb4d96a14) 0 + primary-for QShortcutEvent (0xb4d9b1c0) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QClipboardEvent) +8 QClipboardEvent::~QClipboardEvent +12 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=12 align=4 + base size=12 base align=4 +QClipboardEvent (0xb4d9b3c0) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 8u) + QEvent (0xb4da4000) 0 + primary-for QClipboardEvent (0xb4d9b3c0) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +8 QWindowStateChangeEvent::~QWindowStateChangeEvent +12 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=16 align=4 + base size=16 base align=4 +QWindowStateChangeEvent (0xb4d9b480) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 8u) + QEvent (0xb4da4258) 0 + primary-for QWindowStateChangeEvent (0xb4d9b480) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +8 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +12 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=16 align=4 + base size=16 base align=4 +QMenubarUpdatedEvent (0xb4d9b540) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 8u) + QEvent (0xb4da44ec) 0 + primary-for QMenubarUpdatedEvent (0xb4d9b540) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0xb4da49d8) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4db7258) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4db7e88) 0 + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb4dd1a50) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAccessibleInterface) +8 QAccessibleInterface::~QAccessibleInterface +12 QAccessibleInterface::~QAccessibleInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QAccessibleInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleInterface (0xb4d9b9c0) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 8u) + QAccessible (0xb4dd1e4c) 0 empty + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb4de299c) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb4de2924) 0 + +Class QSet + size=4 align=4 + base size=4 base align=4 +QSet (0xb4de28ac) 0 + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +8 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +12 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=4 align=4 + base size=4 base align=4 +QAccessibleInterfaceEx (0xb4d9bf80) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 8u) + QAccessibleInterface (0xb4d9bfc0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb4d9bf80) + QAccessible (0xb4e087f8) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QAccessibleEvent) +8 QAccessibleEvent::~QAccessibleEvent +12 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=20 align=4 + base size=20 base align=4 +QAccessibleEvent (0xb4e0e080) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 8u) + QEvent (0xb4e0899c) 0 + primary-for QAccessibleEvent (0xb4e0e080) + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QAccessible2Interface) +8 QAccessible2Interface::~QAccessible2Interface +12 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=4 align=4 + base size=4 base align=4 +QAccessible2Interface (0xb4e15348) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 8u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +8 QAccessibleTextInterface::~QAccessibleTextInterface +12 QAccessibleTextInterface::~QAccessibleTextInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleTextInterface (0xb4e0e600) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 8u) + QAccessible2Interface (0xb4e15870) 0 nearly-empty + primary-for QAccessibleTextInterface (0xb4e0e600) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +8 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +12 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleEditableTextInterface (0xb4e0e780) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 8u) + QAccessible2Interface (0xb4e15ca8) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0xb4e0e780) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +8 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +12 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +16 QAccessibleSimpleEditableTextInterface::copyText +20 QAccessibleSimpleEditableTextInterface::deleteText +24 QAccessibleSimpleEditableTextInterface::insertText +28 QAccessibleSimpleEditableTextInterface::cutText +32 QAccessibleSimpleEditableTextInterface::pasteText +36 QAccessibleSimpleEditableTextInterface::replaceText +40 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=8 align=4 + base size=8 base align=4 +QAccessibleSimpleEditableTextInterface (0xb4e0e900) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 8u) + QAccessibleEditableTextInterface (0xb4e0e940) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0xb4e0e900) + QAccessible2Interface (0xb4e29078) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0xb4e0e940) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +8 QAccessibleValueInterface::~QAccessibleValueInterface +12 QAccessibleValueInterface::~QAccessibleValueInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleValueInterface (0xb4e0ea00) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 8u) + QAccessible2Interface (0xb4e2921c) 0 nearly-empty + primary-for QAccessibleValueInterface (0xb4e0ea00) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +8 QAccessibleTableInterface::~QAccessibleTableInterface +12 QAccessibleTableInterface::~QAccessibleTableInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleTableInterface (0xb4e0eb80) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 8u) + QAccessible2Interface (0xb4e29654) 0 nearly-empty + primary-for QAccessibleTableInterface (0xb4e0eb80) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleBridge) +8 QAccessibleBridge::~QAccessibleBridge +12 QAccessibleBridge::~QAccessibleBridge +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleBridge + size=4 align=4 + base size=4 base align=4 +QAccessibleBridge (0xb4e29870) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 8u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +8 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +12 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleBridgeFactoryInterface (0xb4e0ed40) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 8u) + QFactoryInterface (0xb4e29bf4) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0xb4e0ed40) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +8 QAccessibleBridgePlugin::metaObject +12 QAccessibleBridgePlugin::qt_metacast +16 QAccessibleBridgePlugin::qt_metacall +20 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +24 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +72 QAccessibleBridgePlugin::_ZThn8_N23QAccessibleBridgePluginD1Ev +76 QAccessibleBridgePlugin::_ZThn8_N23QAccessibleBridgePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=12 align=4 + base size=12 base align=4 +QAccessibleBridgePlugin (0xb4c3f190) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 8u) + QObject (0xb4e29f3c) 0 + primary-for QAccessibleBridgePlugin (0xb4c3f190) + QAccessibleBridgeFactoryInterface (0xb4e0eec0) 8 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 72u) + QFactoryInterface (0xb4e29f78) 8 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0xb4e0eec0) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleObject) +8 QAccessibleObject::~QAccessibleObject +12 QAccessibleObject::~QAccessibleObject +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 QAccessibleObject::setText +52 QAccessibleObject::rect +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAccessibleObject::userActionCount +68 QAccessibleObject::actionText +72 QAccessibleObject::doAction + +Class QAccessibleObject + size=8 align=4 + base size=8 base align=4 +QAccessibleObject (0xb4c46100) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 8u) + QAccessibleInterface (0xb4c46140) 0 nearly-empty + primary-for QAccessibleObject (0xb4c46100) + QAccessible (0xb4c45654) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +8 QAccessibleObjectEx::~QAccessibleObjectEx +12 QAccessibleObjectEx::~QAccessibleObjectEx +16 QAccessibleObjectEx::isValid +20 QAccessibleObjectEx::object +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 QAccessibleObjectEx::setText +52 QAccessibleObjectEx::rect +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAccessibleObjectEx::userActionCount +68 QAccessibleObjectEx::actionText +72 QAccessibleObjectEx::doAction +76 __cxa_pure_virtual +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=8 align=4 + base size=8 base align=4 +QAccessibleObjectEx (0xb4c46180) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 8u) + QAccessibleInterfaceEx (0xb4c461c0) 0 nearly-empty + primary-for QAccessibleObjectEx (0xb4c46180) + QAccessibleInterface (0xb4c46200) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb4c461c0) + QAccessible (0xb4c45a8c) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QAccessibleApplication) +8 QAccessibleApplication::~QAccessibleApplication +12 QAccessibleApplication::~QAccessibleApplication +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 QAccessibleApplication::childCount +28 QAccessibleApplication::indexOfChild +32 QAccessibleApplication::relationTo +36 QAccessibleApplication::childAt +40 QAccessibleApplication::navigate +44 QAccessibleApplication::text +48 QAccessibleObject::setText +52 QAccessibleObject::rect +56 QAccessibleApplication::role +60 QAccessibleApplication::state +64 QAccessibleApplication::userActionCount +68 QAccessibleApplication::actionText +72 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=8 align=4 + base size=8 base align=4 +QAccessibleApplication (0xb4c46280) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 8u) + QAccessibleObject (0xb4c462c0) 0 + primary-for QAccessibleApplication (0xb4c46280) + QAccessibleInterface (0xb4c46300) 0 nearly-empty + primary-for QAccessibleObject (0xb4c462c0) + QAccessible (0xb4c45ec4) 0 empty + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +8 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +12 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleFactoryInterface (0xb4c56cd0) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 8u) + QAccessible (0xb4c55348) 0 empty + QFactoryInterface (0xb4c55384) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0xb4c56cd0) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessiblePlugin) +8 QAccessiblePlugin::metaObject +12 QAccessiblePlugin::qt_metacast +16 QAccessiblePlugin::qt_metacall +20 QAccessiblePlugin::~QAccessiblePlugin +24 QAccessiblePlugin::~QAccessiblePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI17QAccessiblePlugin) +72 QAccessiblePlugin::_ZThn8_N17QAccessiblePluginD1Ev +76 QAccessiblePlugin::_ZThn8_N17QAccessiblePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QAccessiblePlugin + size=12 align=4 + base size=12 base align=4 +QAccessiblePlugin (0xb4c592d0) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 8u) + QObject (0xb4c556cc) 0 + primary-for QAccessiblePlugin (0xb4c592d0) + QAccessibleFactoryInterface (0xb4c59320) 8 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 72u) + QAccessible (0xb4c55708) 8 empty + QFactoryInterface (0xb4c55744) 8 nearly-empty + primary-for QAccessibleFactoryInterface (0xb4c59320) + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleWidget) +8 QAccessibleWidget::~QAccessibleWidget +12 QAccessibleWidget::~QAccessibleWidget +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 QAccessibleWidget::childCount +28 QAccessibleWidget::indexOfChild +32 QAccessibleWidget::relationTo +36 QAccessibleWidget::childAt +40 QAccessibleWidget::navigate +44 QAccessibleWidget::text +48 QAccessibleObject::setText +52 QAccessibleWidget::rect +56 QAccessibleWidget::role +60 QAccessibleWidget::state +64 QAccessibleWidget::userActionCount +68 QAccessibleWidget::actionText +72 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=12 align=4 + base size=12 base align=4 +QAccessibleWidget (0xb4c46700) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 8u) + QAccessibleObject (0xb4c46740) 0 + primary-for QAccessibleWidget (0xb4c46700) + QAccessibleInterface (0xb4c46780) 0 nearly-empty + primary-for QAccessibleObject (0xb4c46740) + QAccessible (0xb4c55fb4) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +8 QAccessibleWidgetEx::~QAccessibleWidgetEx +12 QAccessibleWidgetEx::~QAccessibleWidgetEx +16 QAccessibleObjectEx::isValid +20 QAccessibleObjectEx::object +24 QAccessibleWidgetEx::childCount +28 QAccessibleWidgetEx::indexOfChild +32 QAccessibleWidgetEx::relationTo +36 QAccessibleWidgetEx::childAt +40 QAccessibleWidgetEx::navigate +44 QAccessibleWidgetEx::text +48 QAccessibleObjectEx::setText +52 QAccessibleWidgetEx::rect +56 QAccessibleWidgetEx::role +60 QAccessibleWidgetEx::state +64 QAccessibleObjectEx::userActionCount +68 QAccessibleWidgetEx::actionText +72 QAccessibleWidgetEx::doAction +76 QAccessibleWidgetEx::invokeMethodEx +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=12 align=4 + base size=12 base align=4 +QAccessibleWidgetEx (0xb4c467c0) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 8u) + QAccessibleObjectEx (0xb4c46800) 0 + primary-for QAccessibleWidgetEx (0xb4c467c0) + QAccessibleInterfaceEx (0xb4c46840) 0 nearly-empty + primary-for QAccessibleObjectEx (0xb4c46800) + QAccessibleInterface (0xb4c46880) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb4c46840) + QAccessible (0xb4c687bc) 0 empty + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPaintDevice) +8 QPaintDevice::~QPaintDevice +12 QPaintDevice::~QPaintDevice +16 QPaintDevice::devType +20 __cxa_pure_virtual +24 QPaintDevice::metric + +Class QPaintDevice + size=8 align=4 + base size=6 base align=4 +QPaintDevice (0xb4c7603c) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 8u) + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4c835a0) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4c83528) 0 + +Class QPolygon + size=4 align=4 + base size=4 base align=4 +QPolygon (0xb4c46d80) 0 + QVector (0xb4c835dc) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4ca7690) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4ca7618) 0 + +Class QPolygonF + size=4 align=4 + base size=4 base align=4 +QPolygonF (0xb4ca4380) 0 + QVector (0xb4ca76cc) 0 + +Class QMatrix + size=48 align=4 + base size=48 base align=4 +QMatrix (0xb4cc55dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4cd6c30) 0 empty + +Class QPainterPath::Element + size=20 align=4 + base size=20 base align=4 +QPainterPath::Element (0xb4ce5438) 0 + +Class QPainterPath + size=4 align=4 + base size=4 base align=4 +QPainterPath (0xb4ce53fc) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4d0a4b0) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4d0a438) 0 + +Class QPainterPathPrivate + size=8 align=4 + base size=8 base align=4 +QPainterPathPrivate (0xb4d0a0b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4d0a4ec) 0 empty + +Class QPainterPathStroker + size=4 align=4 + base size=4 base align=4 +QPainterPathStroker (0xb4d0a690) 0 + +Class QTransform + size=80 align=4 + base size=80 base align=4 +QTransform (0xb4b34d5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4b47e4c) 0 empty + +Class QImageTextKeyLang + size=8 align=4 + base size=8 base align=4 +QImageTextKeyLang (0xb4b73a14) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QImage) +8 QImage::~QImage +12 QImage::~QImage +16 QImage::devType +20 QImage::paintEngine +24 QImage::metric + +Class QImage + size=12 align=4 + base size=12 base align=4 +QImage (0xb4b66900) 0 + vptr=((& QImage::_ZTV6QImage) + 8u) + QPaintDevice (0xb4b8c654) 0 + primary-for QImage (0xb4b66900) + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4be1b40) 0 empty + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QPixmap) +8 QPixmap::~QPixmap +12 QPixmap::~QPixmap +16 QPixmap::devType +20 QPixmap::paintEngine +24 QPixmap::metric + +Class QPixmap + size=12 align=4 + base size=12 base align=4 +QPixmap (0xb4bea200) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 8u) + QPaintDevice (0xb4be1e4c) 0 + primary-for QPixmap (0xb4bea200) + +Class QBrush + size=4 align=4 + base size=4 base align=4 +QBrush (0xb4c13564) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4c2203c) 0 empty + +Class QBrushData + size=124 align=4 + base size=121 base align=4 +QBrushData (0xb4c222d0) 0 + +Class QVector >:: + size=4 align=4 + base size=4 base align=4 +QVector >:: (0xb4c22f78) 0 + +Class QVector > + size=4 align=4 + base size=4 base align=4 +QVector > (0xb4c22f00) 0 + +Class QGradient:::: + size=32 align=4 + base size=32 base align=4 +QGradient:::: (0xb4a4903c) 0 + +Class QGradient:::: + size=40 align=4 + base size=40 base align=4 +QGradient:::: (0xb4a490b4) 0 + +Class QGradient:::: + size=24 align=4 + base size=24 base align=4 +QGradient:::: (0xb4a4912c) 0 + +Class QGradient:: + size=40 align=4 + base size=40 base align=4 +QGradient:: (0xb4c22ec4) 0 + +Class QGradient + size=56 align=4 + base size=56 base align=4 +QGradient (0xb4c228ac) 0 + +Class QLinearGradient + size=56 align=4 + base size=56 base align=4 +QLinearGradient (0xb4beaf80) 0 + QGradient (0xb4a495dc) 0 + +Class QRadialGradient + size=56 align=4 + base size=56 base align=4 +QRadialGradient (0xb4a4f080) 0 + QGradient (0xb4a49834) 0 + +Class QConicalGradient + size=56 align=4 + base size=56 base align=4 +QConicalGradient (0xb4a4f180) 0 + QGradient (0xb4a49b04) 0 + +Class QPalette + size=8 align=4 + base size=8 base align=4 +QPalette (0xb4a49ca8) 0 + +Class QColorGroup + size=8 align=4 + base size=8 base align=4 +QColorGroup (0xb4a4fbc0) 0 + QPalette (0xb4a7c528) 0 + +Class QFont + size=8 align=4 + base size=8 base align=4 +QFont (0xb4a9a834) 0 + +Class QFontMetrics + size=4 align=4 + base size=4 base align=4 +QFontMetrics (0xb4ab8690) 0 + +Class QFontMetricsF + size=4 align=4 + base size=4 base align=4 +QFontMetricsF (0xb4ac60f0) 0 + +Class QFontInfo + size=4 align=4 + base size=4 base align=4 +QFontInfo (0xb4ac6870) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0xb4ac6e10) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4b1ce88) 0 + +Class QCursor + size=4 align=4 + base size=4 base align=4 +QCursor (0xb4936258) 0 + +Class QWidgetData + size=64 align=4 + base size=64 base align=4 +QWidgetData (0xb4936690) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QWidget) +8 QWidget::metaObject +12 QWidget::qt_metacast +16 QWidget::qt_metacall +20 QWidget::~QWidget +24 QWidget::~QWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI7QWidget) +232 QWidget::_ZThn8_N7QWidgetD1Ev +236 QWidget::_ZThn8_N7QWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=20 align=4 + base size=20 base align=4 +QWidget (0xb493cb90) 0 + vptr=((& QWidget::_ZTV7QWidget) + 8u) + QObject (0xb49366cc) 0 + primary-for QWidget (0xb493cb90) + QPaintDevice (0xb4936708) 8 + vptr=((& QWidget::_ZTV7QWidget) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4982654) 0 + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QDialog) +8 QDialog::metaObject +12 QDialog::qt_metacast +16 QDialog::qt_metacall +20 QDialog::~QDialog +24 QDialog::~QDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI7QDialog) +244 QDialog::_ZThn8_N7QDialogD1Ev +248 QDialog::_ZThn8_N7QDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=20 align=4 + base size=20 base align=4 +QDialog (0xb49d4e40) 0 + vptr=((& QDialog::_ZTV7QDialog) + 8u) + QWidget (0xb49f0e60) 0 + primary-for QDialog (0xb49d4e40) + QObject (0xb49f8ec4) 0 + primary-for QWidget (0xb49f0e60) + QPaintDevice (0xb49f8f00) 8 + vptr=((& QDialog::_ZTV7QDialog) + 244u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +8 QAbstractPageSetupDialog::metaObject +12 QAbstractPageSetupDialog::qt_metacast +16 QAbstractPageSetupDialog::qt_metacall +20 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +24 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 __cxa_pure_virtual +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +248 QAbstractPageSetupDialog::_ZThn8_N24QAbstractPageSetupDialogD1Ev +252 QAbstractPageSetupDialog::_ZThn8_N24QAbstractPageSetupDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=20 align=4 + base size=20 base align=4 +QAbstractPageSetupDialog (0xb4a15100) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 8u) + QDialog (0xb4a15140) 0 + primary-for QAbstractPageSetupDialog (0xb4a15100) + QWidget (0xb4a0f8c0) 0 + primary-for QDialog (0xb4a15140) + QObject (0xb4a08dd4) 0 + primary-for QWidget (0xb4a0f8c0) + QPaintDevice (0xb4a08e10) 8 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 248u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +8 QAbstractPrintDialog::metaObject +12 QAbstractPrintDialog::qt_metacast +16 QAbstractPrintDialog::qt_metacall +20 QAbstractPrintDialog::~QAbstractPrintDialog +24 QAbstractPrintDialog::~QAbstractPrintDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 __cxa_pure_virtual +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +248 QAbstractPrintDialog::_ZThn8_N20QAbstractPrintDialogD1Ev +252 QAbstractPrintDialog::_ZThn8_N20QAbstractPrintDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=20 align=4 + base size=20 base align=4 +QAbstractPrintDialog (0xb4a15400) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 8u) + QDialog (0xb4a15440) 0 + primary-for QAbstractPrintDialog (0xb4a15400) + QWidget (0xb4a1ce10) 0 + primary-for QDialog (0xb4a15440) + QObject (0xb4a20780) 0 + primary-for QWidget (0xb4a1ce10) + QPaintDevice (0xb4a207bc) 8 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 248u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4a2d99c) 0 + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QColorDialog) +8 QColorDialog::metaObject +12 QColorDialog::qt_metacast +16 QColorDialog::qt_metacall +20 QColorDialog::~QColorDialog +24 QColorDialog::~QColorDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QColorDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QColorDialog) +244 QColorDialog::_ZThn8_N12QColorDialogD1Ev +248 QColorDialog::_ZThn8_N12QColorDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=20 align=4 + base size=20 base align=4 +QColorDialog (0xb4a157c0) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 8u) + QDialog (0xb4a15800) 0 + primary-for QColorDialog (0xb4a157c0) + QWidget (0xb483a500) 0 + primary-for QDialog (0xb4a15800) + QObject (0xb4841528) 0 + primary-for QWidget (0xb483a500) + QPaintDevice (0xb4841564) 8 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 244u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QErrorMessage) +8 QErrorMessage::metaObject +12 QErrorMessage::qt_metacast +16 QErrorMessage::qt_metacall +20 QErrorMessage::~QErrorMessage +24 QErrorMessage::~QErrorMessage +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QErrorMessage::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QErrorMessage::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI13QErrorMessage) +244 QErrorMessage::_ZThn8_N13QErrorMessageD1Ev +248 QErrorMessage::_ZThn8_N13QErrorMessageD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=20 align=4 + base size=20 base align=4 +QErrorMessage (0xb4a15b40) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 8u) + QDialog (0xb4a15b80) 0 + primary-for QErrorMessage (0xb4a15b40) + QWidget (0xb4856280) 0 + primary-for QDialog (0xb4a15b80) + QObject (0xb4855348) 0 + primary-for QWidget (0xb4856280) + QPaintDevice (0xb4855384) 8 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 244u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFileDialog) +8 QFileDialog::metaObject +12 QFileDialog::qt_metacast +16 QFileDialog::qt_metacall +20 QFileDialog::~QFileDialog +24 QFileDialog::~QFileDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFileDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QFileDialog::done +228 QFileDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QFileDialog) +244 QFileDialog::_ZThn8_N11QFileDialogD1Ev +248 QFileDialog::_ZThn8_N11QFileDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=20 align=4 + base size=20 base align=4 +QFileDialog (0xb4a15e80) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 8u) + QDialog (0xb4a15ec0) 0 + primary-for QFileDialog (0xb4a15e80) + QWidget (0xb485e960) 0 + primary-for QDialog (0xb4a15ec0) + QObject (0xb48671a4) 0 + primary-for QWidget (0xb485e960) + QPaintDevice (0xb48671e0) 8 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 244u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb487830c) 0 + +Class QIcon + size=4 align=4 + base size=4 base align=4 +QIcon (0xb48986cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb48b1a8c) 0 empty + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFileSystemModel) +8 QFileSystemModel::metaObject +12 QFileSystemModel::qt_metacast +16 QFileSystemModel::qt_metacall +20 QFileSystemModel::~QFileSystemModel +24 QFileSystemModel::~QFileSystemModel +28 QObject::event +32 QObject::eventFilter +36 QFileSystemModel::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFileSystemModel::index +60 QFileSystemModel::parent +64 QFileSystemModel::rowCount +68 QFileSystemModel::columnCount +72 QFileSystemModel::hasChildren +76 QFileSystemModel::data +80 QFileSystemModel::setData +84 QFileSystemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QFileSystemModel::mimeTypes +104 QFileSystemModel::mimeData +108 QFileSystemModel::dropMimeData +112 QFileSystemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QFileSystemModel::fetchMore +136 QFileSystemModel::canFetchMore +140 QFileSystemModel::flags +144 QFileSystemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QFileSystemModel + size=8 align=4 + base size=8 base align=4 +QFileSystemModel (0xb4888b00) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 8u) + QAbstractItemModel (0xb4888b40) 0 + primary-for QFileSystemModel (0xb4888b00) + QObject (0xb48b1b7c) 0 + primary-for QAbstractItemModel (0xb4888b40) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFontDialog) +8 QFontDialog::metaObject +12 QFontDialog::qt_metacast +16 QFontDialog::qt_metacall +20 QFontDialog::~QFontDialog +24 QFontDialog::~QFontDialog +28 QWidget::event +32 QFontDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFontDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QFontDialog) +244 QFontDialog::_ZThn8_N11QFontDialogD1Ev +248 QFontDialog::_ZThn8_N11QFontDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=20 align=4 + base size=20 base align=4 +QFontDialog (0xb4888fc0) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 8u) + QDialog (0xb48d9000) 0 + primary-for QFontDialog (0xb4888fc0) + QWidget (0xb48ccf00) 0 + primary-for QDialog (0xb48d9000) + QObject (0xb48da000) 0 + primary-for QWidget (0xb48ccf00) + QPaintDevice (0xb48da03c) 8 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 244u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QFrame) +8 QFrame::metaObject +12 QFrame::qt_metacast +16 QFrame::qt_metacall +20 QFrame::~QFrame +24 QFrame::~QFrame +28 QFrame::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI6QFrame) +232 QFrame::_ZThn8_N6QFrameD1Ev +236 QFrame::_ZThn8_N6QFrameD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=20 align=4 + base size=20 base align=4 +QFrame (0xb48d9340) 0 + vptr=((& QFrame::_ZTV6QFrame) + 8u) + QWidget (0xb48e0e10) 0 + primary-for QFrame (0xb48d9340) + QObject (0xb48daf00) 0 + primary-for QWidget (0xb48e0e10) + QPaintDevice (0xb48daf3c) 8 + vptr=((& QFrame::_ZTV6QFrame) + 232u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QLineEdit) +8 QLineEdit::metaObject +12 QLineEdit::qt_metacast +16 QLineEdit::qt_metacall +20 QLineEdit::~QLineEdit +24 QLineEdit::~QLineEdit +28 QLineEdit::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLineEdit::sizeHint +68 QLineEdit::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QLineEdit::mousePressEvent +84 QLineEdit::mouseReleaseEvent +88 QLineEdit::mouseDoubleClickEvent +92 QLineEdit::mouseMoveEvent +96 QWidget::wheelEvent +100 QLineEdit::keyPressEvent +104 QWidget::keyReleaseEvent +108 QLineEdit::focusInEvent +112 QLineEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLineEdit::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QLineEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QLineEdit::dragEnterEvent +156 QLineEdit::dragMoveEvent +160 QLineEdit::dragLeaveEvent +164 QLineEdit::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QLineEdit::changeEvent +184 QWidget::metric +188 QLineEdit::inputMethodEvent +192 QLineEdit::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QLineEdit) +232 QLineEdit::_ZThn8_N9QLineEditD1Ev +236 QLineEdit::_ZThn8_N9QLineEditD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=20 align=4 + base size=20 base align=4 +QLineEdit (0xb48d9600) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 8u) + QWidget (0xb48f4960) 0 + primary-for QLineEdit (0xb48d9600) + QObject (0xb48fd1e0) 0 + primary-for QWidget (0xb48f4960) + QPaintDevice (0xb48fd21c) 8 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 232u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QInputDialog) +8 QInputDialog::metaObject +12 QInputDialog::qt_metacast +16 QInputDialog::qt_metacall +20 QInputDialog::~QInputDialog +24 QInputDialog::~QInputDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QInputDialog) +244 QInputDialog::_ZThn8_N12QInputDialogD1Ev +248 QInputDialog::_ZThn8_N12QInputDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=20 align=4 + base size=20 base align=4 +QInputDialog (0xb48d9e80) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 8u) + QDialog (0xb48d9ec0) 0 + primary-for QInputDialog (0xb48d9e80) + QWidget (0xb4914f50) 0 + primary-for QDialog (0xb48d9ec0) + QObject (0xb4924690) 0 + primary-for QWidget (0xb4914f50) + QPaintDevice (0xb49246cc) 8 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 244u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMessageBox) +8 QMessageBox::metaObject +12 QMessageBox::qt_metacast +16 QMessageBox::qt_metacall +20 QMessageBox::~QMessageBox +24 QMessageBox::~QMessageBox +28 QMessageBox::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QMessageBox::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QMessageBox::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QMessageBox::resizeEvent +136 QMessageBox::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QMessageBox::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QMessageBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QMessageBox) +244 QMessageBox::_ZThn8_N11QMessageBoxD1Ev +248 QMessageBox::_ZThn8_N11QMessageBoxD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=20 align=4 + base size=20 base align=4 +QMessageBox (0xb472d280) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 8u) + QDialog (0xb472d2c0) 0 + primary-for QMessageBox (0xb472d280) + QWidget (0xb47306e0) 0 + primary-for QDialog (0xb472d2c0) + QObject (0xb472b924) 0 + primary-for QWidget (0xb47306e0) + QPaintDevice (0xb472b960) 8 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 244u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb47467bc) 0 + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QPageSetupDialog) +8 QPageSetupDialog::metaObject +12 QPageSetupDialog::qt_metacast +16 QPageSetupDialog::qt_metacall +20 QPageSetupDialog::~QPageSetupDialog +24 QPageSetupDialog::~QPageSetupDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 QPageSetupDialog::exec +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI16QPageSetupDialog) +248 QPageSetupDialog::_ZThn8_N16QPageSetupDialogD1Ev +252 QPageSetupDialog::_ZThn8_N16QPageSetupDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=20 align=4 + base size=20 base align=4 +QPageSetupDialog (0xb472d7c0) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 8u) + QAbstractPageSetupDialog (0xb472d800) 0 + primary-for QPageSetupDialog (0xb472d7c0) + QDialog (0xb472d840) 0 + primary-for QAbstractPageSetupDialog (0xb472d800) + QWidget (0xb47674b0) 0 + primary-for QDialog (0xb472d840) + QObject (0xb476da8c) 0 + primary-for QWidget (0xb47674b0) + QPaintDevice (0xb476dac8) 8 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 248u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QUnixPrintWidget) +8 QUnixPrintWidget::metaObject +12 QUnixPrintWidget::qt_metacast +16 QUnixPrintWidget::qt_metacall +20 QUnixPrintWidget::~QUnixPrintWidget +24 QUnixPrintWidget::~QUnixPrintWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI16QUnixPrintWidget) +232 QUnixPrintWidget::_ZThn8_N16QUnixPrintWidgetD1Ev +236 QUnixPrintWidget::_ZThn8_N16QUnixPrintWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=24 align=4 + base size=24 base align=4 +QUnixPrintWidget (0xb472db00) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 8u) + QWidget (0xb477d9b0) 0 + primary-for QUnixPrintWidget (0xb472db00) + QObject (0xb47826cc) 0 + primary-for QWidget (0xb477d9b0) + QPaintDevice (0xb4782708) 8 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 232u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPrintDialog) +8 QPrintDialog::metaObject +12 QPrintDialog::qt_metacast +16 QPrintDialog::qt_metacall +20 QPrintDialog::~QPrintDialog +24 QPrintDialog::~QPrintDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QPrintDialog::accept +232 QDialog::reject +236 QPrintDialog::exec +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI12QPrintDialog) +248 QPrintDialog::_ZThn8_N12QPrintDialogD1Ev +252 QPrintDialog::_ZThn8_N12QPrintDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=20 align=4 + base size=20 base align=4 +QPrintDialog (0xb472dd40) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 8u) + QAbstractPrintDialog (0xb472dd80) 0 + primary-for QPrintDialog (0xb472dd40) + QDialog (0xb472ddc0) 0 + primary-for QAbstractPrintDialog (0xb472dd80) + QWidget (0xb478b910) 0 + primary-for QDialog (0xb472ddc0) + QObject (0xb4782ec4) 0 + primary-for QWidget (0xb478b910) + QPaintDevice (0xb4782f00) 8 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 248u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +8 QPrintPreviewDialog::metaObject +12 QPrintPreviewDialog::qt_metacast +16 QPrintPreviewDialog::qt_metacall +20 QPrintPreviewDialog::~QPrintPreviewDialog +24 QPrintPreviewDialog::~QPrintPreviewDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QPrintPreviewDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +244 QPrintPreviewDialog::_ZThn8_N19QPrintPreviewDialogD1Ev +248 QPrintPreviewDialog::_ZThn8_N19QPrintPreviewDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=24 align=4 + base size=24 base align=4 +QPrintPreviewDialog (0xb479d080) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 8u) + QDialog (0xb479d0c0) 0 + primary-for QPrintPreviewDialog (0xb479d080) + QWidget (0xb4794cd0) 0 + primary-for QDialog (0xb479d0c0) + QObject (0xb4798870) 0 + primary-for QWidget (0xb4794cd0) + QPaintDevice (0xb47988ac) 8 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 244u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QProgressDialog) +8 QProgressDialog::metaObject +12 QProgressDialog::qt_metacast +16 QProgressDialog::qt_metacall +20 QProgressDialog::~QProgressDialog +24 QProgressDialog::~QProgressDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QProgressDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QProgressDialog::resizeEvent +136 QProgressDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QProgressDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QProgressDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI15QProgressDialog) +244 QProgressDialog::_ZThn8_N15QProgressDialogD1Ev +248 QProgressDialog::_ZThn8_N15QProgressDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=20 align=4 + base size=20 base align=4 +QProgressDialog (0xb479d380) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 8u) + QDialog (0xb479d3c0) 0 + primary-for QProgressDialog (0xb479d380) + QWidget (0xb47ac280) 0 + primary-for QDialog (0xb479d3c0) + QObject (0xb47ad294) 0 + primary-for QWidget (0xb47ac280) + QPaintDevice (0xb47ad2d0) 8 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 244u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QWizard) +8 QWizard::metaObject +12 QWizard::qt_metacast +16 QWizard::qt_metacall +20 QWizard::~QWizard +24 QWizard::~QWizard +28 QWizard::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWizard::setVisible +64 QWizard::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWizard::paintEvent +128 QWidget::moveEvent +132 QWizard::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QWizard::done +228 QDialog::accept +232 QDialog::reject +236 QWizard::validateCurrentPage +240 QWizard::nextId +244 QWizard::initializePage +248 QWizard::cleanupPage +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI7QWizard) +260 QWizard::_ZThn8_N7QWizardD1Ev +264 QWizard::_ZThn8_N7QWizardD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=20 align=4 + base size=20 base align=4 +QWizard (0xb479d680) 0 + vptr=((& QWizard::_ZTV7QWizard) + 8u) + QDialog (0xb479d6c0) 0 + primary-for QWizard (0xb479d680) + QWidget (0xb47b7b40) 0 + primary-for QDialog (0xb479d6c0) + QObject (0xb47adf78) 0 + primary-for QWidget (0xb47b7b40) + QPaintDevice (0xb47adfb4) 8 + vptr=((& QWizard::_ZTV7QWizard) + 260u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb47d62d0) 0 + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWizardPage) +8 QWizardPage::metaObject +12 QWizardPage::qt_metacast +16 QWizardPage::qt_metacall +20 QWizardPage::~QWizardPage +24 QWizardPage::~QWizardPage +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QWizardPage::initializePage +228 QWizardPage::cleanupPage +232 QWizardPage::validatePage +236 QWizardPage::isComplete +240 QWizardPage::nextId +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI11QWizardPage) +252 QWizardPage::_ZThn8_N11QWizardPageD1Ev +256 QWizardPage::_ZThn8_N11QWizardPageD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=20 align=4 + base size=20 base align=4 +QWizardPage (0xb479da40) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 8u) + QWidget (0xb47de9b0) 0 + primary-for QWizardPage (0xb479da40) + QObject (0xb47d6e88) 0 + primary-for QWidget (0xb47de9b0) + QPaintDevice (0xb47d6ec4) 8 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 252u) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QGraphicsItem) +8 QGraphicsItem::~QGraphicsItem +12 QGraphicsItem::~QGraphicsItem +16 QGraphicsItem::advance +20 __cxa_pure_virtual +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsItem::isObscuredBy +44 QGraphicsItem::opaqueArea +48 __cxa_pure_virtual +52 QGraphicsItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QGraphicsItem + size=8 align=4 + base size=8 base align=4 +QGraphicsItem (0xb47f1bf4) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb462030c) 0 + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +8 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +12 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +16 QGraphicsItem::advance +20 __cxa_pure_virtual +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QAbstractGraphicsShapeItem::isObscuredBy +44 QAbstractGraphicsShapeItem::opaqueArea +48 __cxa_pure_virtual +52 QGraphicsItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=8 align=4 + base size=8 base align=4 +QAbstractGraphicsShapeItem (0xb4636400) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 8u) + QGraphicsItem (0xb4644474) 0 + primary-for QAbstractGraphicsShapeItem (0xb4636400) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsPathItem) +8 QGraphicsPathItem::~QGraphicsPathItem +12 QGraphicsPathItem::~QGraphicsPathItem +16 QGraphicsItem::advance +20 QGraphicsPathItem::boundingRect +24 QGraphicsPathItem::shape +28 QGraphicsPathItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPathItem::isObscuredBy +44 QGraphicsPathItem::opaqueArea +48 QGraphicsPathItem::paint +52 QGraphicsPathItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPathItem::supportsExtension +148 QGraphicsPathItem::setExtension +152 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPathItem (0xb4636500) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 8u) + QAbstractGraphicsShapeItem (0xb4636540) 0 + primary-for QGraphicsPathItem (0xb4636500) + QGraphicsItem (0xb4644b7c) 0 + primary-for QAbstractGraphicsShapeItem (0xb4636540) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsRectItem) +8 QGraphicsRectItem::~QGraphicsRectItem +12 QGraphicsRectItem::~QGraphicsRectItem +16 QGraphicsItem::advance +20 QGraphicsRectItem::boundingRect +24 QGraphicsRectItem::shape +28 QGraphicsRectItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsRectItem::isObscuredBy +44 QGraphicsRectItem::opaqueArea +48 QGraphicsRectItem::paint +52 QGraphicsRectItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsRectItem::supportsExtension +148 QGraphicsRectItem::setExtension +152 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=8 align=4 + base size=8 base align=4 +QGraphicsRectItem (0xb4636640) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 8u) + QAbstractGraphicsShapeItem (0xb4636680) 0 + primary-for QGraphicsRectItem (0xb4636640) + QGraphicsItem (0xb465130c) 0 + primary-for QAbstractGraphicsShapeItem (0xb4636680) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +8 QGraphicsEllipseItem::~QGraphicsEllipseItem +12 QGraphicsEllipseItem::~QGraphicsEllipseItem +16 QGraphicsItem::advance +20 QGraphicsEllipseItem::boundingRect +24 QGraphicsEllipseItem::shape +28 QGraphicsEllipseItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsEllipseItem::isObscuredBy +44 QGraphicsEllipseItem::opaqueArea +48 QGraphicsEllipseItem::paint +52 QGraphicsEllipseItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsEllipseItem::supportsExtension +148 QGraphicsEllipseItem::setExtension +152 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=8 align=4 + base size=8 base align=4 +QGraphicsEllipseItem (0xb46367c0) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 8u) + QAbstractGraphicsShapeItem (0xb4636800) 0 + primary-for QGraphicsEllipseItem (0xb46367c0) + QGraphicsItem (0xb4651ca8) 0 + primary-for QAbstractGraphicsShapeItem (0xb4636800) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +8 QGraphicsPolygonItem::~QGraphicsPolygonItem +12 QGraphicsPolygonItem::~QGraphicsPolygonItem +16 QGraphicsItem::advance +20 QGraphicsPolygonItem::boundingRect +24 QGraphicsPolygonItem::shape +28 QGraphicsPolygonItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPolygonItem::isObscuredBy +44 QGraphicsPolygonItem::opaqueArea +48 QGraphicsPolygonItem::paint +52 QGraphicsPolygonItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPolygonItem::supportsExtension +148 QGraphicsPolygonItem::setExtension +152 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPolygonItem (0xb4636940) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 8u) + QAbstractGraphicsShapeItem (0xb4636980) 0 + primary-for QGraphicsPolygonItem (0xb4636940) + QGraphicsItem (0xb46655dc) 0 + primary-for QAbstractGraphicsShapeItem (0xb4636980) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsLineItem) +8 QGraphicsLineItem::~QGraphicsLineItem +12 QGraphicsLineItem::~QGraphicsLineItem +16 QGraphicsItem::advance +20 QGraphicsLineItem::boundingRect +24 QGraphicsLineItem::shape +28 QGraphicsLineItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsLineItem::isObscuredBy +44 QGraphicsLineItem::opaqueArea +48 QGraphicsLineItem::paint +52 QGraphicsLineItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsLineItem::supportsExtension +148 QGraphicsLineItem::setExtension +152 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=8 align=4 + base size=8 base align=4 +QGraphicsLineItem (0xb4636a80) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 8u) + QGraphicsItem (0xb4665d98) 0 + primary-for QGraphicsLineItem (0xb4636a80) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +8 QGraphicsPixmapItem::~QGraphicsPixmapItem +12 QGraphicsPixmapItem::~QGraphicsPixmapItem +16 QGraphicsItem::advance +20 QGraphicsPixmapItem::boundingRect +24 QGraphicsPixmapItem::shape +28 QGraphicsPixmapItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPixmapItem::isObscuredBy +44 QGraphicsPixmapItem::opaqueArea +48 QGraphicsPixmapItem::paint +52 QGraphicsPixmapItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPixmapItem::supportsExtension +148 QGraphicsPixmapItem::setExtension +152 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPixmapItem (0xb4636bc0) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 8u) + QGraphicsItem (0xb46786cc) 0 + primary-for QGraphicsPixmapItem (0xb4636bc0) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsTextItem) +8 QGraphicsTextItem::metaObject +12 QGraphicsTextItem::qt_metacast +16 QGraphicsTextItem::qt_metacall +20 QGraphicsTextItem::~QGraphicsTextItem +24 QGraphicsTextItem::~QGraphicsTextItem +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsTextItem::boundingRect +60 QGraphicsTextItem::shape +64 QGraphicsTextItem::contains +68 QGraphicsTextItem::paint +72 QGraphicsTextItem::isObscuredBy +76 QGraphicsTextItem::opaqueArea +80 QGraphicsTextItem::type +84 QGraphicsTextItem::sceneEvent +88 QGraphicsTextItem::mousePressEvent +92 QGraphicsTextItem::mouseMoveEvent +96 QGraphicsTextItem::mouseReleaseEvent +100 QGraphicsTextItem::mouseDoubleClickEvent +104 QGraphicsTextItem::contextMenuEvent +108 QGraphicsTextItem::keyPressEvent +112 QGraphicsTextItem::keyReleaseEvent +116 QGraphicsTextItem::focusInEvent +120 QGraphicsTextItem::focusOutEvent +124 QGraphicsTextItem::dragEnterEvent +128 QGraphicsTextItem::dragLeaveEvent +132 QGraphicsTextItem::dragMoveEvent +136 QGraphicsTextItem::dropEvent +140 QGraphicsTextItem::inputMethodEvent +144 QGraphicsTextItem::hoverEnterEvent +148 QGraphicsTextItem::hoverMoveEvent +152 QGraphicsTextItem::hoverLeaveEvent +156 QGraphicsTextItem::inputMethodQuery +160 QGraphicsTextItem::supportsExtension +164 QGraphicsTextItem::setExtension +168 QGraphicsTextItem::extension +172 (int (*)(...))-0x000000008 +176 (int (*)(...))(& _ZTI17QGraphicsTextItem) +180 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItemD1Ev +184 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItemD0Ev +188 QGraphicsItem::advance +192 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem12boundingRectEv +196 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem5shapeEv +200 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem8containsERK7QPointF +204 QGraphicsItem::collidesWithItem +208 QGraphicsItem::collidesWithPath +212 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +216 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem10opaqueAreaEv +220 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +224 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem4typeEv +228 QGraphicsItem::sceneEventFilter +232 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem10sceneEventEP6QEvent +236 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +240 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +244 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +248 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +252 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +256 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +260 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +264 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +268 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +272 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +276 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +280 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +284 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +288 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +292 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +296 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +300 QGraphicsItem::wheelEvent +304 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +308 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +312 QGraphicsItem::itemChange +316 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +320 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +324 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=20 align=4 + base size=20 base align=4 +QGraphicsTextItem (0xb46890f0) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 8u) + QObject (0xb4678d5c) 0 + primary-for QGraphicsTextItem (0xb46890f0) + QGraphicsItem (0xb468a000) 8 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 180u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +8 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +12 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +16 QGraphicsItem::advance +20 QGraphicsSimpleTextItem::boundingRect +24 QGraphicsSimpleTextItem::shape +28 QGraphicsSimpleTextItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsSimpleTextItem::isObscuredBy +44 QGraphicsSimpleTextItem::opaqueArea +48 QGraphicsSimpleTextItem::paint +52 QGraphicsSimpleTextItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsSimpleTextItem::supportsExtension +148 QGraphicsSimpleTextItem::setExtension +152 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=8 align=4 + base size=8 base align=4 +QGraphicsSimpleTextItem (0xb4636f00) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 8u) + QAbstractGraphicsShapeItem (0xb4636f40) 0 + primary-for QGraphicsSimpleTextItem (0xb4636f00) + QGraphicsItem (0xb469c258) 0 + primary-for QAbstractGraphicsShapeItem (0xb4636f40) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +8 QGraphicsItemGroup::~QGraphicsItemGroup +12 QGraphicsItemGroup::~QGraphicsItemGroup +16 QGraphicsItem::advance +20 QGraphicsItemGroup::boundingRect +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsItemGroup::isObscuredBy +44 QGraphicsItemGroup::opaqueArea +48 QGraphicsItemGroup::paint +52 QGraphicsItemGroup::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=8 align=4 + base size=8 base align=4 +QGraphicsItemGroup (0xb46a4040) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 8u) + QGraphicsItem (0xb469ca14) 0 + primary-for QGraphicsItemGroup (0xb46a4040) + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb46ab21c) 0 empty + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb46ab3c0) 0 empty + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +8 QGraphicsLayoutItem::~QGraphicsLayoutItem +12 QGraphicsLayoutItem::~QGraphicsLayoutItem +16 QGraphicsLayoutItem::setGeometry +20 QGraphicsLayoutItem::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=8 align=4 + base size=8 base align=4 +QGraphicsLayoutItem (0xb46ab564) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 8u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QGraphicsLayout) +8 QGraphicsLayout::~QGraphicsLayout +12 QGraphicsLayout::~QGraphicsLayout +16 QGraphicsLayoutItem::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 __cxa_pure_virtual +32 QGraphicsLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QGraphicsLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsLayout (0xb46a47c0) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 8u) + QGraphicsLayoutItem (0xb46c23c0) 0 + primary-for QGraphicsLayout (0xb46a47c0) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +8 QGraphicsGridLayout::~QGraphicsGridLayout +12 QGraphicsGridLayout::~QGraphicsGridLayout +16 QGraphicsGridLayout::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 QGraphicsGridLayout::sizeHint +32 QGraphicsGridLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 QGraphicsGridLayout::count +44 QGraphicsGridLayout::itemAt +48 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsGridLayout (0xb46a48c0) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 8u) + QGraphicsLayout (0xb46a4900) 0 + primary-for QGraphicsGridLayout (0xb46a48c0) + QGraphicsLayoutItem (0xb46c2b04) 0 + primary-for QGraphicsLayout (0xb46a4900) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +8 QGraphicsItemAnimation::metaObject +12 QGraphicsItemAnimation::qt_metacast +16 QGraphicsItemAnimation::qt_metacall +20 QGraphicsItemAnimation::~QGraphicsItemAnimation +24 QGraphicsItemAnimation::~QGraphicsItemAnimation +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsItemAnimation::beforeAnimationStep +60 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=12 align=4 + base size=12 base align=4 +QGraphicsItemAnimation (0xb46a4a40) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 8u) + QObject (0xb46d54b0) 0 + primary-for QGraphicsItemAnimation (0xb46a4a40) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +8 QGraphicsLinearLayout::~QGraphicsLinearLayout +12 QGraphicsLinearLayout::~QGraphicsLinearLayout +16 QGraphicsLinearLayout::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 QGraphicsLinearLayout::sizeHint +32 QGraphicsLinearLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 QGraphicsLinearLayout::count +44 QGraphicsLinearLayout::itemAt +48 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsLinearLayout (0xb46a4c80) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 8u) + QGraphicsLayout (0xb46a4cc0) 0 + primary-for QGraphicsLinearLayout (0xb46a4c80) + QGraphicsLayoutItem (0xb46d5e88) 0 + primary-for QGraphicsLayout (0xb46a4cc0) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QGraphicsWidget) +8 QGraphicsWidget::metaObject +12 QGraphicsWidget::qt_metacast +16 QGraphicsWidget::qt_metacall +20 QGraphicsWidget::~QGraphicsWidget +24 QGraphicsWidget::~QGraphicsWidget +28 QGraphicsWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsWidget::setGeometry +60 QGraphicsWidget::getContentsMargins +64 QGraphicsWidget::type +68 QGraphicsWidget::paint +72 QGraphicsWidget::paintWindowFrame +76 QGraphicsWidget::boundingRect +80 QGraphicsWidget::shape +84 QGraphicsWidget::initStyleOption +88 QGraphicsWidget::sizeHint +92 QGraphicsWidget::updateGeometry +96 QGraphicsWidget::itemChange +100 QGraphicsWidget::propertyChange +104 QGraphicsWidget::sceneEvent +108 QGraphicsWidget::windowFrameEvent +112 QGraphicsWidget::windowFrameSectionAt +116 QGraphicsWidget::changeEvent +120 QGraphicsWidget::closeEvent +124 QGraphicsWidget::focusInEvent +128 QGraphicsWidget::focusNextPrevChild +132 QGraphicsWidget::focusOutEvent +136 QGraphicsWidget::hideEvent +140 QGraphicsWidget::moveEvent +144 QGraphicsWidget::polishEvent +148 QGraphicsWidget::resizeEvent +152 QGraphicsWidget::showEvent +156 QGraphicsWidget::hoverMoveEvent +160 QGraphicsWidget::hoverLeaveEvent +164 QGraphicsWidget::grabMouseEvent +168 QGraphicsWidget::ungrabMouseEvent +172 QGraphicsWidget::grabKeyboardEvent +176 QGraphicsWidget::ungrabKeyboardEvent +180 (int (*)(...))-0x000000008 +184 (int (*)(...))(& _ZTI15QGraphicsWidget) +188 QGraphicsWidget::_ZThn8_N15QGraphicsWidgetD1Ev +192 QGraphicsWidget::_ZThn8_N15QGraphicsWidgetD0Ev +196 QGraphicsItem::advance +200 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget12boundingRectEv +204 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget5shapeEv +208 QGraphicsItem::contains +212 QGraphicsItem::collidesWithItem +216 QGraphicsItem::collidesWithPath +220 QGraphicsItem::isObscuredBy +224 QGraphicsItem::opaqueArea +228 QGraphicsWidget::_ZThn8_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +232 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget4typeEv +236 QGraphicsItem::sceneEventFilter +240 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10sceneEventEP6QEvent +244 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +252 QGraphicsItem::dragLeaveEvent +256 QGraphicsItem::dragMoveEvent +260 QGraphicsItem::dropEvent +264 QGraphicsWidget::_ZThn8_N15QGraphicsWidget12focusInEventEP11QFocusEvent +268 QGraphicsWidget::_ZThn8_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +272 QGraphicsItem::hoverEnterEvent +276 QGraphicsWidget::_ZThn8_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +280 QGraphicsWidget::_ZThn8_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +284 QGraphicsItem::keyPressEvent +288 QGraphicsItem::keyReleaseEvent +292 QGraphicsItem::mousePressEvent +296 QGraphicsItem::mouseMoveEvent +300 QGraphicsItem::mouseReleaseEvent +304 QGraphicsItem::mouseDoubleClickEvent +308 QGraphicsItem::wheelEvent +312 QGraphicsItem::inputMethodEvent +316 QGraphicsItem::inputMethodQuery +320 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +324 QGraphicsItem::supportsExtension +328 QGraphicsItem::setExtension +332 QGraphicsItem::extension +336 (int (*)(...))-0x000000010 +340 (int (*)(...))(& _ZTI15QGraphicsWidget) +344 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +348 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +352 QGraphicsWidget::_ZThn16_N15QGraphicsWidget11setGeometryERK6QRectF +356 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +360 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14updateGeometryEv +364 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=24 align=4 + base size=24 base align=4 +QGraphicsWidget (0xb46f42d0) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 8u) + QObject (0xb46eea14) 0 + primary-for QGraphicsWidget (0xb46f42d0) + QGraphicsItem (0xb46eea50) 8 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 188u) + QGraphicsLayoutItem (0xb46eea8c) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 344u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 101u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +8 QGraphicsProxyWidget::metaObject +12 QGraphicsProxyWidget::qt_metacast +16 QGraphicsProxyWidget::qt_metacall +20 QGraphicsProxyWidget::~QGraphicsProxyWidget +24 QGraphicsProxyWidget::~QGraphicsProxyWidget +28 QGraphicsProxyWidget::event +32 QGraphicsProxyWidget::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsProxyWidget::setGeometry +60 QGraphicsWidget::getContentsMargins +64 QGraphicsProxyWidget::type +68 QGraphicsProxyWidget::paint +72 QGraphicsWidget::paintWindowFrame +76 QGraphicsWidget::boundingRect +80 QGraphicsWidget::shape +84 QGraphicsWidget::initStyleOption +88 QGraphicsProxyWidget::sizeHint +92 QGraphicsWidget::updateGeometry +96 QGraphicsProxyWidget::itemChange +100 QGraphicsWidget::propertyChange +104 QGraphicsWidget::sceneEvent +108 QGraphicsWidget::windowFrameEvent +112 QGraphicsWidget::windowFrameSectionAt +116 QGraphicsWidget::changeEvent +120 QGraphicsWidget::closeEvent +124 QGraphicsProxyWidget::focusInEvent +128 QGraphicsProxyWidget::focusNextPrevChild +132 QGraphicsProxyWidget::focusOutEvent +136 QGraphicsProxyWidget::hideEvent +140 QGraphicsWidget::moveEvent +144 QGraphicsWidget::polishEvent +148 QGraphicsProxyWidget::resizeEvent +152 QGraphicsProxyWidget::showEvent +156 QGraphicsProxyWidget::hoverMoveEvent +160 QGraphicsProxyWidget::hoverLeaveEvent +164 QGraphicsProxyWidget::grabMouseEvent +168 QGraphicsProxyWidget::ungrabMouseEvent +172 QGraphicsWidget::grabKeyboardEvent +176 QGraphicsWidget::ungrabKeyboardEvent +180 QGraphicsProxyWidget::contextMenuEvent +184 QGraphicsProxyWidget::hoverEnterEvent +188 QGraphicsProxyWidget::mouseMoveEvent +192 QGraphicsProxyWidget::mousePressEvent +196 QGraphicsProxyWidget::mouseReleaseEvent +200 QGraphicsProxyWidget::mouseDoubleClickEvent +204 QGraphicsProxyWidget::wheelEvent +208 QGraphicsProxyWidget::keyPressEvent +212 QGraphicsProxyWidget::keyReleaseEvent +216 (int (*)(...))-0x000000008 +220 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +224 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidgetD1Ev +228 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidgetD0Ev +232 QGraphicsItem::advance +236 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget12boundingRectEv +240 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget5shapeEv +244 QGraphicsItem::contains +248 QGraphicsItem::collidesWithItem +252 QGraphicsItem::collidesWithPath +256 QGraphicsItem::isObscuredBy +260 QGraphicsItem::opaqueArea +264 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +268 QGraphicsProxyWidget::_ZThn8_NK20QGraphicsProxyWidget4typeEv +272 QGraphicsItem::sceneEventFilter +276 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10sceneEventEP6QEvent +280 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +284 QGraphicsItem::dragEnterEvent +288 QGraphicsItem::dragLeaveEvent +292 QGraphicsItem::dragMoveEvent +296 QGraphicsItem::dropEvent +300 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +304 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +308 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +312 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +316 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +320 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +324 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +328 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +332 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +336 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +340 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +344 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +348 QGraphicsItem::inputMethodEvent +352 QGraphicsItem::inputMethodQuery +356 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +360 QGraphicsItem::supportsExtension +364 QGraphicsItem::setExtension +368 QGraphicsItem::extension +372 (int (*)(...))-0x000000010 +376 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +380 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +384 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +388 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget11setGeometryERK6QRectF +392 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +396 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14updateGeometryEv +400 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=24 align=4 + base size=24 base align=4 +QGraphicsProxyWidget (0xb470f180) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 8u) + QGraphicsWidget (0xb4707870) 0 + primary-for QGraphicsProxyWidget (0xb470f180) + QObject (0xb47131e0) 0 + primary-for QGraphicsWidget (0xb4707870) + QGraphicsItem (0xb471321c) 8 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 224u) + QGraphicsLayoutItem (0xb4713258) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 380u) + +Class QPen + size=4 align=4 + base size=4 base align=4 +QPen (0xb4527564) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4527dd4) 0 empty + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QGraphicsScene) +8 QGraphicsScene::metaObject +12 QGraphicsScene::qt_metacast +16 QGraphicsScene::qt_metacall +20 QGraphicsScene::~QGraphicsScene +24 QGraphicsScene::~QGraphicsScene +28 QGraphicsScene::event +32 QGraphicsScene::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsScene::inputMethodQuery +60 QGraphicsScene::contextMenuEvent +64 QGraphicsScene::dragEnterEvent +68 QGraphicsScene::dragMoveEvent +72 QGraphicsScene::dragLeaveEvent +76 QGraphicsScene::dropEvent +80 QGraphicsScene::focusInEvent +84 QGraphicsScene::focusOutEvent +88 QGraphicsScene::helpEvent +92 QGraphicsScene::keyPressEvent +96 QGraphicsScene::keyReleaseEvent +100 QGraphicsScene::mousePressEvent +104 QGraphicsScene::mouseMoveEvent +108 QGraphicsScene::mouseReleaseEvent +112 QGraphicsScene::mouseDoubleClickEvent +116 QGraphicsScene::wheelEvent +120 QGraphicsScene::inputMethodEvent +124 QGraphicsScene::drawBackground +128 QGraphicsScene::drawForeground +132 QGraphicsScene::drawItems + +Class QGraphicsScene + size=8 align=4 + base size=8 base align=4 +QGraphicsScene (0xb470f6c0) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 8u) + QObject (0xb4537000) 0 + primary-for QGraphicsScene (0xb470f6c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4537d98) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb455c7bc) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb455c744) 0 + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +8 QGraphicsSceneEvent::~QGraphicsSceneEvent +12 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneEvent (0xb470fd80) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 8u) + QEvent (0xb458b000) 0 + primary-for QGraphicsSceneEvent (0xb470fd80) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +8 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +12 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneMouseEvent (0xb470fe80) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 8u) + QGraphicsSceneEvent (0xb470fec0) 0 + primary-for QGraphicsSceneMouseEvent (0xb470fe80) + QEvent (0xb458b4b0) 0 + primary-for QGraphicsSceneEvent (0xb470fec0) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +8 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +12 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneWheelEvent (0xb470ffc0) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 8u) + QGraphicsSceneEvent (0xb4596000) 0 + primary-for QGraphicsSceneWheelEvent (0xb470ffc0) + QEvent (0xb458b8e8) 0 + primary-for QGraphicsSceneEvent (0xb4596000) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +8 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +12 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneContextMenuEvent (0xb4596100) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 8u) + QGraphicsSceneEvent (0xb4596140) 0 + primary-for QGraphicsSceneContextMenuEvent (0xb4596100) + QEvent (0xb458bd20) 0 + primary-for QGraphicsSceneEvent (0xb4596140) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +8 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +12 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneHoverEvent (0xb4596240) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 8u) + QGraphicsSceneEvent (0xb4596280) 0 + primary-for QGraphicsSceneHoverEvent (0xb4596240) + QEvent (0xb45a1168) 0 + primary-for QGraphicsSceneEvent (0xb4596280) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +8 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +12 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneHelpEvent (0xb4596380) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 8u) + QGraphicsSceneEvent (0xb45963c0) 0 + primary-for QGraphicsSceneHelpEvent (0xb4596380) + QEvent (0xb45a15a0) 0 + primary-for QGraphicsSceneEvent (0xb45963c0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +8 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +12 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneDragDropEvent (0xb45964c0) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 8u) + QGraphicsSceneEvent (0xb4596500) 0 + primary-for QGraphicsSceneDragDropEvent (0xb45964c0) + QEvent (0xb45a19d8) 0 + primary-for QGraphicsSceneEvent (0xb4596500) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +8 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +12 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneResizeEvent (0xb4596600) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 8u) + QGraphicsSceneEvent (0xb4596640) 0 + primary-for QGraphicsSceneResizeEvent (0xb4596600) + QEvent (0xb45a1e10) 0 + primary-for QGraphicsSceneEvent (0xb4596640) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +8 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +12 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneMoveEvent (0xb4596740) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 8u) + QGraphicsSceneEvent (0xb4596780) 0 + primary-for QGraphicsSceneMoveEvent (0xb4596740) + QEvent (0xb45b3078) 0 + primary-for QGraphicsSceneEvent (0xb4596780) + +Class QTextOption::Tab + size=16 align=4 + base size=14 base align=4 +QTextOption::Tab (0xb45b33fc) 0 + +Class QTextOption + size=24 align=4 + base size=24 base align=4 +QTextOption (0xb45b33c0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb45c0b40) 0 + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb45e112c) 0 empty + +Class QPainter + size=4 align=4 + base size=4 base align=4 +QPainter (0xb45e1438) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb45e1f00) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4446960) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb44468e8) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4446ac8) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4446a50) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb447921c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb44791a4) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4479384) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb447930c) 0 + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractScrollArea) +8 QAbstractScrollArea::metaObject +12 QAbstractScrollArea::qt_metacast +16 QAbstractScrollArea::qt_metacall +20 QAbstractScrollArea::~QAbstractScrollArea +24 QAbstractScrollArea::~QAbstractScrollArea +28 QAbstractScrollArea::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QAbstractScrollArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QAbstractScrollArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI19QAbstractScrollArea) +240 QAbstractScrollArea::_ZThn8_N19QAbstractScrollAreaD1Ev +244 QAbstractScrollArea::_ZThn8_N19QAbstractScrollAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=20 align=4 + base size=20 base align=4 +QAbstractScrollArea (0xb4491e40) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 8u) + QFrame (0xb4491e80) 0 + primary-for QAbstractScrollArea (0xb4491e40) + QWidget (0xb44de320) 0 + primary-for QFrame (0xb4491e80) + QObject (0xb44d1e4c) 0 + primary-for QWidget (0xb44de320) + QPaintDevice (0xb44d1e88) 8 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 240u) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QScrollArea) +8 QScrollArea::metaObject +12 QScrollArea::qt_metacast +16 QScrollArea::qt_metacall +20 QScrollArea::~QScrollArea +24 QScrollArea::~QScrollArea +28 QScrollArea::event +32 QScrollArea::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QScrollArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QScrollArea::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QScrollArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI11QScrollArea) +240 QScrollArea::_ZThn8_N11QScrollAreaD1Ev +244 QScrollArea::_ZThn8_N11QScrollAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=20 align=4 + base size=20 base align=4 +QScrollArea (0xb44ee140) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 8u) + QAbstractScrollArea (0xb44ee180) 0 + primary-for QScrollArea (0xb44ee140) + QFrame (0xb44ee1c0) 0 + primary-for QAbstractScrollArea (0xb44ee180) + QWidget (0xb44e7d20) 0 + primary-for QFrame (0xb44ee1c0) + QObject (0xb44e1d98) 0 + primary-for QWidget (0xb44e7d20) + QPaintDevice (0xb44e1dd4) 8 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 240u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QGraphicsView) +8 QGraphicsView::metaObject +12 QGraphicsView::qt_metacast +16 QGraphicsView::qt_metacall +20 QGraphicsView::~QGraphicsView +24 QGraphicsView::~QGraphicsView +28 QGraphicsView::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QGraphicsView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGraphicsView::mousePressEvent +84 QGraphicsView::mouseReleaseEvent +88 QGraphicsView::mouseDoubleClickEvent +92 QGraphicsView::mouseMoveEvent +96 QGraphicsView::wheelEvent +100 QGraphicsView::keyPressEvent +104 QGraphicsView::keyReleaseEvent +108 QGraphicsView::focusInEvent +112 QGraphicsView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGraphicsView::paintEvent +128 QWidget::moveEvent +132 QGraphicsView::resizeEvent +136 QWidget::closeEvent +140 QGraphicsView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QGraphicsView::dragEnterEvent +156 QGraphicsView::dragMoveEvent +160 QGraphicsView::dragLeaveEvent +164 QGraphicsView::dropEvent +168 QGraphicsView::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QGraphicsView::inputMethodEvent +192 QGraphicsView::inputMethodQuery +196 QGraphicsView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QGraphicsView::viewportEvent +228 QGraphicsView::scrollContentsBy +232 QGraphicsView::drawBackground +236 QGraphicsView::drawForeground +240 QGraphicsView::drawItems +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI13QGraphicsView) +252 QGraphicsView::_ZThn8_N13QGraphicsViewD1Ev +256 QGraphicsView::_ZThn8_N13QGraphicsViewD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=20 align=4 + base size=20 base align=4 +QGraphicsView (0xb44ee480) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 8u) + QAbstractScrollArea (0xb44ee4c0) 0 + primary-for QGraphicsView (0xb44ee480) + QFrame (0xb44ee500) 0 + primary-for QAbstractScrollArea (0xb44ee4c0) + QWidget (0xb44f9b90) 0 + primary-for QFrame (0xb44ee500) + QObject (0xb44f5c6c) 0 + primary-for QWidget (0xb44f9b90) + QPaintDevice (0xb44f5ca8) 8 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 252u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb43214ec) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb433412c) 0 + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBitmap) +8 QBitmap::~QBitmap +12 QBitmap::~QBitmap +16 QPixmap::devType +20 QPixmap::paintEngine +24 QPixmap::metric + +Class QBitmap + size=12 align=4 + base size=12 base align=4 +QBitmap (0xb44eec40) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 8u) + QPixmap (0xb44eec80) 0 + primary-for QBitmap (0xb44eec40) + QPaintDevice (0xb4357924) 0 + primary-for QPixmap (0xb44eec80) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QIconEngine) +8 QIconEngine::~QIconEngine +12 QIconEngine::~QIconEngine +16 __cxa_pure_virtual +20 QIconEngine::actualSize +24 QIconEngine::pixmap +28 QIconEngine::addPixmap +32 QIconEngine::addFile + +Class QIconEngine + size=4 align=4 + base size=4 base align=4 +QIconEngine (0xb4361fb4) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 8u) + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QIconEngineV2) +8 QIconEngineV2::~QIconEngineV2 +12 QIconEngineV2::~QIconEngineV2 +16 __cxa_pure_virtual +20 QIconEngine::actualSize +24 QIconEngine::pixmap +28 QIconEngine::addPixmap +32 QIconEngine::addFile +36 QIconEngineV2::key +40 QIconEngineV2::clone +44 QIconEngineV2::read +48 QIconEngineV2::write +52 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=4 align=4 + base size=4 base align=4 +QIconEngineV2 (0xb436d480) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 8u) + QIconEngine (0xb4378348) 0 nearly-empty + primary-for QIconEngineV2 (0xb436d480) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +8 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +12 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=4 align=4 + base size=4 base align=4 +QIconEngineFactoryInterface (0xb436d500) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 8u) + QFactoryInterface (0xb43784ec) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0xb436d500) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QIconEnginePlugin) +8 QIconEnginePlugin::metaObject +12 QIconEnginePlugin::qt_metacast +16 QIconEnginePlugin::qt_metacall +20 QIconEnginePlugin::~QIconEnginePlugin +24 QIconEnginePlugin::~QIconEnginePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI17QIconEnginePlugin) +72 QIconEnginePlugin::_ZThn8_N17QIconEnginePluginD1Ev +76 QIconEnginePlugin::_ZThn8_N17QIconEnginePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QIconEnginePlugin + size=12 align=4 + base size=12 base align=4 +QIconEnginePlugin (0xb437c8c0) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 8u) + QObject (0xb4378834) 0 + primary-for QIconEnginePlugin (0xb437c8c0) + QIconEngineFactoryInterface (0xb436d6c0) 8 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 72u) + QFactoryInterface (0xb4378870) 8 nearly-empty + primary-for QIconEngineFactoryInterface (0xb436d6c0) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +8 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +12 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=4 align=4 + base size=4 base align=4 +QIconEngineFactoryInterfaceV2 (0xb436d900) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 8u) + QFactoryInterface (0xb43785a0) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0xb436d900) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +8 QIconEnginePluginV2::metaObject +12 QIconEnginePluginV2::qt_metacast +16 QIconEnginePluginV2::qt_metacall +20 QIconEnginePluginV2::~QIconEnginePluginV2 +24 QIconEnginePluginV2::~QIconEnginePluginV2 +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +72 QIconEnginePluginV2::_ZThn8_N19QIconEnginePluginV2D1Ev +76 QIconEnginePluginV2::_ZThn8_N19QIconEnginePluginV2D0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=12 align=4 + base size=12 base align=4 +QIconEnginePluginV2 (0xb4385dc0) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 8u) + QObject (0xb438a30c) 0 + primary-for QIconEnginePluginV2 (0xb4385dc0) + QIconEngineFactoryInterfaceV2 (0xb436da80) 8 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 72u) + QFactoryInterface (0xb438a348) 8 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0xb436da80) + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QImageIOHandler) +8 QImageIOHandler::~QImageIOHandler +12 QImageIOHandler::~QImageIOHandler +16 QImageIOHandler::name +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QImageIOHandler::write +32 QImageIOHandler::option +36 QImageIOHandler::setOption +40 QImageIOHandler::supportsOption +44 QImageIOHandler::jumpToNextImage +48 QImageIOHandler::jumpToImage +52 QImageIOHandler::loopCount +56 QImageIOHandler::imageCount +60 QImageIOHandler::nextImageDelay +64 QImageIOHandler::currentImageNumber +68 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=8 align=4 + base size=8 base align=4 +QImageIOHandler (0xb438ab7c) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 8u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +8 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +12 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=4 align=4 + base size=4 base align=4 +QImageIOHandlerFactoryInterface (0xb436dd80) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 8u) + QFactoryInterface (0xb43a1168) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0xb436dd80) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QImageIOPlugin) +8 QImageIOPlugin::metaObject +12 QImageIOPlugin::qt_metacast +16 QImageIOPlugin::qt_metacall +20 QImageIOPlugin::~QImageIOPlugin +24 QImageIOPlugin::~QImageIOPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 (int (*)(...))-0x000000008 +72 (int (*)(...))(& _ZTI14QImageIOPlugin) +76 QImageIOPlugin::_ZThn8_N14QImageIOPluginD1Ev +80 QImageIOPlugin::_ZThn8_N14QImageIOPluginD0Ev +84 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QImageIOPlugin + size=12 align=4 + base size=12 base align=4 +QImageIOPlugin (0xb439eaf0) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 8u) + QObject (0xb43a14ec) 0 + primary-for QImageIOPlugin (0xb439eaf0) + QImageIOHandlerFactoryInterface (0xb436df00) 8 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 76u) + QFactoryInterface (0xb43a1528) 8 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0xb436df00) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb43a121c) 0 + +Class QImageReader + size=4 align=4 + base size=4 base align=4 +QImageReader (0xb43b6b40) 0 + +Class QImageWriter + size=4 align=4 + base size=4 base align=4 +QImageWriter (0xb43d1000) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QMovie) +8 QMovie::metaObject +12 QMovie::qt_metacast +16 QMovie::qt_metacall +20 QMovie::~QMovie +24 QMovie::~QMovie +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QMovie + size=8 align=4 + base size=8 base align=4 +QMovie (0xb43aa240) 0 + vptr=((& QMovie::_ZTV6QMovie) + 8u) + QObject (0xb43d1474) 0 + primary-for QMovie (0xb43aa240) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QPicture) +8 QPicture::~QPicture +12 QPicture::~QPicture +16 QPicture::devType +20 QPicture::paintEngine +24 QPicture::metric +28 QPicture::setData + +Class QPicture + size=12 align=4 + base size=12 base align=4 +QPicture (0xb43aa800) 0 + vptr=((& QPicture::_ZTV8QPicture) + 8u) + QPaintDevice (0xb43f3348) 0 + primary-for QPicture (0xb43aa800) + +Class QPictureIO + size=4 align=4 + base size=4 base align=4 +QPictureIO (0xb440103c) 0 + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QPictureFormatInterface) +8 QPictureFormatInterface::~QPictureFormatInterface +12 QPictureFormatInterface::~QPictureFormatInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QPictureFormatInterface + size=4 align=4 + base size=4 base align=4 +QPictureFormatInterface (0xb43aaa80) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 8u) + QFactoryInterface (0xb4401384) 0 nearly-empty + primary-for QPictureFormatInterface (0xb43aaa80) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +8 QPictureFormatPlugin::metaObject +12 QPictureFormatPlugin::qt_metacast +16 QPictureFormatPlugin::qt_metacall +20 QPictureFormatPlugin::~QPictureFormatPlugin +24 QPictureFormatPlugin::~QPictureFormatPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 QPictureFormatPlugin::loadPicture +64 QPictureFormatPlugin::savePicture +68 __cxa_pure_virtual +72 (int (*)(...))-0x000000008 +76 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +80 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPluginD1Ev +84 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPluginD0Ev +88 __cxa_pure_virtual +92 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +96 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +100 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=12 align=4 + base size=12 base align=4 +QPictureFormatPlugin (0xb4408320) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 8u) + QObject (0xb4401690) 0 + primary-for QPictureFormatPlugin (0xb4408320) + QPictureFormatInterface (0xb43aac40) 8 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 80u) + QFactoryInterface (0xb44016cc) 8 nearly-empty + primary-for QPictureFormatInterface (0xb43aac40) + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0xb4401f3c) 0 empty + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QAction) +8 QAction::metaObject +12 QAction::qt_metacast +16 QAction::qt_metacall +20 QAction::~QAction +24 QAction::~QAction +28 QAction::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QAction + size=8 align=4 + base size=8 base align=4 +QAction (0xb43aae80) 0 + vptr=((& QAction::_ZTV7QAction) + 8u) + QObject (0xb4401f78) 0 + primary-for QAction (0xb43aae80) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QActionGroup) +8 QActionGroup::metaObject +12 QActionGroup::qt_metacast +16 QActionGroup::qt_metacall +20 QActionGroup::~QActionGroup +24 QActionGroup::~QActionGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QActionGroup + size=8 align=4 + base size=8 base align=4 +QActionGroup (0xb422a580) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 8u) + QObject (0xb42360f0) 0 + primary-for QActionGroup (0xb422a580) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4236f3c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4236ec4) 0 + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QInputContext) +8 QInputContext::metaObject +12 QInputContext::qt_metacast +16 QInputContext::qt_metacall +20 QInputContext::~QInputContext +24 QInputContext::~QInputContext +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 QInputContext::update +72 QInputContext::mouseHandler +76 QInputContext::font +80 __cxa_pure_virtual +84 QInputContext::setFocusWidget +88 QInputContext::widgetDestroyed +92 QInputContext::actions +96 QInputContext::x11FilterEvent +100 QInputContext::filterEvent + +Class QInputContext + size=8 align=4 + base size=8 base align=4 +QInputContext (0xb422aa00) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 8u) + QObject (0xb425c0f0) 0 + primary-for QInputContext (0xb422aa00) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0xb425cce4) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +8 QInputContextFactoryInterface::~QInputContextFactoryInterface +12 QInputContextFactoryInterface::~QInputContextFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=4 align=4 + base size=4 base align=4 +QInputContextFactoryInterface (0xb422acc0) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 8u) + QFactoryInterface (0xb425cd20) 0 nearly-empty + primary-for QInputContextFactoryInterface (0xb422acc0) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QInputContextPlugin) +8 QInputContextPlugin::metaObject +12 QInputContextPlugin::qt_metacast +16 QInputContextPlugin::qt_metacall +20 QInputContextPlugin::~QInputContextPlugin +24 QInputContextPlugin::~QInputContextPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 (int (*)(...))-0x000000008 +80 (int (*)(...))(& _ZTI19QInputContextPlugin) +84 QInputContextPlugin::_ZThn8_N19QInputContextPluginD1Ev +88 QInputContextPlugin::_ZThn8_N19QInputContextPluginD0Ev +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual + +Class QInputContextPlugin + size=12 align=4 + base size=12 base align=4 +QInputContextPlugin (0xb4262fa0) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 8u) + QObject (0xb425cdd4) 0 + primary-for QInputContextPlugin (0xb4262fa0) + QInputContextFactoryInterface (0xb422ae80) 8 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 84u) + QFactoryInterface (0xb426c000) 8 nearly-empty + primary-for QInputContextFactoryInterface (0xb422ae80) + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QValidator) +8 QValidator::metaObject +12 QValidator::qt_metacast +16 QValidator::qt_metacall +20 QValidator::~QValidator +24 QValidator::~QValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 QValidator::fixup + +Class QValidator + size=8 align=4 + base size=8 base align=4 +QValidator (0xb42740c0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 8u) + QObject (0xb426c7f8) 0 + primary-for QValidator (0xb42740c0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QIntValidator) +8 QIntValidator::metaObject +12 QIntValidator::qt_metacast +16 QIntValidator::qt_metacall +20 QIntValidator::~QIntValidator +24 QIntValidator::~QIntValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIntValidator::validate +60 QValidator::fixup +64 QIntValidator::setRange + +Class QIntValidator + size=16 align=4 + base size=16 base align=4 +QIntValidator (0xb4274380) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 8u) + QValidator (0xb42743c0) 0 + primary-for QIntValidator (0xb4274380) + QObject (0xb4281618) 0 + primary-for QValidator (0xb42743c0) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QDoubleValidator) +8 QDoubleValidator::metaObject +12 QDoubleValidator::qt_metacast +16 QDoubleValidator::qt_metacall +20 QDoubleValidator::~QDoubleValidator +24 QDoubleValidator::~QDoubleValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDoubleValidator::validate +60 QValidator::fixup +64 QDoubleValidator::setRange + +Class QDoubleValidator + size=28 align=4 + base size=28 base align=4 +QDoubleValidator (0xb4274680) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 8u) + QValidator (0xb42746c0) 0 + primary-for QDoubleValidator (0xb4274680) + QObject (0xb428e564) 0 + primary-for QValidator (0xb42746c0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QRegExpValidator) +8 QRegExpValidator::metaObject +12 QRegExpValidator::qt_metacast +16 QRegExpValidator::qt_metacall +20 QRegExpValidator::~QRegExpValidator +24 QRegExpValidator::~QRegExpValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QRegExpValidator::validate +60 QValidator::fixup + +Class QRegExpValidator + size=12 align=4 + base size=12 base align=4 +QRegExpValidator (0xb4274a40) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 8u) + QValidator (0xb4274a80) 0 + primary-for QRegExpValidator (0xb4274a40) + QObject (0xb429d870) 0 + primary-for QValidator (0xb4274a80) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QAbstractSpinBox) +8 QAbstractSpinBox::metaObject +12 QAbstractSpinBox::qt_metacast +16 QAbstractSpinBox::qt_metacall +20 QAbstractSpinBox::~QAbstractSpinBox +24 QAbstractSpinBox::~QAbstractSpinBox +28 QAbstractSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSpinBox::validate +228 QAbstractSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI16QAbstractSpinBox) +252 QAbstractSpinBox::_ZThn8_N16QAbstractSpinBoxD1Ev +256 QAbstractSpinBox::_ZThn8_N16QAbstractSpinBoxD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=20 align=4 + base size=20 base align=4 +QAbstractSpinBox (0xb4274d00) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 8u) + QWidget (0xb42ac0a0) 0 + primary-for QAbstractSpinBox (0xb4274d00) + QObject (0xb42a6690) 0 + primary-for QWidget (0xb42ac0a0) + QPaintDevice (0xb42a66cc) 8 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 252u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb42b9870) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractSlider) +8 QAbstractSlider::metaObject +12 QAbstractSlider::qt_metacast +16 QAbstractSlider::qt_metacall +20 QAbstractSlider::~QAbstractSlider +24 QAbstractSlider::~QAbstractSlider +28 QAbstractSlider::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSlider::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI15QAbstractSlider) +236 QAbstractSlider::_ZThn8_N15QAbstractSliderD1Ev +240 QAbstractSlider::_ZThn8_N15QAbstractSliderD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=20 align=4 + base size=20 base align=4 +QAbstractSlider (0xb42c7080) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 8u) + QWidget (0xb42c6820) 0 + primary-for QAbstractSlider (0xb42c7080) + QObject (0xb42d33fc) 0 + primary-for QWidget (0xb42c6820) + QPaintDevice (0xb42d3438) 8 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 236u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QSlider) +8 QSlider::metaObject +12 QSlider::qt_metacast +16 QSlider::qt_metacall +20 QSlider::~QSlider +24 QSlider::~QSlider +28 QSlider::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSlider::sizeHint +68 QSlider::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSlider::mousePressEvent +84 QSlider::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSlider::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSlider::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSlider::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI7QSlider) +236 QSlider::_ZThn8_N7QSliderD1Ev +240 QSlider::_ZThn8_N7QSliderD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=20 align=4 + base size=20 base align=4 +QSlider (0xb42c7600) 0 + vptr=((& QSlider::_ZTV7QSlider) + 8u) + QAbstractSlider (0xb42c7640) 0 + primary-for QSlider (0xb42c7600) + QWidget (0xb42e7f00) 0 + primary-for QAbstractSlider (0xb42c7640) + QObject (0xb42f330c) 0 + primary-for QWidget (0xb42e7f00) + QPaintDevice (0xb42f3348) 8 + vptr=((& QSlider::_ZTV7QSlider) + 236u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QStyle) +8 QStyle::metaObject +12 QStyle::qt_metacast +16 QStyle::qt_metacall +20 QStyle::~QStyle +24 QStyle::~QStyle +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyle::polish +60 QStyle::unpolish +64 QStyle::polish +68 QStyle::unpolish +72 QStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 __cxa_pure_virtual +120 __cxa_pure_virtual +124 __cxa_pure_virtual +128 __cxa_pure_virtual +132 __cxa_pure_virtual +136 __cxa_pure_virtual + +Class QStyle + size=8 align=4 + base size=8 base align=4 +QStyle (0xb42c7a00) 0 + vptr=((& QStyle::_ZTV6QStyle) + 8u) + QObject (0xb4301d5c) 0 + primary-for QStyle (0xb42c7a00) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb412f6cc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb414530c) 0 + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QTabBar) +8 QTabBar::metaObject +12 QTabBar::qt_metacast +16 QTabBar::qt_metacall +20 QTabBar::~QTabBar +24 QTabBar::~QTabBar +28 QTabBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QTabBar::sizeHint +68 QTabBar::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTabBar::mousePressEvent +84 QTabBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QTabBar::mouseMoveEvent +96 QWidget::wheelEvent +100 QTabBar::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTabBar::paintEvent +128 QWidget::moveEvent +132 QTabBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QTabBar::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTabBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTabBar::tabSizeHint +228 QTabBar::tabInserted +232 QTabBar::tabRemoved +236 QTabBar::tabLayoutChange +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI7QTabBar) +248 QTabBar::_ZThn8_N7QTabBarD1Ev +252 QTabBar::_ZThn8_N7QTabBarD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=20 align=4 + base size=20 base align=4 +QTabBar (0xb42c7e80) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 8u) + QWidget (0xb41640a0) 0 + primary-for QTabBar (0xb42c7e80) + QObject (0xb4145f78) 0 + primary-for QWidget (0xb41640a0) + QPaintDevice (0xb4145fb4) 8 + vptr=((& QTabBar::_ZTV7QTabBar) + 248u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTabWidget) +8 QTabWidget::metaObject +12 QTabWidget::qt_metacast +16 QTabWidget::qt_metacall +20 QTabWidget::~QTabWidget +24 QTabWidget::~QTabWidget +28 QTabWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QTabWidget::sizeHint +68 QTabWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QTabWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTabWidget::paintEvent +128 QWidget::moveEvent +132 QTabWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QTabWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTabWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTabWidget::tabInserted +228 QTabWidget::tabRemoved +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI10QTabWidget) +240 QTabWidget::_ZThn8_N10QTabWidgetD1Ev +244 QTabWidget::_ZThn8_N10QTabWidgetD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=20 align=4 + base size=20 base align=4 +QTabWidget (0xb4175180) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 8u) + QWidget (0xb4170a00) 0 + primary-for QTabWidget (0xb4175180) + QObject (0xb4179000) 0 + primary-for QWidget (0xb4170a00) + QPaintDevice (0xb417903c) 8 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 240u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QRubberBand) +8 QRubberBand::metaObject +12 QRubberBand::qt_metacast +16 QRubberBand::qt_metacall +20 QRubberBand::~QRubberBand +24 QRubberBand::~QRubberBand +28 QRubberBand::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QRubberBand::paintEvent +128 QRubberBand::moveEvent +132 QRubberBand::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QRubberBand::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QRubberBand::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QRubberBand) +232 QRubberBand::_ZThn8_N11QRubberBandD1Ev +236 QRubberBand::_ZThn8_N11QRubberBandD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=20 align=4 + base size=20 base align=4 +QRubberBand (0xb41759c0) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 8u) + QWidget (0xb418cd20) 0 + primary-for QRubberBand (0xb41759c0) + QObject (0xb41a24b0) 0 + primary-for QWidget (0xb418cd20) + QPaintDevice (0xb41a24ec) 8 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 232u) + +Class QStyleOption + size=44 align=4 + base size=44 base align=4 +QStyleOption (0xb41b5528) 0 + +Class QStyleOptionFocusRect + size=60 align=4 + base size=60 base align=4 +QStyleOptionFocusRect (0xb4175e40) 0 + QStyleOption (0xb41b5c30) 0 + +Class QStyleOptionFrame + size=52 align=4 + base size=52 base align=4 +QStyleOptionFrame (0xb41c1040) 0 + QStyleOption (0xb41c012c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb41c08e8) 0 + +Class QStyleOptionFrameV2 + size=56 align=4 + base size=56 base align=4 +QStyleOptionFrameV2 (0xb41c1240) 0 + QStyleOptionFrame (0xb41c1280) 0 + QStyleOption (0xb41c0654) 0 + +Class QStyleOptionTabWidgetFrame + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabWidgetFrame (0xb41c16c0) 0 + QStyleOption (0xb41d4ca8) 0 + +Class QStyleOptionTabBarBase + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabBarBase (0xb41c18c0) 0 + QStyleOption (0xb41e92d0) 0 + +Class QStyleOptionHeader + size=80 align=4 + base size=80 base align=4 +QStyleOptionHeader (0xb41c1ac0) 0 + QStyleOption (0xb41e98ac) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb41fe258) 0 + +Class QStyleOptionButton + size=64 align=4 + base size=64 base align=4 +QStyleOptionButton (0xb41c1d80) 0 + QStyleOption (0xb41e90f0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb42167bc) 0 + +Class QStyleOptionTab + size=72 align=4 + base size=72 base align=4 +QStyleOptionTab (0xb420c080) 0 + QStyleOption (0xb4216294) 0 + +Class QStyleOptionTabV2 + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabV2 (0xb420c3c0) 0 + QStyleOptionTab (0xb420c400) 0 + QStyleOption (0xb40307f8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb40494b0) 0 + +Class QStyleOptionToolBar + size=68 align=4 + base size=68 base align=4 +QStyleOptionToolBar (0xb420c740) 0 + QStyleOption (0xb404903c) 0 + +Class QStyleOptionProgressBar + size=68 align=4 + base size=65 base align=4 +QStyleOptionProgressBar (0xb420ca40) 0 + QStyleOption (0xb40634ec) 0 + +Class QStyleOptionProgressBarV2 + size=76 align=4 + base size=74 base align=4 +QStyleOptionProgressBarV2 (0xb420cc80) 0 + QStyleOptionProgressBar (0xb420ccc0) 0 + QStyleOption (0xb4063a50) 0 + +Class QStyleOptionMenuItem + size=96 align=4 + base size=96 base align=4 +QStyleOptionMenuItem (0xb420cd00) 0 + QStyleOption (0xb4063e88) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb40767f8) 0 + +Class QStyleOptionQ3ListViewItem + size=64 align=4 + base size=64 base align=4 +QStyleOptionQ3ListViewItem (0xb420cf40) 0 + QStyleOption (0xb40764ec) 0 + +Class QStyleOptionQ3DockWindow + size=48 align=4 + base size=46 base align=4 +QStyleOptionQ3DockWindow (0xb4086240) 0 + QStyleOption (0xb408d7f8) 0 + +Class QStyleOptionDockWidget + size=52 align=4 + base size=51 base align=4 +QStyleOptionDockWidget (0xb4086440) 0 + QStyleOption (0xb408dd20) 0 + +Class QStyleOptionDockWidgetV2 + size=52 align=4 + base size=52 base align=4 +QStyleOptionDockWidgetV2 (0xb4086640) 0 + QStyleOptionDockWidget (0xb4086680) 0 + QStyleOption (0xb40a821c) 0 + +Class QStyleOptionViewItem + size=80 align=4 + base size=77 base align=4 +QStyleOptionViewItem (0xb40869c0) 0 + QStyleOption (0xb40a8a50) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb40bc258) 0 + +Class QStyleOptionViewItemV2 + size=84 align=4 + base size=84 base align=4 +QStyleOptionViewItemV2 (0xb4086c40) 0 + QStyleOptionViewItem (0xb4086c80) 0 + QStyleOption (0xb40a8e4c) 0 + +Class QStyleOptionViewItemV3 + size=92 align=4 + base size=92 base align=4 +QStyleOptionViewItemV3 (0xb40c70c0) 0 + QStyleOptionViewItemV2 (0xb40c7100) 0 + QStyleOptionViewItem (0xb40c7140) 0 + QStyleOption (0xb40ca690) 0 + +Class QStyleOptionViewItemV4 + size=128 align=4 + base size=128 base align=4 +QStyleOptionViewItemV4 (0xb40c7480) 0 + QStyleOptionViewItemV3 (0xb40c74c0) 0 + QStyleOptionViewItemV2 (0xb40c7500) 0 + QStyleOptionViewItem (0xb40c7540) 0 + QStyleOption (0xb40cae88) 0 + +Class QStyleOptionToolBox + size=52 align=4 + base size=52 base align=4 +QStyleOptionToolBox (0xb40c7880) 0 + QStyleOption (0xb40e5744) 0 + +Class QStyleOptionToolBoxV2 + size=60 align=4 + base size=60 base align=4 +QStyleOptionToolBoxV2 (0xb40c7a80) 0 + QStyleOptionToolBox (0xb40c7ac0) 0 + QStyleOption (0xb40e5c6c) 0 + +Class QStyleOptionRubberBand + size=52 align=4 + base size=49 base align=4 +QStyleOptionRubberBand (0xb40c7e00) 0 + QStyleOption (0xb40fa5dc) 0 + +Class QStyleOptionComplex + size=52 align=4 + base size=52 base align=4 +QStyleOptionComplex (0xb4104000) 0 + QStyleOption (0xb40fabb8) 0 + +Class QStyleOptionSlider + size=104 align=4 + base size=101 base align=4 +QStyleOptionSlider (0xb4104280) 0 + QStyleOptionComplex (0xb41042c0) 0 + QStyleOption (0xb4107384) 0 + +Class QStyleOptionSpinBox + size=64 align=4 + base size=61 base align=4 +QStyleOptionSpinBox (0xb4104600) 0 + QStyleOptionComplex (0xb4104640) 0 + QStyleOption (0xb4107b04) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb411a21c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb411a1a4) 0 + +Class QStyleOptionQ3ListView + size=84 align=4 + base size=81 base align=4 +QStyleOptionQ3ListView (0xb4104880) 0 + QStyleOptionComplex (0xb41048c0) 0 + QStyleOption (0xb411a0b4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb411ab40) 0 + +Class QStyleOptionToolButton + size=96 align=4 + base size=96 base align=4 +QStyleOptionToolButton (0xb4104b80) 0 + QStyleOptionComplex (0xb4104bc0) 0 + QStyleOption (0xb411a7bc) 0 + +Class QStyleOptionComboBox + size=92 align=4 + base size=92 base align=4 +QStyleOptionComboBox (0xb4104ec0) 0 + QStyleOptionComplex (0xb4104f00) 0 + QStyleOption (0xb3f46b04) 0 + +Class QStyleOptionTitleBar + size=68 align=4 + base size=68 base align=4 +QStyleOptionTitleBar (0xb3f5b100) 0 + QStyleOptionComplex (0xb3f5b140) 0 + QStyleOption (0xb3f6203c) 0 + +Class QStyleOptionGroupBox + size=88 align=4 + base size=88 base align=4 +QStyleOptionGroupBox (0xb3f5b380) 0 + QStyleOptionComplex (0xb3f5b3c0) 0 + QStyleOption (0xb3f62564) 0 + +Class QStyleOptionSizeGrip + size=56 align=4 + base size=56 base align=4 +QStyleOptionSizeGrip (0xb3f5b640) 0 + QStyleOptionComplex (0xb3f5b680) 0 + QStyleOption (0xb3f62b7c) 0 + +Class QStyleOptionGraphicsItem + size=132 align=4 + base size=132 base align=4 +QStyleOptionGraphicsItem (0xb3f5b880) 0 + QStyleOption (0xb3f76000) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0xb3f765a0) 0 + +Class QStyleHintReturnMask + size=12 align=4 + base size=12 base align=4 +QStyleHintReturnMask (0xb3f5bc80) 0 + QStyleHintReturn (0xb3f767bc) 0 + +Class QStyleHintReturnVariant + size=20 align=4 + base size=20 base align=4 +QStyleHintReturnVariant (0xb3f5bd00) 0 + QStyleHintReturn (0xb3f768ac) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +8 QAbstractItemDelegate::metaObject +12 QAbstractItemDelegate::qt_metacast +16 QAbstractItemDelegate::qt_metacall +20 QAbstractItemDelegate::~QAbstractItemDelegate +24 QAbstractItemDelegate::~QAbstractItemDelegate +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAbstractItemDelegate::createEditor +68 QAbstractItemDelegate::setEditorData +72 QAbstractItemDelegate::setModelData +76 QAbstractItemDelegate::updateEditorGeometry +80 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=8 align=4 + base size=8 base align=4 +QAbstractItemDelegate (0xb3f5bfc0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 8u) + QObject (0xb3f76b04) 0 + primary-for QAbstractItemDelegate (0xb3f5bfc0) + +Class QItemSelectionRange + size=8 align=4 + base size=8 base align=4 +QItemSelectionRange (0xb3f9b654) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3fce1e0) 0 empty + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QItemSelectionModel) +8 QItemSelectionModel::metaObject +12 QItemSelectionModel::qt_metacast +16 QItemSelectionModel::qt_metacall +20 QItemSelectionModel::~QItemSelectionModel +24 QItemSelectionModel::~QItemSelectionModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QItemSelectionModel::select +60 QItemSelectionModel::select +64 QItemSelectionModel::clear +68 QItemSelectionModel::reset + +Class QItemSelectionModel + size=8 align=4 + base size=8 base align=4 +QItemSelectionModel (0xb3f94bc0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 8u) + QObject (0xb3fce654) 0 + primary-for QItemSelectionModel (0xb3f94bc0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3fde924) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3ff75a0) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3ff7528) 0 + +Class QItemSelection + size=4 align=4 + base size=4 base align=4 +QItemSelection (0xb4014000) 0 + QList (0xb3ff75dc) 0 + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAbstractItemView) +8 QAbstractItemView::metaObject +12 QAbstractItemView::qt_metacast +16 QAbstractItemView::qt_metacall +20 QAbstractItemView::~QAbstractItemView +24 QAbstractItemView::~QAbstractItemView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QAbstractScrollArea::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 __cxa_pure_virtual +248 __cxa_pure_virtual +252 __cxa_pure_virtual +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QAbstractItemView::reset +268 QAbstractItemView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QAbstractItemView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QAbstractItemView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 __cxa_pure_virtual +344 __cxa_pure_virtual +348 __cxa_pure_virtual +352 __cxa_pure_virtual +356 __cxa_pure_virtual +360 __cxa_pure_virtual +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI17QAbstractItemView) +392 QAbstractItemView::_ZThn8_N17QAbstractItemViewD1Ev +396 QAbstractItemView::_ZThn8_N17QAbstractItemViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=20 align=4 + base size=20 base align=4 +QAbstractItemView (0xb4014180) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 8u) + QAbstractScrollArea (0xb40141c0) 0 + primary-for QAbstractItemView (0xb4014180) + QFrame (0xb4014200) 0 + primary-for QAbstractScrollArea (0xb40141c0) + QWidget (0xb4016320) 0 + primary-for QFrame (0xb4014200) + QObject (0xb3ff78e8) 0 + primary-for QWidget (0xb4016320) + QPaintDevice (0xb3ff7924) 8 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 392u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3e34708) 0 + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractProxyModel) +8 QAbstractProxyModel::metaObject +12 QAbstractProxyModel::qt_metacast +16 QAbstractProxyModel::qt_metacall +20 QAbstractProxyModel::~QAbstractProxyModel +24 QAbstractProxyModel::~QAbstractProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 QAbstractProxyModel::data +80 QAbstractProxyModel::setData +84 QAbstractProxyModel::headerData +88 QAbstractProxyModel::setHeaderData +92 QAbstractProxyModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractProxyModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractProxyModel::submit +164 QAbstractProxyModel::revert +168 QAbstractProxyModel::setSourceModel +172 __cxa_pure_virtual +176 __cxa_pure_virtual +180 QAbstractProxyModel::mapSelectionToSource +184 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=8 align=4 + base size=8 base align=4 +QAbstractProxyModel (0xb40145c0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 8u) + QAbstractItemModel (0xb4014600) 0 + primary-for QAbstractProxyModel (0xb40145c0) + QObject (0xb3e4a2d0) 0 + primary-for QAbstractItemModel (0xb4014600) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QColumnView) +8 QColumnView::metaObject +12 QColumnView::qt_metacast +16 QColumnView::qt_metacall +20 QColumnView::~QColumnView +24 QColumnView::~QColumnView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QColumnView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QColumnView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QColumnView::scrollContentsBy +232 QColumnView::setModel +236 QColumnView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QColumnView::visualRect +248 QColumnView::scrollTo +252 QColumnView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QAbstractItemView::reset +268 QColumnView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QColumnView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QColumnView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QAbstractItemView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QColumnView::moveCursor +344 QColumnView::horizontalOffset +348 QColumnView::verticalOffset +352 QColumnView::isIndexHidden +356 QColumnView::setSelection +360 QColumnView::visualRegionForSelection +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QColumnView::createColumn +388 (int (*)(...))-0x000000008 +392 (int (*)(...))(& _ZTI11QColumnView) +396 QColumnView::_ZThn8_N11QColumnViewD1Ev +400 QColumnView::_ZThn8_N11QColumnViewD0Ev +404 QWidget::_ZThn8_NK7QWidget7devTypeEv +408 QWidget::_ZThn8_NK7QWidget11paintEngineEv +412 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=20 align=4 + base size=20 base align=4 +QColumnView (0xb40148c0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 8u) + QAbstractItemView (0xb4014900) 0 + primary-for QColumnView (0xb40148c0) + QAbstractScrollArea (0xb4014940) 0 + primary-for QAbstractItemView (0xb4014900) + QFrame (0xb4014980) 0 + primary-for QAbstractScrollArea (0xb4014940) + QWidget (0xb3e5d550) 0 + primary-for QFrame (0xb4014980) + QObject (0xb3e4a870) 0 + primary-for QWidget (0xb3e5d550) + QPaintDevice (0xb3e66000) 8 + vptr=((& QColumnView::_ZTV11QColumnView) + 396u) + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QDataWidgetMapper) +8 QDataWidgetMapper::metaObject +12 QDataWidgetMapper::qt_metacast +16 QDataWidgetMapper::qt_metacall +20 QDataWidgetMapper::~QDataWidgetMapper +24 QDataWidgetMapper::~QDataWidgetMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=8 align=4 + base size=8 base align=4 +QDataWidgetMapper (0xb4014c40) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 8u) + QObject (0xb3e66fb4) 0 + primary-for QDataWidgetMapper (0xb4014c40) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFileIconProvider) +8 QFileIconProvider::~QFileIconProvider +12 QFileIconProvider::~QFileIconProvider +16 QFileIconProvider::icon +20 QFileIconProvider::icon +24 QFileIconProvider::type + +Class QFileIconProvider + size=8 align=4 + base size=8 base align=4 +QFileIconProvider (0xb3e7cc30) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 8u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QDirModel) +8 QDirModel::metaObject +12 QDirModel::qt_metacast +16 QDirModel::qt_metacall +20 QDirModel::~QDirModel +24 QDirModel::~QDirModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDirModel::index +60 QDirModel::parent +64 QDirModel::rowCount +68 QDirModel::columnCount +72 QDirModel::hasChildren +76 QDirModel::data +80 QDirModel::setData +84 QDirModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QDirModel::mimeTypes +104 QDirModel::mimeData +108 QDirModel::dropMimeData +112 QDirModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QDirModel::flags +144 QDirModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QDirModel + size=8 align=4 + base size=8 base align=4 +QDirModel (0xb3e8d000) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 8u) + QAbstractItemModel (0xb3e8d040) 0 + primary-for QDirModel (0xb3e8d000) + QObject (0xb3e8c1a4) 0 + primary-for QAbstractItemModel (0xb3e8d040) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHeaderView) +8 QHeaderView::metaObject +12 QHeaderView::qt_metacast +16 QHeaderView::qt_metacall +20 QHeaderView::~QHeaderView +24 QHeaderView::~QHeaderView +28 QHeaderView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QHeaderView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QHeaderView::mousePressEvent +84 QHeaderView::mouseReleaseEvent +88 QHeaderView::mouseDoubleClickEvent +92 QHeaderView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QHeaderView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QHeaderView::viewportEvent +228 QHeaderView::scrollContentsBy +232 QHeaderView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QHeaderView::visualRect +248 QHeaderView::scrollTo +252 QHeaderView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QHeaderView::reset +268 QAbstractItemView::setRootIndex +272 QHeaderView::doItemsLayout +276 QAbstractItemView::selectAll +280 QHeaderView::dataChanged +284 QHeaderView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QHeaderView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QHeaderView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QHeaderView::moveCursor +344 QHeaderView::horizontalOffset +348 QHeaderView::verticalOffset +352 QHeaderView::isIndexHidden +356 QHeaderView::setSelection +360 QHeaderView::visualRegionForSelection +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QHeaderView::paintSection +388 QHeaderView::sectionSizeFromContents +392 (int (*)(...))-0x000000008 +396 (int (*)(...))(& _ZTI11QHeaderView) +400 QHeaderView::_ZThn8_N11QHeaderViewD1Ev +404 QHeaderView::_ZThn8_N11QHeaderViewD0Ev +408 QWidget::_ZThn8_NK7QWidget7devTypeEv +412 QWidget::_ZThn8_NK7QWidget11paintEngineEv +416 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=20 align=4 + base size=20 base align=4 +QHeaderView (0xb3e8d300) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 8u) + QAbstractItemView (0xb3e8d340) 0 + primary-for QHeaderView (0xb3e8d300) + QAbstractScrollArea (0xb3e8d380) 0 + primary-for QAbstractItemView (0xb3e8d340) + QFrame (0xb3e8d3c0) 0 + primary-for QAbstractScrollArea (0xb3e8d380) + QWidget (0xb3e9aa50) 0 + primary-for QFrame (0xb3e8d3c0) + QObject (0xb3ea321c) 0 + primary-for QWidget (0xb3e9aa50) + QPaintDevice (0xb3ea3258) 8 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 400u) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QItemDelegate) +8 QItemDelegate::metaObject +12 QItemDelegate::qt_metacast +16 QItemDelegate::qt_metacall +20 QItemDelegate::~QItemDelegate +24 QItemDelegate::~QItemDelegate +28 QObject::event +32 QItemDelegate::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QItemDelegate::paint +60 QItemDelegate::sizeHint +64 QItemDelegate::createEditor +68 QItemDelegate::setEditorData +72 QItemDelegate::setModelData +76 QItemDelegate::updateEditorGeometry +80 QItemDelegate::editorEvent +84 QItemDelegate::drawDisplay +88 QItemDelegate::drawDecoration +92 QItemDelegate::drawFocus +96 QItemDelegate::drawCheck + +Class QItemDelegate + size=8 align=4 + base size=8 base align=4 +QItemDelegate (0xb3e8d780) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 8u) + QAbstractItemDelegate (0xb3e8d7c0) 0 + primary-for QItemDelegate (0xb3e8d780) + QObject (0xb3ec06cc) 0 + primary-for QAbstractItemDelegate (0xb3e8d7c0) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +8 QItemEditorCreatorBase::~QItemEditorCreatorBase +12 QItemEditorCreatorBase::~QItemEditorCreatorBase +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=4 align=4 + base size=4 base align=4 +QItemEditorCreatorBase (0xb3ed4294) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 8u) + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb3ed4d98) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb3ed4d20) 0 + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QItemEditorFactory) +8 QItemEditorFactory::~QItemEditorFactory +12 QItemEditorFactory::~QItemEditorFactory +16 QItemEditorFactory::createEditor +20 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=8 align=4 + base size=8 base align=4 +QItemEditorFactory (0xb3ed47f8) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 8u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QListView) +8 QListView::metaObject +12 QListView::qt_metacast +16 QListView::qt_metacall +20 QListView::~QListView +24 QListView::~QListView +28 QListView::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI9QListView) +392 QListView::_ZThn8_N9QListViewD1Ev +396 QListView::_ZThn8_N9QListViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=20 align=4 + base size=20 base align=4 +QListView (0xb3edd140) 0 + vptr=((& QListView::_ZTV9QListView) + 8u) + QAbstractItemView (0xb3edd180) 0 + primary-for QListView (0xb3edd140) + QAbstractScrollArea (0xb3edd1c0) 0 + primary-for QAbstractItemView (0xb3edd180) + QFrame (0xb3edd200) 0 + primary-for QAbstractScrollArea (0xb3edd1c0) + QWidget (0xb3ee9d70) 0 + primary-for QFrame (0xb3edd200) + QObject (0xb3ed4e88) 0 + primary-for QWidget (0xb3ee9d70) + QPaintDevice (0xb3ef1000) 8 + vptr=((& QListView::_ZTV9QListView) + 392u) + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb3f0c780) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3f0c708) 0 + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QListWidgetItem) +8 QListWidgetItem::~QListWidgetItem +12 QListWidgetItem::~QListWidgetItem +16 QListWidgetItem::clone +20 QListWidgetItem::setBackgroundColor +24 QListWidgetItem::data +28 QListWidgetItem::setData +32 QListWidgetItem::operator< +36 QListWidgetItem::read +40 QListWidgetItem::write + +Class QListWidgetItem + size=24 align=4 + base size=24 base align=4 +QListWidgetItem (0xb3f0c258) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 8u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QListWidget) +8 QListWidget::metaObject +12 QListWidget::qt_metacast +16 QListWidget::qt_metacall +20 QListWidget::~QListWidget +24 QListWidget::~QListWidget +28 QListWidget::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QListWidget::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 QListWidget::mimeTypes +388 QListWidget::mimeData +392 QListWidget::dropMimeData +396 QListWidget::supportedDropActions +400 (int (*)(...))-0x000000008 +404 (int (*)(...))(& _ZTI11QListWidget) +408 QListWidget::_ZThn8_N11QListWidgetD1Ev +412 QListWidget::_ZThn8_N11QListWidgetD0Ev +416 QWidget::_ZThn8_NK7QWidget7devTypeEv +420 QWidget::_ZThn8_NK7QWidget11paintEngineEv +424 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=20 align=4 + base size=20 base align=4 +QListWidget (0xb3eddd40) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 8u) + QListView (0xb3eddd80) 0 + primary-for QListWidget (0xb3eddd40) + QAbstractItemView (0xb3edddc0) 0 + primary-for QListView (0xb3eddd80) + QAbstractScrollArea (0xb3edde00) 0 + primary-for QAbstractItemView (0xb3edddc0) + QFrame (0xb3edde40) 0 + primary-for QAbstractScrollArea (0xb3edde00) + QWidget (0xb3d3aa50) 0 + primary-for QFrame (0xb3edde40) + QObject (0xb3d40bf4) 0 + primary-for QWidget (0xb3d3aa50) + QPaintDevice (0xb3d40c30) 8 + vptr=((& QListWidget::_ZTV11QListWidget) + 408u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QProxyModel) +8 QProxyModel::metaObject +12 QProxyModel::qt_metacast +16 QProxyModel::qt_metacall +20 QProxyModel::~QProxyModel +24 QProxyModel::~QProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProxyModel::index +60 QProxyModel::parent +64 QProxyModel::rowCount +68 QProxyModel::columnCount +72 QProxyModel::hasChildren +76 QProxyModel::data +80 QProxyModel::setData +84 QProxyModel::headerData +88 QProxyModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QProxyModel::mimeTypes +104 QProxyModel::mimeData +108 QProxyModel::dropMimeData +112 QProxyModel::supportedDropActions +116 QProxyModel::insertRows +120 QProxyModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QProxyModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QProxyModel::flags +144 QProxyModel::sort +148 QAbstractItemModel::buddy +152 QProxyModel::match +156 QProxyModel::span +160 QProxyModel::submit +164 QProxyModel::revert +168 QProxyModel::setModel + +Class QProxyModel + size=8 align=4 + base size=8 base align=4 +QProxyModel (0xb3d5c480) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 8u) + QAbstractItemModel (0xb3d5c4c0) 0 + primary-for QProxyModel (0xb3d5c480) + QObject (0xb3d63a8c) 0 + primary-for QAbstractItemModel (0xb3d5c4c0) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +8 QSortFilterProxyModel::metaObject +12 QSortFilterProxyModel::qt_metacast +16 QSortFilterProxyModel::qt_metacall +20 QSortFilterProxyModel::~QSortFilterProxyModel +24 QSortFilterProxyModel::~QSortFilterProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QSortFilterProxyModel::index +60 QSortFilterProxyModel::parent +64 QSortFilterProxyModel::rowCount +68 QSortFilterProxyModel::columnCount +72 QSortFilterProxyModel::hasChildren +76 QSortFilterProxyModel::data +80 QSortFilterProxyModel::setData +84 QSortFilterProxyModel::headerData +88 QSortFilterProxyModel::setHeaderData +92 QAbstractProxyModel::itemData +96 QAbstractItemModel::setItemData +100 QSortFilterProxyModel::mimeTypes +104 QSortFilterProxyModel::mimeData +108 QSortFilterProxyModel::dropMimeData +112 QSortFilterProxyModel::supportedDropActions +116 QSortFilterProxyModel::insertRows +120 QSortFilterProxyModel::insertColumns +124 QSortFilterProxyModel::removeRows +128 QSortFilterProxyModel::removeColumns +132 QSortFilterProxyModel::fetchMore +136 QSortFilterProxyModel::canFetchMore +140 QSortFilterProxyModel::flags +144 QSortFilterProxyModel::sort +148 QSortFilterProxyModel::buddy +152 QSortFilterProxyModel::match +156 QSortFilterProxyModel::span +160 QAbstractProxyModel::submit +164 QAbstractProxyModel::revert +168 QSortFilterProxyModel::setSourceModel +172 QSortFilterProxyModel::mapToSource +176 QSortFilterProxyModel::mapFromSource +180 QSortFilterProxyModel::mapSelectionToSource +184 QSortFilterProxyModel::mapSelectionFromSource +188 QSortFilterProxyModel::filterAcceptsRow +192 QSortFilterProxyModel::filterAcceptsColumn +196 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=8 align=4 + base size=8 base align=4 +QSortFilterProxyModel (0xb3d5c780) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 8u) + QAbstractProxyModel (0xb3d5c7c0) 0 + primary-for QSortFilterProxyModel (0xb3d5c780) + QAbstractItemModel (0xb3d5c800) 0 + primary-for QAbstractProxyModel (0xb3d5c7c0) + QObject (0xb3d6d924) 0 + primary-for QAbstractItemModel (0xb3d5c800) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QStandardItem) +8 QStandardItem::~QStandardItem +12 QStandardItem::~QStandardItem +16 QStandardItem::data +20 QStandardItem::setData +24 QStandardItem::clone +28 QStandardItem::type +32 QStandardItem::read +36 QStandardItem::write +40 QStandardItem::operator< + +Class QStandardItem + size=8 align=4 + base size=8 base align=4 +QStandardItem (0xb3d8c744) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3df3168) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3df30f0) 0 + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QStandardItemModel) +8 QStandardItemModel::metaObject +12 QStandardItemModel::qt_metacast +16 QStandardItemModel::qt_metacall +20 QStandardItemModel::~QStandardItemModel +24 QStandardItemModel::~QStandardItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStandardItemModel::index +60 QStandardItemModel::parent +64 QStandardItemModel::rowCount +68 QStandardItemModel::columnCount +72 QStandardItemModel::hasChildren +76 QStandardItemModel::data +80 QStandardItemModel::setData +84 QStandardItemModel::headerData +88 QStandardItemModel::setHeaderData +92 QStandardItemModel::itemData +96 QStandardItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QStandardItemModel::supportedDropActions +116 QStandardItemModel::insertRows +120 QStandardItemModel::insertColumns +124 QStandardItemModel::removeRows +128 QStandardItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QStandardItemModel::flags +144 QStandardItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QStandardItemModel + size=8 align=4 + base size=8 base align=4 +QStandardItemModel (0xb3de2600) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 8u) + QAbstractItemModel (0xb3de2640) 0 + primary-for QStandardItemModel (0xb3de2600) + QObject (0xb3df3ca8) 0 + primary-for QAbstractItemModel (0xb3de2640) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QStringListModel) +8 QStringListModel::metaObject +12 QStringListModel::qt_metacast +16 QStringListModel::qt_metacall +20 QStringListModel::~QStringListModel +24 QStringListModel::~QStringListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 QStringListModel::rowCount +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 QStringListModel::data +80 QStringListModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QStringListModel::supportedDropActions +116 QStringListModel::insertRows +120 QAbstractItemModel::insertColumns +124 QStringListModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QStringListModel::flags +144 QStringListModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QStringListModel + size=12 align=4 + base size=12 base align=4 +QStringListModel (0xb3de2a40) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 8u) + QAbstractListModel (0xb3de2a80) 0 + primary-for QStringListModel (0xb3de2a40) + QAbstractItemModel (0xb3de2ac0) 0 + primary-for QAbstractListModel (0xb3de2a80) + QObject (0xb3c2f0f0) 0 + primary-for QAbstractItemModel (0xb3de2ac0) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QStyledItemDelegate) +8 QStyledItemDelegate::metaObject +12 QStyledItemDelegate::qt_metacast +16 QStyledItemDelegate::qt_metacall +20 QStyledItemDelegate::~QStyledItemDelegate +24 QStyledItemDelegate::~QStyledItemDelegate +28 QObject::event +32 QStyledItemDelegate::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyledItemDelegate::paint +60 QStyledItemDelegate::sizeHint +64 QStyledItemDelegate::createEditor +68 QStyledItemDelegate::setEditorData +72 QStyledItemDelegate::setModelData +76 QStyledItemDelegate::updateEditorGeometry +80 QStyledItemDelegate::editorEvent +84 QStyledItemDelegate::displayText +88 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=8 align=4 + base size=8 base align=4 +QStyledItemDelegate (0xb3de2d00) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 8u) + QAbstractItemDelegate (0xb3de2d40) 0 + primary-for QStyledItemDelegate (0xb3de2d00) + QObject (0xb3c2fbb8) 0 + primary-for QAbstractItemDelegate (0xb3de2d40) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTableView) +8 QTableView::metaObject +12 QTableView::qt_metacast +16 QTableView::qt_metacall +20 QTableView::~QTableView +24 QTableView::~QTableView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QTableView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTableView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QTableView::scrollContentsBy +232 QTableView::setModel +236 QTableView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QTableView::visualRect +248 QTableView::scrollTo +252 QTableView::indexAt +256 QTableView::sizeHintForRow +260 QTableView::sizeHintForColumn +264 QAbstractItemView::reset +268 QTableView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QTableView::selectionChanged +296 QTableView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTableView::updateGeometries +312 QTableView::verticalScrollbarAction +316 QTableView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTableView::moveCursor +344 QTableView::horizontalOffset +348 QTableView::verticalOffset +352 QTableView::isIndexHidden +356 QTableView::setSelection +360 QTableView::visualRegionForSelection +364 QTableView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QTableView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI10QTableView) +392 QTableView::_ZThn8_N10QTableViewD1Ev +396 QTableView::_ZThn8_N10QTableViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=20 align=4 + base size=20 base align=4 +QTableView (0xb3c4b000) 0 + vptr=((& QTableView::_ZTV10QTableView) + 8u) + QAbstractItemView (0xb3c4b040) 0 + primary-for QTableView (0xb3c4b000) + QAbstractScrollArea (0xb3c4b080) 0 + primary-for QAbstractItemView (0xb3c4b040) + QFrame (0xb3c4b0c0) 0 + primary-for QAbstractScrollArea (0xb3c4b080) + QWidget (0xb3c482d0) 0 + primary-for QFrame (0xb3c4b0c0) + QObject (0xb3c44780) 0 + primary-for QWidget (0xb3c482d0) + QPaintDevice (0xb3c447bc) 8 + vptr=((& QTableView::_ZTV10QTableView) + 392u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0xb3c62528) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb3c71294) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3c7121c) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTableWidgetItem) +8 QTableWidgetItem::~QTableWidgetItem +12 QTableWidgetItem::~QTableWidgetItem +16 QTableWidgetItem::clone +20 QTableWidgetItem::data +24 QTableWidgetItem::setData +28 QTableWidgetItem::operator< +32 QTableWidgetItem::read +36 QTableWidgetItem::write + +Class QTableWidgetItem + size=24 align=4 + base size=24 base align=4 +QTableWidgetItem (0xb3c62d5c) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 8u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTableWidget) +8 QTableWidget::metaObject +12 QTableWidget::qt_metacast +16 QTableWidget::qt_metacall +20 QTableWidget::~QTableWidget +24 QTableWidget::~QTableWidget +28 QTableWidget::event +32 QObject::eventFilter +36 QTableView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTableView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QTableWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QTableView::scrollContentsBy +232 QTableWidget::setModel +236 QTableView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QTableView::visualRect +248 QTableView::scrollTo +252 QTableView::indexAt +256 QTableView::sizeHintForRow +260 QTableView::sizeHintForColumn +264 QAbstractItemView::reset +268 QTableView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QTableView::selectionChanged +296 QTableView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTableView::updateGeometries +312 QTableView::verticalScrollbarAction +316 QTableView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTableView::moveCursor +344 QTableView::horizontalOffset +348 QTableView::verticalOffset +352 QTableView::isIndexHidden +356 QTableView::setSelection +360 QTableView::visualRegionForSelection +364 QTableView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QTableView::viewOptions +384 QTableWidget::mimeTypes +388 QTableWidget::mimeData +392 QTableWidget::dropMimeData +396 QTableWidget::supportedDropActions +400 (int (*)(...))-0x000000008 +404 (int (*)(...))(& _ZTI12QTableWidget) +408 QTableWidget::_ZThn8_N12QTableWidgetD1Ev +412 QTableWidget::_ZThn8_N12QTableWidgetD0Ev +416 QWidget::_ZThn8_NK7QWidget7devTypeEv +420 QWidget::_ZThn8_NK7QWidget11paintEngineEv +424 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=20 align=4 + base size=20 base align=4 +QTableWidget (0xb3c4bd80) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 8u) + QTableView (0xb3c4bdc0) 0 + primary-for QTableWidget (0xb3c4bd80) + QAbstractItemView (0xb3c4be00) 0 + primary-for QTableView (0xb3c4bdc0) + QAbstractScrollArea (0xb3c4be40) 0 + primary-for QAbstractItemView (0xb3c4be00) + QFrame (0xb3c4be80) 0 + primary-for QAbstractScrollArea (0xb3c4be40) + QWidget (0xb3c90dc0) 0 + primary-for QFrame (0xb3c4be80) + QObject (0xb3ca2654) 0 + primary-for QWidget (0xb3c90dc0) + QPaintDevice (0xb3ca2690) 8 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 408u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTreeView) +8 QTreeView::metaObject +12 QTreeView::qt_metacast +16 QTreeView::qt_metacall +20 QTreeView::~QTreeView +24 QTreeView::~QTreeView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QTreeView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTreeView::mousePressEvent +84 QTreeView::mouseReleaseEvent +88 QTreeView::mouseDoubleClickEvent +92 QTreeView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QTreeView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTreeView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QTreeView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTreeView::viewportEvent +228 QTreeView::scrollContentsBy +232 QTreeView::setModel +236 QTreeView::setSelectionModel +240 QTreeView::keyboardSearch +244 QTreeView::visualRect +248 QTreeView::scrollTo +252 QTreeView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QTreeView::sizeHintForColumn +264 QTreeView::reset +268 QTreeView::setRootIndex +272 QTreeView::doItemsLayout +276 QTreeView::selectAll +280 QTreeView::dataChanged +284 QTreeView::rowsInserted +288 QTreeView::rowsAboutToBeRemoved +292 QTreeView::selectionChanged +296 QTreeView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTreeView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QTreeView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTreeView::moveCursor +344 QTreeView::horizontalOffset +348 QTreeView::verticalOffset +352 QTreeView::isIndexHidden +356 QTreeView::setSelection +360 QTreeView::visualRegionForSelection +364 QTreeView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QTreeView::drawRow +388 QTreeView::drawBranches +392 (int (*)(...))-0x000000008 +396 (int (*)(...))(& _ZTI9QTreeView) +400 QTreeView::_ZThn8_N9QTreeViewD1Ev +404 QTreeView::_ZThn8_N9QTreeViewD0Ev +408 QWidget::_ZThn8_NK7QWidget7devTypeEv +412 QWidget::_ZThn8_NK7QWidget11paintEngineEv +416 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=20 align=4 + base size=20 base align=4 +QTreeView (0xb3cbe380) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 8u) + QAbstractItemView (0xb3cbe3c0) 0 + primary-for QTreeView (0xb3cbe380) + QAbstractScrollArea (0xb3cbe400) 0 + primary-for QAbstractItemView (0xb3cbe3c0) + QFrame (0xb3cbe440) 0 + primary-for QAbstractScrollArea (0xb3cbe400) + QWidget (0xb3cc9050) 0 + primary-for QFrame (0xb3cbe440) + QObject (0xb3cc621c) 0 + primary-for QWidget (0xb3cc9050) + QPaintDevice (0xb3cc6258) 8 + vptr=((& QTreeView::_ZTV9QTreeView) + 400u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3ce8a14) 0 + +Class QTreeWidgetItemIterator + size=12 align=4 + base size=12 base align=4 +QTreeWidgetItemIterator (0xb3ce8000) 0 + +Class QVector >:: + size=4 align=4 + base size=4 base align=4 +QVector >:: (0xb3b1c474) 0 + +Class QVector > + size=4 align=4 + base size=4 base align=4 +QVector > (0xb3b1c3fc) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3b1c8ac) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3b1c834) 0 + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QTreeWidgetItem) +8 QTreeWidgetItem::~QTreeWidgetItem +12 QTreeWidgetItem::~QTreeWidgetItem +16 QTreeWidgetItem::clone +20 QTreeWidgetItem::data +24 QTreeWidgetItem::setData +28 QTreeWidgetItem::operator< +32 QTreeWidgetItem::read +36 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=32 align=4 + base size=32 base align=4 +QTreeWidgetItem (0xb3d040f0) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 8u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTreeWidget) +8 QTreeWidget::metaObject +12 QTreeWidget::qt_metacast +16 QTreeWidget::qt_metacall +20 QTreeWidget::~QTreeWidget +24 QTreeWidget::~QTreeWidget +28 QTreeWidget::event +32 QObject::eventFilter +36 QTreeView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTreeView::mousePressEvent +84 QTreeView::mouseReleaseEvent +88 QTreeView::mouseDoubleClickEvent +92 QTreeView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QTreeView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTreeView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QTreeView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QTreeWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTreeView::viewportEvent +228 QTreeView::scrollContentsBy +232 QTreeWidget::setModel +236 QTreeView::setSelectionModel +240 QTreeView::keyboardSearch +244 QTreeView::visualRect +248 QTreeView::scrollTo +252 QTreeView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QTreeView::sizeHintForColumn +264 QTreeView::reset +268 QTreeView::setRootIndex +272 QTreeView::doItemsLayout +276 QTreeView::selectAll +280 QTreeView::dataChanged +284 QTreeView::rowsInserted +288 QTreeView::rowsAboutToBeRemoved +292 QTreeView::selectionChanged +296 QTreeView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTreeView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QTreeView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTreeView::moveCursor +344 QTreeView::horizontalOffset +348 QTreeView::verticalOffset +352 QTreeView::isIndexHidden +356 QTreeView::setSelection +360 QTreeView::visualRegionForSelection +364 QTreeView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QTreeView::drawRow +388 QTreeView::drawBranches +392 QTreeWidget::mimeTypes +396 QTreeWidget::mimeData +400 QTreeWidget::dropMimeData +404 QTreeWidget::supportedDropActions +408 (int (*)(...))-0x000000008 +412 (int (*)(...))(& _ZTI11QTreeWidget) +416 QTreeWidget::_ZThn8_N11QTreeWidgetD1Ev +420 QTreeWidget::_ZThn8_N11QTreeWidgetD0Ev +424 QWidget::_ZThn8_NK7QWidget7devTypeEv +428 QWidget::_ZThn8_NK7QWidget11paintEngineEv +432 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=20 align=4 + base size=20 base align=4 +QTreeWidget (0xb3b5a5c0) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 8u) + QTreeView (0xb3b5a600) 0 + primary-for QTreeWidget (0xb3b5a5c0) + QAbstractItemView (0xb3b5a640) 0 + primary-for QTreeView (0xb3b5a600) + QAbstractScrollArea (0xb3b5a680) 0 + primary-for QAbstractItemView (0xb3b5a640) + QFrame (0xb3b5a6c0) 0 + primary-for QAbstractScrollArea (0xb3b5a680) + QWidget (0xb3b6d0f0) 0 + primary-for QFrame (0xb3b5a6c0) + QObject (0xb3b698ac) 0 + primary-for QWidget (0xb3b6d0f0) + QPaintDevice (0xb3b698e8) 8 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 416u) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QApplication) +8 QApplication::metaObject +12 QApplication::qt_metacast +16 QApplication::qt_metacall +20 QApplication::~QApplication +24 QApplication::~QApplication +28 QApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QApplication::notify +60 QApplication::compressEvent +64 QApplication::x11EventFilter +68 QApplication::x11ClientMessage +72 QApplication::commitData +76 QApplication::saveState + +Class QApplication + size=8 align=4 + base size=8 base align=4 +QApplication (0xb3b5af00) 0 + vptr=((& QApplication::_ZTV12QApplication) + 8u) + QCoreApplication (0xb3b5af40) 0 + primary-for QApplication (0xb3b5af00) + QObject (0xb3b91438) 0 + primary-for QCoreApplication (0xb3b5af40) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QLayoutItem) +8 QLayoutItem::~QLayoutItem +12 QLayoutItem::~QLayoutItem +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 QLayoutItem::hasHeightForWidth +48 QLayoutItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QLayoutItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QLayoutItem + size=8 align=4 + base size=8 base align=4 +QLayoutItem (0xb3bbf5dc) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 8u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QSpacerItem) +8 QSpacerItem::~QSpacerItem +12 QSpacerItem::~QSpacerItem +16 QSpacerItem::sizeHint +20 QSpacerItem::minimumSize +24 QSpacerItem::maximumSize +28 QSpacerItem::expandingDirections +32 QSpacerItem::setGeometry +36 QSpacerItem::geometry +40 QSpacerItem::isEmpty +44 QLayoutItem::hasHeightForWidth +48 QLayoutItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QLayoutItem::widget +64 QLayoutItem::layout +68 QSpacerItem::spacerItem + +Class QSpacerItem + size=36 align=4 + base size=36 base align=4 +QSpacerItem (0xb3bb3840) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 8u) + QLayoutItem (0xb3bbfb04) 0 + primary-for QSpacerItem (0xb3bb3840) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWidgetItem) +8 QWidgetItem::~QWidgetItem +12 QWidgetItem::~QWidgetItem +16 QWidgetItem::sizeHint +20 QWidgetItem::minimumSize +24 QWidgetItem::maximumSize +28 QWidgetItem::expandingDirections +32 QWidgetItem::setGeometry +36 QWidgetItem::geometry +40 QWidgetItem::isEmpty +44 QWidgetItem::hasHeightForWidth +48 QWidgetItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QWidgetItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QWidgetItem + size=12 align=4 + base size=12 base align=4 +QWidgetItem (0xb3bb3980) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 8u) + QLayoutItem (0xb3bd0168) 0 + primary-for QWidgetItem (0xb3bb3980) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWidgetItemV2) +8 QWidgetItemV2::~QWidgetItemV2 +12 QWidgetItemV2::~QWidgetItemV2 +16 QWidgetItemV2::sizeHint +20 QWidgetItemV2::minimumSize +24 QWidgetItemV2::maximumSize +28 QWidgetItem::expandingDirections +32 QWidgetItem::setGeometry +36 QWidgetItem::geometry +40 QWidgetItem::isEmpty +44 QWidgetItem::hasHeightForWidth +48 QWidgetItemV2::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QWidgetItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=68 align=4 + base size=68 base align=4 +QWidgetItemV2 (0xb3bb3ac0) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 8u) + QWidgetItem (0xb3bb3b00) 0 + primary-for QWidgetItemV2 (0xb3bb3ac0) + QLayoutItem (0xb3bd0690) 0 + primary-for QWidgetItem (0xb3bb3b00) + +Class QLayoutIterator + size=8 align=4 + base size=8 base align=4 +QLayoutIterator (0xb3bd0e10) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QLayout) +8 QLayout::metaObject +12 QLayout::qt_metacast +16 QLayout::qt_metacall +20 QLayout::~QLayout +24 QLayout::~QLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLayout::invalidate +60 QLayout::geometry +64 __cxa_pure_virtual +68 QLayout::expandingDirections +72 QLayout::minimumSize +76 QLayout::maximumSize +80 QLayout::setGeometry +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 QLayout::indexOf +96 __cxa_pure_virtual +100 QLayout::isEmpty +104 QLayout::layout +108 (int (*)(...))-0x000000008 +112 (int (*)(...))(& _ZTI7QLayout) +116 QLayout::_ZThn8_N7QLayoutD1Ev +120 QLayout::_ZThn8_N7QLayoutD0Ev +124 __cxa_pure_virtual +128 QLayout::_ZThn8_NK7QLayout11minimumSizeEv +132 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +136 QLayout::_ZThn8_NK7QLayout19expandingDirectionsEv +140 QLayout::_ZThn8_N7QLayout11setGeometryERK5QRect +144 QLayout::_ZThn8_NK7QLayout8geometryEv +148 QLayout::_ZThn8_NK7QLayout7isEmptyEv +152 QLayoutItem::hasHeightForWidth +156 QLayoutItem::heightForWidth +160 QLayoutItem::minimumHeightForWidth +164 QLayout::_ZThn8_N7QLayout10invalidateEv +168 QLayoutItem::widget +172 QLayout::_ZThn8_N7QLayout6layoutEv +176 QLayoutItem::spacerItem + +Class QLayout + size=16 align=4 + base size=16 base align=4 +QLayout (0xb3be51e0) 0 + vptr=((& QLayout::_ZTV7QLayout) + 8u) + QObject (0xb3be1870) 0 + primary-for QLayout (0xb3be51e0) + QLayoutItem (0xb3be18ac) 8 + vptr=((& QLayout::_ZTV7QLayout) + 116u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QGridLayout) +8 QGridLayout::metaObject +12 QGridLayout::qt_metacast +16 QGridLayout::qt_metacall +20 QGridLayout::~QGridLayout +24 QGridLayout::~QGridLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGridLayout::invalidate +60 QLayout::geometry +64 QGridLayout::addItem +68 QGridLayout::expandingDirections +72 QGridLayout::minimumSize +76 QGridLayout::maximumSize +80 QGridLayout::setGeometry +84 QGridLayout::itemAt +88 QGridLayout::takeAt +92 QLayout::indexOf +96 QGridLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QGridLayout::sizeHint +112 QGridLayout::hasHeightForWidth +116 QGridLayout::heightForWidth +120 QGridLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QGridLayout) +132 QGridLayout::_ZThn8_N11QGridLayoutD1Ev +136 QGridLayout::_ZThn8_N11QGridLayoutD0Ev +140 QGridLayout::_ZThn8_NK11QGridLayout8sizeHintEv +144 QGridLayout::_ZThn8_NK11QGridLayout11minimumSizeEv +148 QGridLayout::_ZThn8_NK11QGridLayout11maximumSizeEv +152 QGridLayout::_ZThn8_NK11QGridLayout19expandingDirectionsEv +156 QGridLayout::_ZThn8_N11QGridLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QGridLayout::_ZThn8_NK11QGridLayout17hasHeightForWidthEv +172 QGridLayout::_ZThn8_NK11QGridLayout14heightForWidthEi +176 QGridLayout::_ZThn8_NK11QGridLayout21minimumHeightForWidthEi +180 QGridLayout::_ZThn8_N11QGridLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QGridLayout + size=16 align=4 + base size=16 base align=4 +QGridLayout (0xb3bfc400) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 8u) + QLayout (0xb3bf5aa0) 0 + primary-for QGridLayout (0xb3bfc400) + QObject (0xb3bffca8) 0 + primary-for QLayout (0xb3bf5aa0) + QLayoutItem (0xb3bffce4) 8 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 132u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QBoxLayout) +8 QBoxLayout::metaObject +12 QBoxLayout::qt_metacast +16 QBoxLayout::qt_metacall +20 QBoxLayout::~QBoxLayout +24 QBoxLayout::~QBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI10QBoxLayout) +132 QBoxLayout::_ZThn8_N10QBoxLayoutD1Ev +136 QBoxLayout::_ZThn8_N10QBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QBoxLayout + size=16 align=4 + base size=16 base align=4 +QBoxLayout (0xb3bfcb00) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 8u) + QLayout (0xb3a1e910) 0 + primary-for QBoxLayout (0xb3bfcb00) + QObject (0xb3a281e0) 0 + primary-for QLayout (0xb3a1e910) + QLayoutItem (0xb3a2821c) 8 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 132u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHBoxLayout) +8 QHBoxLayout::metaObject +12 QHBoxLayout::qt_metacast +16 QHBoxLayout::qt_metacall +20 QHBoxLayout::~QHBoxLayout +24 QHBoxLayout::~QHBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QHBoxLayout) +132 QHBoxLayout::_ZThn8_N11QHBoxLayoutD1Ev +136 QHBoxLayout::_ZThn8_N11QHBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QHBoxLayout + size=16 align=4 + base size=16 base align=4 +QHBoxLayout (0xb3bfce00) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 8u) + QBoxLayout (0xb3bfce40) 0 + primary-for QHBoxLayout (0xb3bfce00) + QLayout (0xb3a3a1e0) 0 + primary-for QBoxLayout (0xb3bfce40) + QObject (0xb3a367bc) 0 + primary-for QLayout (0xb3a3a1e0) + QLayoutItem (0xb3a367f8) 8 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 132u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QVBoxLayout) +8 QVBoxLayout::metaObject +12 QVBoxLayout::qt_metacast +16 QVBoxLayout::qt_metacall +20 QVBoxLayout::~QVBoxLayout +24 QVBoxLayout::~QVBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QVBoxLayout) +132 QVBoxLayout::_ZThn8_N11QVBoxLayoutD1Ev +136 QVBoxLayout::_ZThn8_N11QVBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QVBoxLayout + size=16 align=4 + base size=16 base align=4 +QVBoxLayout (0xb3a46080) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 8u) + QBoxLayout (0xb3a460c0) 0 + primary-for QVBoxLayout (0xb3a46080) + QLayout (0xb3a40f50) 0 + primary-for QBoxLayout (0xb3a460c0) + QObject (0xb3a4730c) 0 + primary-for QLayout (0xb3a40f50) + QLayoutItem (0xb3a47348) 8 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 132u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QClipboard) +8 QClipboard::metaObject +12 QClipboard::qt_metacast +16 QClipboard::qt_metacall +20 QClipboard::~QClipboard +24 QClipboard::~QClipboard +28 QClipboard::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QClipboard::connectNotify +52 QObject::disconnectNotify + +Class QClipboard + size=8 align=4 + base size=8 base align=4 +QClipboard (0xb3a46300) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 8u) + QObject (0xb3a47e88) 0 + primary-for QClipboard (0xb3a46300) + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDesktopWidget) +8 QDesktopWidget::metaObject +12 QDesktopWidget::qt_metacast +16 QDesktopWidget::qt_metacall +20 QDesktopWidget::~QDesktopWidget +24 QDesktopWidget::~QDesktopWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDesktopWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI14QDesktopWidget) +232 QDesktopWidget::_ZThn8_N14QDesktopWidgetD1Ev +236 QDesktopWidget::_ZThn8_N14QDesktopWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=20 align=4 + base size=20 base align=4 +QDesktopWidget (0xb3a465c0) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 8u) + QWidget (0xb3a60f50) 0 + primary-for QDesktopWidget (0xb3a465c0) + QObject (0xb3a664b0) 0 + primary-for QWidget (0xb3a60f50) + QPaintDevice (0xb3a664ec) 8 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 232u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFormLayout) +8 QFormLayout::metaObject +12 QFormLayout::qt_metacast +16 QFormLayout::qt_metacall +20 QFormLayout::~QFormLayout +24 QFormLayout::~QFormLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFormLayout::invalidate +60 QLayout::geometry +64 QFormLayout::addItem +68 QFormLayout::expandingDirections +72 QFormLayout::minimumSize +76 QLayout::maximumSize +80 QFormLayout::setGeometry +84 QFormLayout::itemAt +88 QFormLayout::takeAt +92 QLayout::indexOf +96 QFormLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QFormLayout::sizeHint +112 QFormLayout::hasHeightForWidth +116 QFormLayout::heightForWidth +120 (int (*)(...))-0x000000008 +124 (int (*)(...))(& _ZTI11QFormLayout) +128 QFormLayout::_ZThn8_N11QFormLayoutD1Ev +132 QFormLayout::_ZThn8_N11QFormLayoutD0Ev +136 QFormLayout::_ZThn8_NK11QFormLayout8sizeHintEv +140 QFormLayout::_ZThn8_NK11QFormLayout11minimumSizeEv +144 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +148 QFormLayout::_ZThn8_NK11QFormLayout19expandingDirectionsEv +152 QFormLayout::_ZThn8_N11QFormLayout11setGeometryERK5QRect +156 QLayout::_ZThn8_NK7QLayout8geometryEv +160 QLayout::_ZThn8_NK7QLayout7isEmptyEv +164 QFormLayout::_ZThn8_NK11QFormLayout17hasHeightForWidthEv +168 QFormLayout::_ZThn8_NK11QFormLayout14heightForWidthEi +172 QLayoutItem::minimumHeightForWidth +176 QFormLayout::_ZThn8_N11QFormLayout10invalidateEv +180 QLayoutItem::widget +184 QLayout::_ZThn8_N7QLayout6layoutEv +188 QLayoutItem::spacerItem + +Class QFormLayout + size=16 align=4 + base size=16 base align=4 +QFormLayout (0xb3a46980) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 8u) + QLayout (0xb3a6db90) 0 + primary-for QFormLayout (0xb3a46980) + QObject (0xb3a75474) 0 + primary-for QLayout (0xb3a6db90) + QLayoutItem (0xb3a754b0) 8 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 128u) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSessionManager) +8 QSessionManager::metaObject +12 QSessionManager::qt_metacast +16 QSessionManager::qt_metacall +20 QSessionManager::~QSessionManager +24 QSessionManager::~QSessionManager +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSessionManager + size=8 align=4 + base size=8 base align=4 +QSessionManager (0xb3a46c80) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 8u) + QObject (0xb3a88834) 0 + primary-for QSessionManager (0xb3a46c80) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QShortcut) +8 QShortcut::metaObject +12 QShortcut::qt_metacast +16 QShortcut::qt_metacall +20 QShortcut::~QShortcut +24 QShortcut::~QShortcut +28 QShortcut::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QShortcut + size=8 align=4 + base size=8 base align=4 +QShortcut (0xb3a46f40) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 8u) + QObject (0xb3a9a1e0) 0 + primary-for QShortcut (0xb3a46f40) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QSound) +8 QSound::metaObject +12 QSound::qt_metacast +16 QSound::qt_metacall +20 QSound::~QSound +24 QSound::~QSound +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSound + size=8 align=4 + base size=8 base align=4 +QSound (0xb3aa1240) 0 + vptr=((& QSound::_ZTV6QSound) + 8u) + QObject (0xb3a9ac6c) 0 + primary-for QSound (0xb3aa1240) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QStackedLayout) +8 QStackedLayout::metaObject +12 QStackedLayout::qt_metacast +16 QStackedLayout::qt_metacall +20 QStackedLayout::~QStackedLayout +24 QStackedLayout::~QStackedLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLayout::invalidate +60 QLayout::geometry +64 QStackedLayout::addItem +68 QLayout::expandingDirections +72 QStackedLayout::minimumSize +76 QLayout::maximumSize +80 QStackedLayout::setGeometry +84 QStackedLayout::itemAt +88 QStackedLayout::takeAt +92 QLayout::indexOf +96 QStackedLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QStackedLayout::sizeHint +112 (int (*)(...))-0x000000008 +116 (int (*)(...))(& _ZTI14QStackedLayout) +120 QStackedLayout::_ZThn8_N14QStackedLayoutD1Ev +124 QStackedLayout::_ZThn8_N14QStackedLayoutD0Ev +128 QStackedLayout::_ZThn8_NK14QStackedLayout8sizeHintEv +132 QStackedLayout::_ZThn8_NK14QStackedLayout11minimumSizeEv +136 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +140 QLayout::_ZThn8_NK7QLayout19expandingDirectionsEv +144 QStackedLayout::_ZThn8_N14QStackedLayout11setGeometryERK5QRect +148 QLayout::_ZThn8_NK7QLayout8geometryEv +152 QLayout::_ZThn8_NK7QLayout7isEmptyEv +156 QLayoutItem::hasHeightForWidth +160 QLayoutItem::heightForWidth +164 QLayoutItem::minimumHeightForWidth +168 QLayout::_ZThn8_N7QLayout10invalidateEv +172 QLayoutItem::widget +176 QLayout::_ZThn8_N7QLayout6layoutEv +180 QLayoutItem::spacerItem + +Class QStackedLayout + size=16 align=4 + base size=16 base align=4 +QStackedLayout (0xb3aa1540) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 8u) + QLayout (0xb3aadd70) 0 + primary-for QStackedLayout (0xb3aa1540) + QObject (0xb3aaf690) 0 + primary-for QLayout (0xb3aadd70) + QLayoutItem (0xb3aaf6cc) 8 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 120u) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0xb3ac0708) 0 empty + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0xb3ac0a14) 0 empty + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWidgetAction) +8 QWidgetAction::metaObject +12 QWidgetAction::qt_metacast +16 QWidgetAction::qt_metacall +20 QWidgetAction::~QWidgetAction +24 QWidgetAction::~QWidgetAction +28 QWidgetAction::event +32 QWidgetAction::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidgetAction::createWidget +60 QWidgetAction::deleteWidget + +Class QWidgetAction + size=8 align=4 + base size=8 base align=4 +QWidgetAction (0xb3aa1940) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 8u) + QAction (0xb3aa1980) 0 + primary-for QWidgetAction (0xb3aa1940) + QObject (0xb3ac0a8c) 0 + primary-for QAction (0xb3aa1980) + +Class QColormap + size=4 align=4 + base size=4 base align=4 +QColormap (0xb3ad2654) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0xb3ad2a8c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3ad2ce4) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3ae1564) 0 + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPaintEngine) +8 QPaintEngine::~QPaintEngine +12 QPaintEngine::~QPaintEngine +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QPaintEngine::drawRects +32 QPaintEngine::drawRects +36 QPaintEngine::drawLines +40 QPaintEngine::drawLines +44 QPaintEngine::drawEllipse +48 QPaintEngine::drawEllipse +52 QPaintEngine::drawPath +56 QPaintEngine::drawPoints +60 QPaintEngine::drawPoints +64 QPaintEngine::drawPolygon +68 QPaintEngine::drawPolygon +72 __cxa_pure_virtual +76 QPaintEngine::drawTextItem +80 QPaintEngine::drawTiledPixmap +84 QPaintEngine::drawImage +88 QPaintEngine::coordinateOffset +92 __cxa_pure_virtual + +Class QPaintEngine + size=20 align=4 + base size=20 base align=4 +QPaintEngine (0xb3ad2dd4) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3afb744) 0 + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0xb3afb3fc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3b10438) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QPrinter) +8 QPrinter::~QPrinter +12 QPrinter::~QPrinter +16 QPrinter::devType +20 QPrinter::paintEngine +24 QPrinter::metric + +Class QPrinter + size=12 align=4 + base size=12 base align=4 +QPrinter (0xb3afd4c0) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 8u) + QPaintDevice (0xb39457f8) 0 + primary-for QPrinter (0xb3afd4c0) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPrintEngine) +8 QPrintEngine::~QPrintEngine +12 QPrintEngine::~QPrintEngine +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual + +Class QPrintEngine + size=4 align=4 + base size=4 base align=4 +QPrintEngine (0xb3964960) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 8u) + +Class QPrinterInfo + size=4 align=4 + base size=4 base align=4 +QPrinterInfo (0xb39774ec) 0 + +Class QStylePainter + size=12 align=4 + base size=12 base align=4 +QStylePainter (0xb3afda40) 0 + QPainter (0xb3977f78) 0 + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCommonStyle) +8 QCommonStyle::metaObject +12 QCommonStyle::qt_metacast +16 QCommonStyle::qt_metacall +20 QCommonStyle::~QCommonStyle +24 QCommonStyle::~QCommonStyle +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyle::polish +60 QStyle::unpolish +64 QStyle::polish +68 QStyle::unpolish +72 QStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 QCommonStyle::drawPrimitive +100 QCommonStyle::drawControl +104 QCommonStyle::subElementRect +108 QCommonStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QCommonStyle::subControlRect +120 QCommonStyle::pixelMetric +124 QCommonStyle::sizeFromContents +128 QCommonStyle::styleHint +132 QCommonStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=8 align=4 + base size=8 base align=4 +QCommonStyle (0xb3afdf00) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 8u) + QStyle (0xb3afdf40) 0 + primary-for QCommonStyle (0xb3afdf00) + QObject (0xb398bac8) 0 + primary-for QStyle (0xb3afdf40) + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb399add4) 0 + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMotifStyle) +8 QMotifStyle::metaObject +12 QMotifStyle::qt_metacast +16 QMotifStyle::qt_metacall +20 QMotifStyle::~QMotifStyle +24 QMotifStyle::~QMotifStyle +28 QMotifStyle::event +32 QMotifStyle::eventFilter +36 QMotifStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMotifStyle::polish +60 QMotifStyle::unpolish +64 QMotifStyle::polish +68 QMotifStyle::unpolish +72 QMotifStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QMotifStyle::standardPalette +96 QMotifStyle::drawPrimitive +100 QMotifStyle::drawControl +104 QMotifStyle::subElementRect +108 QMotifStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QMotifStyle::subControlRect +120 QMotifStyle::pixelMetric +124 QMotifStyle::sizeFromContents +128 QMotifStyle::styleHint +132 QMotifStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=16 align=4 + base size=13 base align=4 +QMotifStyle (0xb39a0200) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 8u) + QCommonStyle (0xb39a0240) 0 + primary-for QMotifStyle (0xb39a0200) + QStyle (0xb39a0280) 0 + primary-for QCommonStyle (0xb39a0240) + QObject (0xb399aa14) 0 + primary-for QStyle (0xb39a0280) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QCDEStyle) +8 QCDEStyle::metaObject +12 QCDEStyle::qt_metacast +16 QCDEStyle::qt_metacall +20 QCDEStyle::~QCDEStyle +24 QCDEStyle::~QCDEStyle +28 QMotifStyle::event +32 QMotifStyle::eventFilter +36 QMotifStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMotifStyle::polish +60 QMotifStyle::unpolish +64 QMotifStyle::polish +68 QMotifStyle::unpolish +72 QMotifStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QCDEStyle::standardPalette +96 QCDEStyle::drawPrimitive +100 QCDEStyle::drawControl +104 QMotifStyle::subElementRect +108 QMotifStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QMotifStyle::subControlRect +120 QCDEStyle::pixelMetric +124 QMotifStyle::sizeFromContents +128 QMotifStyle::styleHint +132 QMotifStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=16 align=4 + base size=13 base align=4 +QCDEStyle (0xb39a0580) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 8u) + QMotifStyle (0xb39a05c0) 0 + primary-for QCDEStyle (0xb39a0580) + QCommonStyle (0xb39a0600) 0 + primary-for QMotifStyle (0xb39a05c0) + QStyle (0xb39a0640) 0 + primary-for QCommonStyle (0xb39a0600) + QObject (0xb39b38ac) 0 + primary-for QStyle (0xb39a0640) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWindowsStyle) +8 QWindowsStyle::metaObject +12 QWindowsStyle::qt_metacast +16 QWindowsStyle::qt_metacall +20 QWindowsStyle::~QWindowsStyle +24 QWindowsStyle::~QWindowsStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 QWindowsStyle::drawPrimitive +100 QWindowsStyle::drawControl +104 QWindowsStyle::subElementRect +108 QWindowsStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QCommonStyle::subControlRect +120 QWindowsStyle::pixelMetric +124 QWindowsStyle::sizeFromContents +128 QWindowsStyle::styleHint +132 QWindowsStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=12 align=4 + base size=12 base align=4 +QWindowsStyle (0xb39a0880) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 8u) + QCommonStyle (0xb39a08c0) 0 + primary-for QWindowsStyle (0xb39a0880) + QStyle (0xb39a0900) 0 + primary-for QCommonStyle (0xb39a08c0) + QObject (0xb39c803c) 0 + primary-for QStyle (0xb39a0900) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCleanlooksStyle) +8 QCleanlooksStyle::metaObject +12 QCleanlooksStyle::qt_metacast +16 QCleanlooksStyle::qt_metacall +20 QCleanlooksStyle::~QCleanlooksStyle +24 QCleanlooksStyle::~QCleanlooksStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCleanlooksStyle::polish +60 QCleanlooksStyle::unpolish +64 QCleanlooksStyle::polish +68 QCleanlooksStyle::unpolish +72 QCleanlooksStyle::polish +76 QStyle::itemTextRect +80 QCleanlooksStyle::itemPixmapRect +84 QCleanlooksStyle::drawItemText +88 QCleanlooksStyle::drawItemPixmap +92 QCleanlooksStyle::standardPalette +96 QCleanlooksStyle::drawPrimitive +100 QCleanlooksStyle::drawControl +104 QCleanlooksStyle::subElementRect +108 QCleanlooksStyle::drawComplexControl +112 QCleanlooksStyle::hitTestComplexControl +116 QCleanlooksStyle::subControlRect +120 QCleanlooksStyle::pixelMetric +124 QCleanlooksStyle::sizeFromContents +128 QCleanlooksStyle::styleHint +132 QCleanlooksStyle::standardPixmap +136 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=12 align=4 + base size=12 base align=4 +QCleanlooksStyle (0xb39a0bc0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 8u) + QWindowsStyle (0xb39a0c00) 0 + primary-for QCleanlooksStyle (0xb39a0bc0) + QCommonStyle (0xb39a0c40) 0 + primary-for QWindowsStyle (0xb39a0c00) + QStyle (0xb39a0c80) 0 + primary-for QCommonStyle (0xb39a0c40) + QObject (0xb39c8e10) 0 + primary-for QStyle (0xb39a0c80) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QPlastiqueStyle) +8 QPlastiqueStyle::metaObject +12 QPlastiqueStyle::qt_metacast +16 QPlastiqueStyle::qt_metacall +20 QPlastiqueStyle::~QPlastiqueStyle +24 QPlastiqueStyle::~QPlastiqueStyle +28 QObject::event +32 QPlastiqueStyle::eventFilter +36 QPlastiqueStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QPlastiqueStyle::polish +60 QPlastiqueStyle::unpolish +64 QPlastiqueStyle::polish +68 QPlastiqueStyle::unpolish +72 QPlastiqueStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QPlastiqueStyle::standardPalette +96 QPlastiqueStyle::drawPrimitive +100 QPlastiqueStyle::drawControl +104 QPlastiqueStyle::subElementRect +108 QPlastiqueStyle::drawComplexControl +112 QPlastiqueStyle::hitTestComplexControl +116 QPlastiqueStyle::subControlRect +120 QPlastiqueStyle::pixelMetric +124 QPlastiqueStyle::sizeFromContents +128 QPlastiqueStyle::styleHint +132 QPlastiqueStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=16 align=4 + base size=16 base align=4 +QPlastiqueStyle (0xb39a0f40) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 8u) + QWindowsStyle (0xb39a0f80) 0 + primary-for QPlastiqueStyle (0xb39a0f40) + QCommonStyle (0xb39a0fc0) 0 + primary-for QWindowsStyle (0xb39a0f80) + QStyle (0xb39e7000) 0 + primary-for QCommonStyle (0xb39a0fc0) + QObject (0xb39dcb40) 0 + primary-for QStyle (0xb39e7000) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0xb39f0a8c) 0 empty + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +8 QStyleFactoryInterface::~QStyleFactoryInterface +12 QStyleFactoryInterface::~QStyleFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=4 align=4 + base size=4 base align=4 +QStyleFactoryInterface (0xb39e72c0) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 8u) + QFactoryInterface (0xb39f0ac8) 0 nearly-empty + primary-for QStyleFactoryInterface (0xb39e72c0) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QStylePlugin) +8 QStylePlugin::metaObject +12 QStylePlugin::qt_metacast +16 QStylePlugin::qt_metacall +20 QStylePlugin::~QStylePlugin +24 QStylePlugin::~QStylePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI12QStylePlugin) +72 QStylePlugin::_ZThn8_N12QStylePluginD1Ev +76 QStylePlugin::_ZThn8_N12QStylePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QStylePlugin + size=12 align=4 + base size=12 base align=4 +QStylePlugin (0xb39f3c80) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 8u) + QObject (0xb39f0e10) 0 + primary-for QStylePlugin (0xb39f3c80) + QStyleFactoryInterface (0xb39e7480) 8 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 72u) + QFactoryInterface (0xb39f0e4c) 8 nearly-empty + primary-for QStyleFactoryInterface (0xb39e7480) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QWindowsCEStyle) +8 QWindowsCEStyle::metaObject +12 QWindowsCEStyle::qt_metacast +16 QWindowsCEStyle::qt_metacall +20 QWindowsCEStyle::~QWindowsCEStyle +24 QWindowsCEStyle::~QWindowsCEStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsCEStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsCEStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsCEStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QWindowsCEStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsCEStyle::standardPalette +96 QWindowsCEStyle::drawPrimitive +100 QWindowsCEStyle::drawControl +104 QWindowsCEStyle::subElementRect +108 QWindowsCEStyle::drawComplexControl +112 QWindowsCEStyle::hitTestComplexControl +116 QWindowsCEStyle::subControlRect +120 QWindowsCEStyle::pixelMetric +124 QWindowsCEStyle::sizeFromContents +128 QWindowsCEStyle::styleHint +132 QWindowsCEStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=12 align=4 + base size=12 base align=4 +QWindowsCEStyle (0xb39e76c0) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 8u) + QWindowsStyle (0xb39e7700) 0 + primary-for QWindowsCEStyle (0xb39e76c0) + QCommonStyle (0xb39e7740) 0 + primary-for QWindowsStyle (0xb39e7700) + QStyle (0xb39e7780) 0 + primary-for QCommonStyle (0xb39e7740) + QObject (0xb3a025a0) 0 + primary-for QStyle (0xb39e7780) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +8 QWindowsMobileStyle::metaObject +12 QWindowsMobileStyle::qt_metacast +16 QWindowsMobileStyle::qt_metacall +20 QWindowsMobileStyle::~QWindowsMobileStyle +24 QWindowsMobileStyle::~QWindowsMobileStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsMobileStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsMobileStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsMobileStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsMobileStyle::standardPalette +96 QWindowsMobileStyle::drawPrimitive +100 QWindowsMobileStyle::drawControl +104 QWindowsMobileStyle::subElementRect +108 QWindowsMobileStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QWindowsMobileStyle::subControlRect +120 QWindowsMobileStyle::pixelMetric +124 QWindowsMobileStyle::sizeFromContents +128 QWindowsMobileStyle::styleHint +132 QWindowsMobileStyle::standardPixmap +136 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=12 align=4 + base size=12 base align=4 +QWindowsMobileStyle (0xb39e79c0) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 8u) + QWindowsStyle (0xb39e7a00) 0 + primary-for QWindowsMobileStyle (0xb39e79c0) + QCommonStyle (0xb39e7a40) 0 + primary-for QWindowsStyle (0xb39e7a00) + QStyle (0xb39e7a80) 0 + primary-for QCommonStyle (0xb39e7a40) + QObject (0xb381503c) 0 + primary-for QStyle (0xb39e7a80) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QWindowsXPStyle) +8 QWindowsXPStyle::metaObject +12 QWindowsXPStyle::qt_metacast +16 QWindowsXPStyle::qt_metacall +20 QWindowsXPStyle::~QWindowsXPStyle +24 QWindowsXPStyle::~QWindowsXPStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsXPStyle::polish +60 QWindowsXPStyle::unpolish +64 QWindowsXPStyle::polish +68 QWindowsXPStyle::unpolish +72 QWindowsXPStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsXPStyle::standardPalette +96 QWindowsXPStyle::drawPrimitive +100 QWindowsXPStyle::drawControl +104 QWindowsXPStyle::subElementRect +108 QWindowsXPStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QWindowsXPStyle::subControlRect +120 QWindowsXPStyle::pixelMetric +124 QWindowsXPStyle::sizeFromContents +128 QWindowsXPStyle::styleHint +132 QWindowsXPStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=16 align=4 + base size=16 base align=4 +QWindowsXPStyle (0xb39e7d40) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 8u) + QWindowsStyle (0xb39e7d80) 0 + primary-for QWindowsXPStyle (0xb39e7d40) + QCommonStyle (0xb39e7dc0) 0 + primary-for QWindowsStyle (0xb39e7d80) + QStyle (0xb39e7e00) 0 + primary-for QCommonStyle (0xb39e7dc0) + QObject (0xb3815bb8) 0 + primary-for QStyle (0xb39e7e00) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +8 QWindowsVistaStyle::metaObject +12 QWindowsVistaStyle::qt_metacast +16 QWindowsVistaStyle::qt_metacall +20 QWindowsVistaStyle::~QWindowsVistaStyle +24 QWindowsVistaStyle::~QWindowsVistaStyle +28 QWindowsVistaStyle::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsVistaStyle::polish +60 QWindowsVistaStyle::unpolish +64 QWindowsVistaStyle::polish +68 QWindowsVistaStyle::unpolish +72 QWindowsVistaStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsVistaStyle::standardPalette +96 QWindowsVistaStyle::drawPrimitive +100 QWindowsVistaStyle::drawControl +104 QWindowsVistaStyle::subElementRect +108 QWindowsVistaStyle::drawComplexControl +112 QWindowsVistaStyle::hitTestComplexControl +116 QWindowsVistaStyle::subControlRect +120 QWindowsVistaStyle::pixelMetric +124 QWindowsVistaStyle::sizeFromContents +128 QWindowsVistaStyle::styleHint +132 QWindowsVistaStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=16 align=4 + base size=16 base align=4 +QWindowsVistaStyle (0xb38330c0) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 8u) + QWindowsXPStyle (0xb3833100) 0 + primary-for QWindowsVistaStyle (0xb38330c0) + QWindowsStyle (0xb3833140) 0 + primary-for QWindowsXPStyle (0xb3833100) + QCommonStyle (0xb3833180) 0 + primary-for QWindowsStyle (0xb3833140) + QStyle (0xb38331c0) 0 + primary-for QCommonStyle (0xb3833180) + QObject (0xb382c99c) 0 + primary-for QStyle (0xb38331c0) + +Class QTextLength + size=12 align=4 + base size=12 base align=4 +QTextLength (0xb383e7f8) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb3858258) 0 + +Class QTextFormat + size=8 align=4 + base size=8 base align=4 +QTextFormat (0xb384aac8) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb387b708) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb387b690) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb389b438) 0 + +Class QTextCharFormat + size=8 align=4 + base size=8 base align=4 +QTextCharFormat (0xb3833ec0) 0 + QTextFormat (0xb38ba000) 0 + +Class QTextBlockFormat + size=8 align=4 + base size=8 base align=4 +QTextBlockFormat (0xb38c4c80) 0 + QTextFormat (0xb38df8e8) 0 + +Class QTextListFormat + size=8 align=4 + base size=8 base align=4 +QTextListFormat (0xb38f3240) 0 + QTextFormat (0xb38f6690) 0 + +Class QTextImageFormat + size=8 align=4 + base size=8 base align=4 +QTextImageFormat (0xb38f3400) 0 + QTextCharFormat (0xb38f3440) 0 + QTextFormat (0xb38f6f78) 0 + +Class QTextFrameFormat + size=8 align=4 + base size=8 base align=4 +QTextFrameFormat (0xb38f3680) 0 + QTextFormat (0xb3903870) 0 + +Class QTextTableFormat + size=8 align=4 + base size=8 base align=4 +QTextTableFormat (0xb38f3d00) 0 + QTextFrameFormat (0xb38f3d40) 0 + QTextFormat (0xb371cac8) 0 + +Class QTextTableCellFormat + size=8 align=4 + base size=8 base align=4 +QTextTableCellFormat (0xb372d240) 0 + QTextCharFormat (0xb372d280) 0 + QTextFormat (0xb372ad5c) 0 + +Class QTextInlineObject + size=8 align=4 + base size=8 base align=4 +QTextInlineObject (0xb373ad20) 0 + +Class QTextLayout::FormatRange + size=16 align=4 + base size=16 base align=4 +QTextLayout::FormatRange (0xb37443fc) 0 + +Class QTextLayout + size=4 align=4 + base size=4 base align=4 +QTextLayout (0xb3744294) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb3744fb4) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3744f3c) 0 + +Class QTextLine + size=8 align=4 + base size=8 base align=4 +QTextLine (0xb3761294) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAbstractUndoItem) +8 __cxa_pure_virtual +12 __cxa_pure_virtual +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAbstractUndoItem + size=4 align=4 + base size=4 base align=4 +QAbstractUndoItem (0xb3761bf4) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 8u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QTextDocument) +8 QTextDocument::metaObject +12 QTextDocument::qt_metacast +16 QTextDocument::qt_metacall +20 QTextDocument::~QTextDocument +24 QTextDocument::~QTextDocument +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextDocument::clear +60 QTextDocument::createObject +64 QTextDocument::loadResource + +Class QTextDocument + size=8 align=4 + base size=8 base align=4 +QTextDocument (0xb372dd40) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 8u) + QObject (0xb3761f78) 0 + primary-for QTextDocument (0xb372dd40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb37728e8) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb37a8618) 0 + +Class QTextCursor + size=4 align=4 + base size=4 base align=4 +QTextCursor (0xb378fc6c) 0 + +Class QAbstractTextDocumentLayout::Selection + size=12 align=4 + base size=12 base align=4 +QAbstractTextDocumentLayout::Selection (0xb37a88ac) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb37a8ca8) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb37a8c30) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=48 align=4 + base size=48 base align=4 +QAbstractTextDocumentLayout::PaintContext (0xb37a88e8) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +8 QAbstractTextDocumentLayout::metaObject +12 QAbstractTextDocumentLayout::qt_metacast +16 QAbstractTextDocumentLayout::qt_metacall +20 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +24 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 QAbstractTextDocumentLayout::resizeInlineObject +88 QAbstractTextDocumentLayout::positionInlineObject +92 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=8 align=4 + base size=8 base align=4 +QAbstractTextDocumentLayout (0xb378e100) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 8u) + QObject (0xb37a87bc) 0 + primary-for QAbstractTextDocumentLayout (0xb378e100) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QTextObjectInterface) +8 QTextObjectInterface::~QTextObjectInterface +12 QTextObjectInterface::~QTextObjectInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextObjectInterface + size=4 align=4 + base size=4 base align=4 +QTextObjectInterface (0xb37d4780) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 8u) + +Class QFontDatabase + size=4 align=4 + base size=4 base align=4 +QFontDatabase (0xb37d4d20) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextObject) +8 QTextObject::metaObject +12 QTextObject::qt_metacast +16 QTextObject::qt_metacall +20 QTextObject::~QTextObject +24 QTextObject::~QTextObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextObject + size=8 align=4 + base size=8 base align=4 +QTextObject (0xb378e940) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 8u) + QObject (0xb37e7564) 0 + primary-for QTextObject (0xb378e940) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QTextBlockGroup) +8 QTextBlockGroup::metaObject +12 QTextBlockGroup::qt_metacast +16 QTextBlockGroup::qt_metacall +20 QTextBlockGroup::~QTextBlockGroup +24 QTextBlockGroup::~QTextBlockGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextBlockGroup::blockInserted +60 QTextBlockGroup::blockRemoved +64 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=8 align=4 + base size=8 base align=4 +QTextBlockGroup (0xb378ec40) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 8u) + QTextObject (0xb378ec80) 0 + primary-for QTextBlockGroup (0xb378ec40) + QObject (0xb37f80b4) 0 + primary-for QTextObject (0xb378ec80) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +8 QTextFrameLayoutData::~QTextFrameLayoutData +12 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=4 align=4 + base size=4 base align=4 +QTextFrameLayoutData (0xb37f8c30) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 8u) + +Class QTextFrame::iterator + size=20 align=4 + base size=20 base align=4 +QTextFrame::iterator (0xb380a1a4) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextFrame) +8 QTextFrame::metaObject +12 QTextFrame::qt_metacast +16 QTextFrame::qt_metacall +20 QTextFrame::~QTextFrame +24 QTextFrame::~QTextFrame +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextFrame + size=8 align=4 + base size=8 base align=4 +QTextFrame (0xb378ef40) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 8u) + QTextObject (0xb378ef80) 0 + primary-for QTextFrame (0xb378ef40) + QObject (0xb37f8d98) 0 + primary-for QTextObject (0xb378ef80) + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb361f744) 0 empty + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QTextBlockUserData) +8 QTextBlockUserData::~QTextBlockUserData +12 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=4 align=4 + base size=4 base align=4 +QTextBlockUserData (0xb361fac8) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 8u) + +Class QTextBlock::iterator + size=16 align=4 + base size=16 base align=4 +QTextBlock::iterator (0xb3629078) 0 + +Class QTextBlock + size=8 align=4 + base size=8 base align=4 +QTextBlock (0xb361fc30) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb363f744) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb363f834) 0 empty + +Class QTextFragment + size=12 align=4 + base size=12 base align=4 +QTextFragment (0xb363f9d8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb364cd98) 0 empty + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +8 QSyntaxHighlighter::metaObject +12 QSyntaxHighlighter::qt_metacast +16 QSyntaxHighlighter::qt_metacall +20 QSyntaxHighlighter::~QSyntaxHighlighter +24 QSyntaxHighlighter::~QSyntaxHighlighter +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=8 align=4 + base size=8 base align=4 +QSyntaxHighlighter (0xb3639b80) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 8u) + QObject (0xb364ce88) 0 + primary-for QSyntaxHighlighter (0xb3639b80) + +Class QTextDocumentFragment + size=4 align=4 + base size=4 base align=4 +QTextDocumentFragment (0xb3656ac8) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTextList) +8 QTextList::metaObject +12 QTextList::qt_metacast +16 QTextList::qt_metacall +20 QTextList::~QTextList +24 QTextList::~QTextList +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextBlockGroup::blockInserted +60 QTextBlockGroup::blockRemoved +64 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=8 align=4 + base size=8 base align=4 +QTextList (0xb3639e40) 0 + vptr=((& QTextList::_ZTV9QTextList) + 8u) + QTextBlockGroup (0xb3639e80) 0 + primary-for QTextList (0xb3639e40) + QTextObject (0xb3639ec0) 0 + primary-for QTextBlockGroup (0xb3639e80) + QObject (0xb3667000) 0 + primary-for QTextObject (0xb3639ec0) + +Class QTextTableCell + size=8 align=4 + base size=8 base align=4 +QTextTableCell (0xb3679294) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextTable) +8 QTextTable::metaObject +12 QTextTable::qt_metacast +16 QTextTable::qt_metacall +20 QTextTable::~QTextTable +24 QTextTable::~QTextTable +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextTable + size=8 align=4 + base size=8 base align=4 +QTextTable (0xb366e980) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 8u) + QTextFrame (0xb366e9c0) 0 + primary-for QTextTable (0xb366e980) + QTextObject (0xb366ea00) 0 + primary-for QTextFrame (0xb366e9c0) + QObject (0xb3683474) 0 + primary-for QTextObject (0xb366ea00) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QCompleter) +8 QCompleter::metaObject +12 QCompleter::qt_metacast +16 QCompleter::qt_metacall +20 QCompleter::~QCompleter +24 QCompleter::~QCompleter +28 QCompleter::event +32 QCompleter::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCompleter::pathFromIndex +60 QCompleter::splitPath + +Class QCompleter + size=8 align=4 + base size=8 base align=4 +QCompleter (0xb366efc0) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 8u) + QObject (0xb3691438) 0 + primary-for QCompleter (0xb366efc0) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0xb36a830c) 0 empty + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSystemTrayIcon) +8 QSystemTrayIcon::metaObject +12 QSystemTrayIcon::qt_metacast +16 QSystemTrayIcon::qt_metacall +20 QSystemTrayIcon::~QSystemTrayIcon +24 QSystemTrayIcon::~QSystemTrayIcon +28 QSystemTrayIcon::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSystemTrayIcon + size=8 align=4 + base size=8 base align=4 +QSystemTrayIcon (0xb3697280) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 8u) + QObject (0xb36a83fc) 0 + primary-for QSystemTrayIcon (0xb3697280) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUndoGroup) +8 QUndoGroup::metaObject +12 QUndoGroup::qt_metacast +16 QUndoGroup::qt_metacall +20 QUndoGroup::~QUndoGroup +24 QUndoGroup::~QUndoGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QUndoGroup + size=8 align=4 + base size=8 base align=4 +QUndoGroup (0xb3697640) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 8u) + QObject (0xb36b8474) 0 + primary-for QUndoGroup (0xb3697640) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QUndoCommand) +8 QUndoCommand::~QUndoCommand +12 QUndoCommand::~QUndoCommand +16 QUndoCommand::undo +20 QUndoCommand::redo +24 QUndoCommand::id +28 QUndoCommand::mergeWith + +Class QUndoCommand + size=8 align=4 + base size=8 base align=4 +QUndoCommand (0xb36c612c) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 8u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUndoStack) +8 QUndoStack::metaObject +12 QUndoStack::qt_metacast +16 QUndoStack::qt_metacall +20 QUndoStack::~QUndoStack +24 QUndoStack::~QUndoStack +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QUndoStack + size=8 align=4 + base size=8 base align=4 +QUndoStack (0xb3697900) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 8u) + QObject (0xb36c66cc) 0 + primary-for QUndoStack (0xb3697900) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QUndoView) +8 QUndoView::metaObject +12 QUndoView::qt_metacast +16 QUndoView::qt_metacall +20 QUndoView::~QUndoView +24 QUndoView::~QUndoView +28 QListView::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI9QUndoView) +392 QUndoView::_ZThn8_N9QUndoViewD1Ev +396 QUndoView::_ZThn8_N9QUndoViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=20 align=4 + base size=20 base align=4 +QUndoView (0xb3697c00) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 8u) + QListView (0xb3697c40) 0 + primary-for QUndoView (0xb3697c00) + QAbstractItemView (0xb3697c80) 0 + primary-for QListView (0xb3697c40) + QAbstractScrollArea (0xb3697cc0) 0 + primary-for QAbstractItemView (0xb3697c80) + QFrame (0xb3697d00) 0 + primary-for QAbstractScrollArea (0xb3697cc0) + QWidget (0xb36d1b90) 0 + primary-for QFrame (0xb3697d00) + QObject (0xb36da384) 0 + primary-for QWidget (0xb36d1b90) + QPaintDevice (0xb36da3c0) 8 + vptr=((& QUndoView::_ZTV9QUndoView) + 392u) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractButton) +8 QAbstractButton::metaObject +12 QAbstractButton::qt_metacast +16 QAbstractButton::qt_metacall +20 QAbstractButton::~QAbstractButton +24 QAbstractButton::~QAbstractButton +28 QAbstractButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 __cxa_pure_virtual +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI15QAbstractButton) +244 QAbstractButton::_ZThn8_N15QAbstractButtonD1Ev +248 QAbstractButton::_ZThn8_N15QAbstractButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=20 align=4 + base size=20 base align=4 +QAbstractButton (0xb3697fc0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 8u) + QWidget (0xb36e2b90) 0 + primary-for QAbstractButton (0xb3697fc0) + QObject (0xb36ec0b4) 0 + primary-for QWidget (0xb36e2b90) + QPaintDevice (0xb36ec0f0) 8 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 244u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QButtonGroup) +8 QButtonGroup::metaObject +12 QButtonGroup::qt_metacast +16 QButtonGroup::qt_metacall +20 QButtonGroup::~QButtonGroup +24 QButtonGroup::~QButtonGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QButtonGroup + size=8 align=4 + base size=8 base align=4 +QButtonGroup (0xb36ee4c0) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 8u) + QObject (0xb370399c) 0 + primary-for QButtonGroup (0xb36ee4c0) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QCalendarWidget) +8 QCalendarWidget::metaObject +12 QCalendarWidget::qt_metacast +16 QCalendarWidget::qt_metacall +20 QCalendarWidget::~QCalendarWidget +24 QCalendarWidget::~QCalendarWidget +28 QCalendarWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCalendarWidget::sizeHint +68 QCalendarWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QCalendarWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QCalendarWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QCalendarWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QCalendarWidget::paintCell +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI15QCalendarWidget) +236 QCalendarWidget::_ZThn8_N15QCalendarWidgetD1Ev +240 QCalendarWidget::_ZThn8_N15QCalendarWidgetD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=20 align=4 + base size=20 base align=4 +QCalendarWidget (0xb36ee800) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 8u) + QWidget (0xb370caf0) 0 + primary-for QCalendarWidget (0xb36ee800) + QObject (0xb3511708) 0 + primary-for QWidget (0xb370caf0) + QPaintDevice (0xb3511744) 8 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 236u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QCheckBox) +8 QCheckBox::metaObject +12 QCheckBox::qt_metacast +16 QCheckBox::qt_metacall +20 QCheckBox::~QCheckBox +24 QCheckBox::~QCheckBox +28 QCheckBox::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCheckBox::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QCheckBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QCheckBox::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QCheckBox::hitButton +228 QCheckBox::checkStateSet +232 QCheckBox::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI9QCheckBox) +244 QCheckBox::_ZThn8_N9QCheckBoxD1Ev +248 QCheckBox::_ZThn8_N9QCheckBoxD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=20 align=4 + base size=20 base align=4 +QCheckBox (0xb36eeb40) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 8u) + QAbstractButton (0xb36eeb80) 0 + primary-for QCheckBox (0xb36eeb40) + QWidget (0xb352b0f0) 0 + primary-for QAbstractButton (0xb36eeb80) + QObject (0xb3526708) 0 + primary-for QWidget (0xb352b0f0) + QPaintDevice (0xb3526744) 8 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 244u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QComboBox) +8 QComboBox::metaObject +12 QComboBox::qt_metacast +16 QComboBox::qt_metacall +20 QComboBox::~QComboBox +24 QComboBox::~QComboBox +28 QComboBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QComboBox::sizeHint +68 QComboBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QComboBox::mousePressEvent +84 QComboBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QComboBox::wheelEvent +100 QComboBox::keyPressEvent +104 QComboBox::keyReleaseEvent +108 QComboBox::focusInEvent +112 QComboBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QComboBox::paintEvent +128 QWidget::moveEvent +132 QComboBox::resizeEvent +136 QWidget::closeEvent +140 QComboBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QComboBox::showEvent +172 QComboBox::hideEvent +176 QWidget::x11Event +180 QComboBox::changeEvent +184 QWidget::metric +188 QComboBox::inputMethodEvent +192 QComboBox::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QComboBox::showPopup +228 QComboBox::hidePopup +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI9QComboBox) +240 QComboBox::_ZThn8_N9QComboBoxD1Ev +244 QComboBox::_ZThn8_N9QComboBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=20 align=4 + base size=20 base align=4 +QComboBox (0xb36eef00) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 8u) + QWidget (0xb3534690) 0 + primary-for QComboBox (0xb36eef00) + QObject (0xb353aa8c) 0 + primary-for QWidget (0xb3534690) + QPaintDevice (0xb353aac8) 8 + vptr=((& QComboBox::_ZTV9QComboBox) + 240u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QPushButton) +8 QPushButton::metaObject +12 QPushButton::qt_metacast +16 QPushButton::qt_metacall +20 QPushButton::~QPushButton +24 QPushButton::~QPushButton +28 QPushButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QPushButton::sizeHint +68 QPushButton::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QPushButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QPushButton::focusInEvent +112 QPushButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QPushButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QPushButton) +244 QPushButton::_ZThn8_N11QPushButtonD1Ev +248 QPushButton::_ZThn8_N11QPushButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=20 align=4 + base size=20 base align=4 +QPushButton (0xb355c880) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 8u) + QAbstractButton (0xb355c8c0) 0 + primary-for QPushButton (0xb355c880) + QWidget (0xb3575370) 0 + primary-for QAbstractButton (0xb355c8c0) + QObject (0xb3572708) 0 + primary-for QWidget (0xb3575370) + QPaintDevice (0xb3572744) 8 + vptr=((& QPushButton::_ZTV11QPushButton) + 244u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QCommandLinkButton) +8 QCommandLinkButton::metaObject +12 QCommandLinkButton::qt_metacast +16 QCommandLinkButton::qt_metacall +20 QCommandLinkButton::~QCommandLinkButton +24 QCommandLinkButton::~QCommandLinkButton +28 QCommandLinkButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCommandLinkButton::sizeHint +68 QCommandLinkButton::minimumSizeHint +72 QCommandLinkButton::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QPushButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QPushButton::focusInEvent +112 QPushButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QCommandLinkButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI18QCommandLinkButton) +244 QCommandLinkButton::_ZThn8_N18QCommandLinkButtonD1Ev +248 QCommandLinkButton::_ZThn8_N18QCommandLinkButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=20 align=4 + base size=20 base align=4 +QCommandLinkButton (0xb355cc80) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 8u) + QPushButton (0xb355ccc0) 0 + primary-for QCommandLinkButton (0xb355cc80) + QAbstractButton (0xb355cd00) 0 + primary-for QPushButton (0xb355ccc0) + QWidget (0xb35805f0) 0 + primary-for QAbstractButton (0xb355cd00) + QObject (0xb3587b04) 0 + primary-for QWidget (0xb35805f0) + QPaintDevice (0xb3587b40) 8 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 244u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QDateTimeEdit) +8 QDateTimeEdit::metaObject +12 QDateTimeEdit::qt_metacast +16 QDateTimeEdit::qt_metacall +20 QDateTimeEdit::~QDateTimeEdit +24 QDateTimeEdit::~QDateTimeEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI13QDateTimeEdit) +260 QDateTimeEdit::_ZThn8_N13QDateTimeEditD1Ev +264 QDateTimeEdit::_ZThn8_N13QDateTimeEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=20 align=4 + base size=20 base align=4 +QDateTimeEdit (0xb355cfc0) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 8u) + QAbstractSpinBox (0xb359b000) 0 + primary-for QDateTimeEdit (0xb355cfc0) + QWidget (0xb3598190) 0 + primary-for QAbstractSpinBox (0xb359b000) + QObject (0xb3593834) 0 + primary-for QWidget (0xb3598190) + QPaintDevice (0xb3593870) 8 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 260u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeEdit) +8 QTimeEdit::metaObject +12 QTimeEdit::qt_metacast +16 QTimeEdit::qt_metacall +20 QTimeEdit::~QTimeEdit +24 QTimeEdit::~QTimeEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI9QTimeEdit) +260 QTimeEdit::_ZThn8_N9QTimeEditD1Ev +264 QTimeEdit::_ZThn8_N9QTimeEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=20 align=4 + base size=20 base align=4 +QTimeEdit (0xb359b2c0) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 8u) + QDateTimeEdit (0xb359b300) 0 + primary-for QTimeEdit (0xb359b2c0) + QAbstractSpinBox (0xb359b340) 0 + primary-for QDateTimeEdit (0xb359b300) + QWidget (0xb35ac4b0) 0 + primary-for QAbstractSpinBox (0xb359b340) + QObject (0xb35a3fb4) 0 + primary-for QWidget (0xb35ac4b0) + QPaintDevice (0xb35a37bc) 8 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 260u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QDateEdit) +8 QDateEdit::metaObject +12 QDateEdit::qt_metacast +16 QDateEdit::qt_metacall +20 QDateEdit::~QDateEdit +24 QDateEdit::~QDateEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI9QDateEdit) +260 QDateEdit::_ZThn8_N9QDateEditD1Ev +264 QDateEdit::_ZThn8_N9QDateEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=20 align=4 + base size=20 base align=4 +QDateEdit (0xb359b580) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 8u) + QDateTimeEdit (0xb359b5c0) 0 + primary-for QDateEdit (0xb359b580) + QAbstractSpinBox (0xb359b600) 0 + primary-for QDateTimeEdit (0xb359b5c0) + QWidget (0xb35b95f0) 0 + primary-for QAbstractSpinBox (0xb359b600) + QObject (0xb35b67f8) 0 + primary-for QWidget (0xb35b95f0) + QPaintDevice (0xb35b6834) 8 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 260u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb35cd078) 0 + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QDial) +8 QDial::metaObject +12 QDial::qt_metacast +16 QDial::qt_metacall +20 QDial::~QDial +24 QDial::~QDial +28 QDial::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDial::sizeHint +68 QDial::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDial::mousePressEvent +84 QDial::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QDial::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDial::paintEvent +128 QWidget::moveEvent +132 QDial::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDial::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI5QDial) +236 QDial::_ZThn8_N5QDialD1Ev +240 QDial::_ZThn8_N5QDialD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=20 align=4 + base size=20 base align=4 +QDial (0xb359b900) 0 + vptr=((& QDial::_ZTV5QDial) + 8u) + QAbstractSlider (0xb359b940) 0 + primary-for QDial (0xb359b900) + QWidget (0xb35d0c30) 0 + primary-for QAbstractSlider (0xb359b940) + QObject (0xb35cdc30) 0 + primary-for QWidget (0xb35d0c30) + QPaintDevice (0xb35cdc6c) 8 + vptr=((& QDial::_ZTV5QDial) + 236u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QDialogButtonBox) +8 QDialogButtonBox::metaObject +12 QDialogButtonBox::qt_metacast +16 QDialogButtonBox::qt_metacall +20 QDialogButtonBox::~QDialogButtonBox +24 QDialogButtonBox::~QDialogButtonBox +28 QDialogButtonBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QDialogButtonBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI16QDialogButtonBox) +232 QDialogButtonBox::_ZThn8_N16QDialogButtonBoxD1Ev +236 QDialogButtonBox::_ZThn8_N16QDialogButtonBoxD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=20 align=4 + base size=20 base align=4 +QDialogButtonBox (0xb359bc00) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 8u) + QWidget (0xb35f81e0) 0 + primary-for QDialogButtonBox (0xb359bc00) + QObject (0xb35f1a14) 0 + primary-for QWidget (0xb35f81e0) + QPaintDevice (0xb35f1a50) 8 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3601e88) 0 + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDockWidget) +8 QDockWidget::metaObject +12 QDockWidget::qt_metacast +16 QDockWidget::qt_metacall +20 QDockWidget::~QDockWidget +24 QDockWidget::~QDockWidget +28 QDockWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDockWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QDockWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QDockWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QDockWidget) +232 QDockWidget::_ZThn8_N11QDockWidgetD1Ev +236 QDockWidget::_ZThn8_N11QDockWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=20 align=4 + base size=20 base align=4 +QDockWidget (0xb359bf80) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 8u) + QWidget (0xb3414730) 0 + primary-for QDockWidget (0xb359bf80) + QObject (0xb3415a14) 0 + primary-for QWidget (0xb3414730) + QPaintDevice (0xb3415a50) 8 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb34430f0) 0 + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFocusFrame) +8 QFocusFrame::metaObject +12 QFocusFrame::qt_metacast +16 QFocusFrame::qt_metacall +20 QFocusFrame::~QFocusFrame +24 QFocusFrame::~QFocusFrame +28 QFocusFrame::event +32 QFocusFrame::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFocusFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QFocusFrame) +232 QFocusFrame::_ZThn8_N11QFocusFrameD1Ev +236 QFocusFrame::_ZThn8_N11QFocusFrameD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=20 align=4 + base size=20 base align=4 +QFocusFrame (0xb342d380) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 8u) + QWidget (0xb3449370) 0 + primary-for QFocusFrame (0xb342d380) + QObject (0xb3443ca8) 0 + primary-for QWidget (0xb3449370) + QPaintDevice (0xb3443ce4) 8 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 232u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFontComboBox) +8 QFontComboBox::metaObject +12 QFontComboBox::qt_metacast +16 QFontComboBox::qt_metacall +20 QFontComboBox::~QFontComboBox +24 QFontComboBox::~QFontComboBox +28 QFontComboBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFontComboBox::sizeHint +68 QComboBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QComboBox::mousePressEvent +84 QComboBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QComboBox::wheelEvent +100 QComboBox::keyPressEvent +104 QComboBox::keyReleaseEvent +108 QComboBox::focusInEvent +112 QComboBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QComboBox::paintEvent +128 QWidget::moveEvent +132 QComboBox::resizeEvent +136 QWidget::closeEvent +140 QComboBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QComboBox::showEvent +172 QComboBox::hideEvent +176 QWidget::x11Event +180 QComboBox::changeEvent +184 QWidget::metric +188 QComboBox::inputMethodEvent +192 QComboBox::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QComboBox::showPopup +228 QComboBox::hidePopup +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI13QFontComboBox) +240 QFontComboBox::_ZThn8_N13QFontComboBoxD1Ev +244 QFontComboBox::_ZThn8_N13QFontComboBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=20 align=4 + base size=20 base align=4 +QFontComboBox (0xb342d640) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 8u) + QComboBox (0xb342d680) 0 + primary-for QFontComboBox (0xb342d640) + QWidget (0xb3466a00) 0 + primary-for QComboBox (0xb342d680) + QObject (0xb3465a50) 0 + primary-for QWidget (0xb3466a00) + QPaintDevice (0xb3465a8c) 8 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 240u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3475a50) 0 + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QGroupBox) +8 QGroupBox::metaObject +12 QGroupBox::qt_metacast +16 QGroupBox::qt_metacall +20 QGroupBox::~QGroupBox +24 QGroupBox::~QGroupBox +28 QGroupBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QGroupBox::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QGroupBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGroupBox::mousePressEvent +84 QGroupBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QGroupBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QGroupBox::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGroupBox::paintEvent +128 QWidget::moveEvent +132 QGroupBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QGroupBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QGroupBox) +232 QGroupBox::_ZThn8_N9QGroupBoxD1Ev +236 QGroupBox::_ZThn8_N9QGroupBoxD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=20 align=4 + base size=20 base align=4 +QGroupBox (0xb342da00) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 8u) + QWidget (0xb34866e0) 0 + primary-for QGroupBox (0xb342da00) + QObject (0xb34945dc) 0 + primary-for QWidget (0xb34866e0) + QPaintDevice (0xb3494618) 8 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 232u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QLabel) +8 QLabel::metaObject +12 QLabel::qt_metacast +16 QLabel::qt_metacall +20 QLabel::~QLabel +24 QLabel::~QLabel +28 QLabel::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLabel::sizeHint +68 QLabel::minimumSizeHint +72 QLabel::heightForWidth +76 QWidget::paintEngine +80 QLabel::mousePressEvent +84 QLabel::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QLabel::mouseMoveEvent +96 QWidget::wheelEvent +100 QLabel::keyPressEvent +104 QWidget::keyReleaseEvent +108 QLabel::focusInEvent +112 QLabel::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLabel::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QLabel::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QLabel::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QLabel::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI6QLabel) +232 QLabel::_ZThn8_N6QLabelD1Ev +236 QLabel::_ZThn8_N6QLabelD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=20 align=4 + base size=20 base align=4 +QLabel (0xb342dcc0) 0 + vptr=((& QLabel::_ZTV6QLabel) + 8u) + QFrame (0xb342dd00) 0 + primary-for QLabel (0xb342dcc0) + QWidget (0xb34a6f00) 0 + primary-for QFrame (0xb342dd00) + QObject (0xb34af3c0) 0 + primary-for QWidget (0xb34a6f00) + QPaintDevice (0xb34af3fc) 8 + vptr=((& QLabel::_ZTV6QLabel) + 232u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QLCDNumber) +8 QLCDNumber::metaObject +12 QLCDNumber::qt_metacast +16 QLCDNumber::qt_metacall +20 QLCDNumber::~QLCDNumber +24 QLCDNumber::~QLCDNumber +28 QLCDNumber::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLCDNumber::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLCDNumber::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QLCDNumber) +232 QLCDNumber::_ZThn8_N10QLCDNumberD1Ev +236 QLCDNumber::_ZThn8_N10QLCDNumberD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=20 align=4 + base size=20 base align=4 +QLCDNumber (0xb34c8000) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 8u) + QFrame (0xb34c8040) 0 + primary-for QLCDNumber (0xb34c8000) + QWidget (0xb34bed20) 0 + primary-for QFrame (0xb34c8040) + QObject (0xb34c53fc) 0 + primary-for QWidget (0xb34bed20) + QPaintDevice (0xb34c5438) 8 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 232u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMainWindow) +8 QMainWindow::metaObject +12 QMainWindow::qt_metacast +16 QMainWindow::qt_metacall +20 QMainWindow::~QMainWindow +24 QMainWindow::~QMainWindow +28 QMainWindow::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QMainWindow::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QMainWindow::createPopupMenu +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI11QMainWindow) +236 QMainWindow::_ZThn8_N11QMainWindowD1Ev +240 QMainWindow::_ZThn8_N11QMainWindowD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=20 align=4 + base size=20 base align=4 +QMainWindow (0xb34c8380) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 8u) + QWidget (0xb34d18c0) 0 + primary-for QMainWindow (0xb34c8380) + QObject (0xb34d58e8) 0 + primary-for QWidget (0xb34d18c0) + QPaintDevice (0xb34d5924) 8 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 236u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb34eaac8) 0 + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QMdiArea) +8 QMdiArea::metaObject +12 QMdiArea::qt_metacast +16 QMdiArea::qt_metacall +20 QMdiArea::~QMdiArea +24 QMdiArea::~QMdiArea +28 QMdiArea::event +32 QMdiArea::eventFilter +36 QMdiArea::timerEvent +40 QMdiArea::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMdiArea::sizeHint +68 QMdiArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QMdiArea::paintEvent +128 QWidget::moveEvent +132 QMdiArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QMdiArea::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QMdiArea::viewportEvent +228 QMdiArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI8QMdiArea) +240 QMdiArea::_ZThn8_N8QMdiAreaD1Ev +244 QMdiArea::_ZThn8_N8QMdiAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=20 align=4 + base size=20 base align=4 +QMdiArea (0xb34c8700) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 8u) + QAbstractScrollArea (0xb34c8740) 0 + primary-for QMdiArea (0xb34c8700) + QFrame (0xb34c8780) 0 + primary-for QAbstractScrollArea (0xb34c8740) + QWidget (0xb34f83c0) 0 + primary-for QFrame (0xb34c8780) + QObject (0xb34fa654) 0 + primary-for QWidget (0xb34f83c0) + QPaintDevice (0xb34fa690) 8 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 240u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb331cb04) 0 + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QMdiSubWindow) +8 QMdiSubWindow::metaObject +12 QMdiSubWindow::qt_metacast +16 QMdiSubWindow::qt_metacall +20 QMdiSubWindow::~QMdiSubWindow +24 QMdiSubWindow::~QMdiSubWindow +28 QMdiSubWindow::event +32 QMdiSubWindow::eventFilter +36 QMdiSubWindow::timerEvent +40 QMdiSubWindow::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMdiSubWindow::sizeHint +68 QMdiSubWindow::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QMdiSubWindow::mousePressEvent +84 QMdiSubWindow::mouseReleaseEvent +88 QMdiSubWindow::mouseDoubleClickEvent +92 QMdiSubWindow::mouseMoveEvent +96 QWidget::wheelEvent +100 QMdiSubWindow::keyPressEvent +104 QWidget::keyReleaseEvent +108 QMdiSubWindow::focusInEvent +112 QMdiSubWindow::focusOutEvent +116 QWidget::enterEvent +120 QMdiSubWindow::leaveEvent +124 QMdiSubWindow::paintEvent +128 QMdiSubWindow::moveEvent +132 QMdiSubWindow::resizeEvent +136 QMdiSubWindow::closeEvent +140 QMdiSubWindow::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QMdiSubWindow::showEvent +172 QMdiSubWindow::hideEvent +176 QWidget::x11Event +180 QMdiSubWindow::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI13QMdiSubWindow) +232 QMdiSubWindow::_ZThn8_N13QMdiSubWindowD1Ev +236 QMdiSubWindow::_ZThn8_N13QMdiSubWindowD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=20 align=4 + base size=20 base align=4 +QMdiSubWindow (0xb34c8b00) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 8u) + QWidget (0xb3339140) 0 + primary-for QMdiSubWindow (0xb34c8b00) + QObject (0xb332c690) 0 + primary-for QWidget (0xb3339140) + QPaintDevice (0xb332c6cc) 8 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb33517bc) 0 + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QMenu) +8 QMenu::metaObject +12 QMenu::qt_metacast +16 QMenu::qt_metacall +20 QMenu::~QMenu +24 QMenu::~QMenu +28 QMenu::event +32 QObject::eventFilter +36 QMenu::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMenu::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QMenu::mousePressEvent +84 QMenu::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QMenu::mouseMoveEvent +96 QMenu::wheelEvent +100 QMenu::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QMenu::enterEvent +120 QMenu::leaveEvent +124 QMenu::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QMenu::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QMenu::hideEvent +176 QWidget::x11Event +180 QMenu::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QMenu::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI5QMenu) +232 QMenu::_ZThn8_N5QMenuD1Ev +236 QMenu::_ZThn8_N5QMenuD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=20 align=4 + base size=20 base align=4 +QMenu (0xb34c8ec0) 0 + vptr=((& QMenu::_ZTV5QMenu) + 8u) + QWidget (0xb33680a0) 0 + primary-for QMenu (0xb34c8ec0) + QObject (0xb3367384) 0 + primary-for QWidget (0xb33680a0) + QPaintDevice (0xb33673c0) 8 + vptr=((& QMenu::_ZTV5QMenu) + 232u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QMenuBar) +8 QMenuBar::metaObject +12 QMenuBar::qt_metacast +16 QMenuBar::qt_metacall +20 QMenuBar::~QMenuBar +24 QMenuBar::~QMenuBar +28 QMenuBar::event +32 QMenuBar::eventFilter +36 QMenuBar::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QMenuBar::setVisible +64 QMenuBar::sizeHint +68 QMenuBar::minimumSizeHint +72 QMenuBar::heightForWidth +76 QWidget::paintEngine +80 QMenuBar::mousePressEvent +84 QMenuBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QMenuBar::mouseMoveEvent +96 QWidget::wheelEvent +100 QMenuBar::keyPressEvent +104 QWidget::keyReleaseEvent +108 QMenuBar::focusInEvent +112 QMenuBar::focusOutEvent +116 QWidget::enterEvent +120 QMenuBar::leaveEvent +124 QMenuBar::paintEvent +128 QWidget::moveEvent +132 QMenuBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QMenuBar::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QMenuBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI8QMenuBar) +232 QMenuBar::_ZThn8_N8QMenuBarD1Ev +236 QMenuBar::_ZThn8_N8QMenuBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=20 align=4 + base size=20 base align=4 +QMenuBar (0xb33b8a00) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 8u) + QWidget (0xb33b39b0) 0 + primary-for QMenuBar (0xb33b8a00) + QObject (0xb33c7834) 0 + primary-for QWidget (0xb33b39b0) + QPaintDevice (0xb33c7870) 8 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 232u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMenuItem) +8 QMenuItem::metaObject +12 QMenuItem::qt_metacast +16 QMenuItem::qt_metacall +20 QMenuItem::~QMenuItem +24 QMenuItem::~QMenuItem +28 QAction::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QMenuItem + size=8 align=4 + base size=8 base align=4 +QMenuItem (0xb3214540) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 8u) + QAction (0xb3214580) 0 + primary-for QMenuItem (0xb3214540) + QObject (0xb3216d20) 0 + primary-for QAction (0xb3214580) + +Class QTextEdit::ExtraSelection + size=12 align=4 + base size=12 base align=4 +QTextEdit::ExtraSelection (0xb3222b40) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTextEdit) +8 QTextEdit::metaObject +12 QTextEdit::qt_metacast +16 QTextEdit::qt_metacall +20 QTextEdit::~QTextEdit +24 QTextEdit::~QTextEdit +28 QTextEdit::event +32 QObject::eventFilter +36 QTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTextEdit::mousePressEvent +84 QTextEdit::mouseReleaseEvent +88 QTextEdit::mouseDoubleClickEvent +92 QTextEdit::mouseMoveEvent +96 QTextEdit::wheelEvent +100 QTextEdit::keyPressEvent +104 QTextEdit::keyReleaseEvent +108 QTextEdit::focusInEvent +112 QTextEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTextEdit::paintEvent +128 QWidget::moveEvent +132 QTextEdit::resizeEvent +136 QWidget::closeEvent +140 QTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QTextEdit::dragEnterEvent +156 QTextEdit::dragMoveEvent +160 QTextEdit::dragLeaveEvent +164 QTextEdit::dropEvent +168 QTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTextEdit::changeEvent +184 QWidget::metric +188 QTextEdit::inputMethodEvent +192 QTextEdit::inputMethodQuery +196 QTextEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QTextEdit::scrollContentsBy +232 QTextEdit::loadResource +236 QTextEdit::createMimeDataFromSelection +240 QTextEdit::canInsertFromMimeData +244 QTextEdit::insertFromMimeData +248 (int (*)(...))-0x000000008 +252 (int (*)(...))(& _ZTI9QTextEdit) +256 QTextEdit::_ZThn8_N9QTextEditD1Ev +260 QTextEdit::_ZThn8_N9QTextEditD0Ev +264 QWidget::_ZThn8_NK7QWidget7devTypeEv +268 QWidget::_ZThn8_NK7QWidget11paintEngineEv +272 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=20 align=4 + base size=20 base align=4 +QTextEdit (0xb32147c0) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 8u) + QAbstractScrollArea (0xb3214800) 0 + primary-for QTextEdit (0xb32147c0) + QFrame (0xb3214840) 0 + primary-for QAbstractScrollArea (0xb3214800) + QWidget (0xb321daf0) 0 + primary-for QFrame (0xb3214840) + QObject (0xb32223c0) 0 + primary-for QWidget (0xb321daf0) + QPaintDevice (0xb32223fc) 8 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 256u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb325f384) 0 + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QPlainTextEdit) +8 QPlainTextEdit::metaObject +12 QPlainTextEdit::qt_metacast +16 QPlainTextEdit::qt_metacall +20 QPlainTextEdit::~QPlainTextEdit +24 QPlainTextEdit::~QPlainTextEdit +28 QPlainTextEdit::event +32 QObject::eventFilter +36 QPlainTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QPlainTextEdit::mousePressEvent +84 QPlainTextEdit::mouseReleaseEvent +88 QPlainTextEdit::mouseDoubleClickEvent +92 QPlainTextEdit::mouseMoveEvent +96 QPlainTextEdit::wheelEvent +100 QPlainTextEdit::keyPressEvent +104 QPlainTextEdit::keyReleaseEvent +108 QPlainTextEdit::focusInEvent +112 QPlainTextEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QPlainTextEdit::paintEvent +128 QWidget::moveEvent +132 QPlainTextEdit::resizeEvent +136 QWidget::closeEvent +140 QPlainTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QPlainTextEdit::dragEnterEvent +156 QPlainTextEdit::dragMoveEvent +160 QPlainTextEdit::dragLeaveEvent +164 QPlainTextEdit::dropEvent +168 QPlainTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QPlainTextEdit::changeEvent +184 QWidget::metric +188 QPlainTextEdit::inputMethodEvent +192 QPlainTextEdit::inputMethodQuery +196 QPlainTextEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QPlainTextEdit::scrollContentsBy +232 QPlainTextEdit::loadResource +236 QPlainTextEdit::createMimeDataFromSelection +240 QPlainTextEdit::canInsertFromMimeData +244 QPlainTextEdit::insertFromMimeData +248 (int (*)(...))-0x000000008 +252 (int (*)(...))(& _ZTI14QPlainTextEdit) +256 QPlainTextEdit::_ZThn8_N14QPlainTextEditD1Ev +260 QPlainTextEdit::_ZThn8_N14QPlainTextEditD0Ev +264 QWidget::_ZThn8_NK7QWidget7devTypeEv +268 QWidget::_ZThn8_NK7QWidget11paintEngineEv +272 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=20 align=4 + base size=20 base align=4 +QPlainTextEdit (0xb3258440) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 8u) + QAbstractScrollArea (0xb3258480) 0 + primary-for QPlainTextEdit (0xb3258440) + QFrame (0xb32584c0) 0 + primary-for QAbstractScrollArea (0xb3258480) + QWidget (0xb3266be0) 0 + primary-for QFrame (0xb32584c0) + QObject (0xb325ff3c) 0 + primary-for QWidget (0xb3266be0) + QPaintDevice (0xb325ff78) 8 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 256u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +8 QPlainTextDocumentLayout::metaObject +12 QPlainTextDocumentLayout::qt_metacast +16 QPlainTextDocumentLayout::qt_metacall +20 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +24 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QPlainTextDocumentLayout::draw +60 QPlainTextDocumentLayout::hitTest +64 QPlainTextDocumentLayout::pageCount +68 QPlainTextDocumentLayout::documentSize +72 QPlainTextDocumentLayout::frameBoundingRect +76 QPlainTextDocumentLayout::blockBoundingRect +80 QPlainTextDocumentLayout::documentChanged +84 QAbstractTextDocumentLayout::resizeInlineObject +88 QAbstractTextDocumentLayout::positionInlineObject +92 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=8 align=4 + base size=8 base align=4 +QPlainTextDocumentLayout (0xb3258940) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 8u) + QAbstractTextDocumentLayout (0xb3258980) 0 + primary-for QPlainTextDocumentLayout (0xb3258940) + QObject (0xb329ed20) 0 + primary-for QAbstractTextDocumentLayout (0xb3258980) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +8 QPrintPreviewWidget::metaObject +12 QPrintPreviewWidget::qt_metacast +16 QPrintPreviewWidget::qt_metacall +20 QPrintPreviewWidget::~QPrintPreviewWidget +24 QPrintPreviewWidget::~QPrintPreviewWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QPrintPreviewWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +232 QPrintPreviewWidget::_ZThn8_N19QPrintPreviewWidgetD1Ev +236 QPrintPreviewWidget::_ZThn8_N19QPrintPreviewWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=24 align=4 + base size=24 base align=4 +QPrintPreviewWidget (0xb3258c40) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 8u) + QWidget (0xb32ab4b0) 0 + primary-for QPrintPreviewWidget (0xb3258c40) + QObject (0xb32af654) 0 + primary-for QWidget (0xb32ab4b0) + QPaintDevice (0xb32af690) 8 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 232u) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QProgressBar) +8 QProgressBar::metaObject +12 QProgressBar::qt_metacast +16 QProgressBar::qt_metacall +20 QProgressBar::~QProgressBar +24 QProgressBar::~QProgressBar +28 QProgressBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QProgressBar::sizeHint +68 QProgressBar::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QProgressBar::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QProgressBar::text +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI12QProgressBar) +236 QProgressBar::_ZThn8_N12QProgressBarD1Ev +240 QProgressBar::_ZThn8_N12QProgressBarD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=20 align=4 + base size=20 base align=4 +QProgressBar (0xb3258f00) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 8u) + QWidget (0xb32ba550) 0 + primary-for QProgressBar (0xb3258f00) + QObject (0xb32bf3c0) 0 + primary-for QWidget (0xb32ba550) + QPaintDevice (0xb32bf3fc) 8 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 236u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QRadioButton) +8 QRadioButton::metaObject +12 QRadioButton::qt_metacast +16 QRadioButton::qt_metacall +20 QRadioButton::~QRadioButton +24 QRadioButton::~QRadioButton +28 QRadioButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QRadioButton::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QRadioButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QRadioButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QRadioButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QRadioButton) +244 QRadioButton::_ZThn8_N12QRadioButtonD1Ev +248 QRadioButton::_ZThn8_N12QRadioButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=20 align=4 + base size=20 base align=4 +QRadioButton (0xb32cf1c0) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 8u) + QAbstractButton (0xb32cf200) 0 + primary-for QRadioButton (0xb32cf1c0) + QWidget (0xb32cd550) 0 + primary-for QAbstractButton (0xb32cf200) + QObject (0xb32d4294) 0 + primary-for QWidget (0xb32cd550) + QPaintDevice (0xb32d42d0) 8 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 244u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QScrollBar) +8 QScrollBar::metaObject +12 QScrollBar::qt_metacast +16 QScrollBar::qt_metacall +20 QScrollBar::~QScrollBar +24 QScrollBar::~QScrollBar +28 QScrollBar::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QScrollBar::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QScrollBar::mousePressEvent +84 QScrollBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QScrollBar::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QScrollBar::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QScrollBar::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QScrollBar::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QScrollBar::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI10QScrollBar) +236 QScrollBar::_ZThn8_N10QScrollBarD1Ev +240 QScrollBar::_ZThn8_N10QScrollBarD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=20 align=4 + base size=20 base align=4 +QScrollBar (0xb32cf4c0) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 8u) + QAbstractSlider (0xb32cf500) 0 + primary-for QScrollBar (0xb32cf4c0) + QWidget (0xb32de410) 0 + primary-for QAbstractSlider (0xb32cf500) + QObject (0xb32e403c) 0 + primary-for QWidget (0xb32de410) + QPaintDevice (0xb32e4078) 8 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 236u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSizeGrip) +8 QSizeGrip::metaObject +12 QSizeGrip::qt_metacast +16 QSizeGrip::qt_metacall +20 QSizeGrip::~QSizeGrip +24 QSizeGrip::~QSizeGrip +28 QSizeGrip::event +32 QSizeGrip::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QSizeGrip::setVisible +64 QSizeGrip::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSizeGrip::mousePressEvent +84 QSizeGrip::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSizeGrip::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSizeGrip::paintEvent +128 QSizeGrip::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QSizeGrip::showEvent +172 QSizeGrip::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QSizeGrip) +232 QSizeGrip::_ZThn8_N9QSizeGripD1Ev +236 QSizeGrip::_ZThn8_N9QSizeGripD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=20 align=4 + base size=20 base align=4 +QSizeGrip (0xb32cf800) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 8u) + QWidget (0xb32ebf50) 0 + primary-for QSizeGrip (0xb32cf800) + QObject (0xb32f8000) 0 + primary-for QWidget (0xb32ebf50) + QPaintDevice (0xb32f803c) 8 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 232u) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QSpinBox) +8 QSpinBox::metaObject +12 QSpinBox::qt_metacast +16 QSpinBox::qt_metacall +20 QSpinBox::~QSpinBox +24 QSpinBox::~QSpinBox +28 QSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSpinBox::validate +228 QSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 QSpinBox::valueFromText +248 QSpinBox::textFromValue +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI8QSpinBox) +260 QSpinBox::_ZThn8_N8QSpinBoxD1Ev +264 QSpinBox::_ZThn8_N8QSpinBoxD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=20 align=4 + base size=20 base align=4 +QSpinBox (0xb32cfac0) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 8u) + QAbstractSpinBox (0xb32cfb00) 0 + primary-for QSpinBox (0xb32cfac0) + QWidget (0xb32fcb40) 0 + primary-for QAbstractSpinBox (0xb32cfb00) + QObject (0xb32f8d5c) 0 + primary-for QWidget (0xb32fcb40) + QPaintDevice (0xb32f8d98) 8 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 260u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDoubleSpinBox) +8 QDoubleSpinBox::metaObject +12 QDoubleSpinBox::qt_metacast +16 QDoubleSpinBox::qt_metacall +20 QDoubleSpinBox::~QDoubleSpinBox +24 QDoubleSpinBox::~QDoubleSpinBox +28 QAbstractSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDoubleSpinBox::validate +228 QDoubleSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 QDoubleSpinBox::valueFromText +248 QDoubleSpinBox::textFromValue +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI14QDoubleSpinBox) +260 QDoubleSpinBox::_ZThn8_N14QDoubleSpinBoxD1Ev +264 QDoubleSpinBox::_ZThn8_N14QDoubleSpinBoxD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=20 align=4 + base size=20 base align=4 +QDoubleSpinBox (0xb32cff00) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 8u) + QAbstractSpinBox (0xb32cff40) 0 + primary-for QDoubleSpinBox (0xb32cff00) + QWidget (0xb3112550) 0 + primary-for QAbstractSpinBox (0xb32cff40) + QObject (0xb311812c) 0 + primary-for QWidget (0xb3112550) + QPaintDevice (0xb3118168) 8 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 260u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSplashScreen) +8 QSplashScreen::metaObject +12 QSplashScreen::qt_metacast +16 QSplashScreen::qt_metacall +20 QSplashScreen::~QSplashScreen +24 QSplashScreen::~QSplashScreen +28 QSplashScreen::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSplashScreen::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSplashScreen::drawContents +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI13QSplashScreen) +236 QSplashScreen::_ZThn8_N13QSplashScreenD1Ev +240 QSplashScreen::_ZThn8_N13QSplashScreenD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=20 align=4 + base size=20 base align=4 +QSplashScreen (0xb3123200) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 8u) + QWidget (0xb3124370) 0 + primary-for QSplashScreen (0xb3123200) + QObject (0xb3118e10) 0 + primary-for QWidget (0xb3124370) + QPaintDevice (0xb3118e4c) 8 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 236u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSplitter) +8 QSplitter::metaObject +12 QSplitter::qt_metacast +16 QSplitter::qt_metacall +20 QSplitter::~QSplitter +24 QSplitter::~QSplitter +28 QSplitter::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QSplitter::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSplitter::sizeHint +68 QSplitter::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QSplitter::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QSplitter::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSplitter::createHandle +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI9QSplitter) +236 QSplitter::_ZThn8_N9QSplitterD1Ev +240 QSplitter::_ZThn8_N9QSplitterD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=20 align=4 + base size=20 base align=4 +QSplitter (0xb3123540) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 8u) + QFrame (0xb3123580) 0 + primary-for QSplitter (0xb3123540) + QWidget (0xb313a2d0) 0 + primary-for QFrame (0xb3123580) + QObject (0xb3131e4c) 0 + primary-for QWidget (0xb313a2d0) + QPaintDevice (0xb3131e88) 8 + vptr=((& QSplitter::_ZTV9QSplitter) + 236u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSplitterHandle) +8 QSplitterHandle::metaObject +12 QSplitterHandle::qt_metacast +16 QSplitterHandle::qt_metacall +20 QSplitterHandle::~QSplitterHandle +24 QSplitterHandle::~QSplitterHandle +28 QSplitterHandle::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSplitterHandle::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSplitterHandle::mousePressEvent +84 QSplitterHandle::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSplitterHandle::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSplitterHandle::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI15QSplitterHandle) +232 QSplitterHandle::_ZThn8_N15QSplitterHandleD1Ev +236 QSplitterHandle::_ZThn8_N15QSplitterHandleD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=20 align=4 + base size=20 base align=4 +QSplitterHandle (0xb3123980) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 8u) + QWidget (0xb3148af0) 0 + primary-for QSplitterHandle (0xb3123980) + QObject (0xb31525a0) 0 + primary-for QWidget (0xb3148af0) + QPaintDevice (0xb31525dc) 8 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 232u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QStackedWidget) +8 QStackedWidget::metaObject +12 QStackedWidget::qt_metacast +16 QStackedWidget::qt_metacall +20 QStackedWidget::~QStackedWidget +24 QStackedWidget::~QStackedWidget +28 QStackedWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI14QStackedWidget) +232 QStackedWidget::_ZThn8_N14QStackedWidgetD1Ev +236 QStackedWidget::_ZThn8_N14QStackedWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=20 align=4 + base size=20 base align=4 +QStackedWidget (0xb3123c40) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 8u) + QFrame (0xb3123c80) 0 + primary-for QStackedWidget (0xb3123c40) + QWidget (0xb315a460) 0 + primary-for QFrame (0xb3123c80) + QObject (0xb316212c) 0 + primary-for QWidget (0xb315a460) + QPaintDevice (0xb3162168) 8 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 232u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QStatusBar) +8 QStatusBar::metaObject +12 QStatusBar::qt_metacast +16 QStatusBar::qt_metacall +20 QStatusBar::~QStatusBar +24 QStatusBar::~QStatusBar +28 QStatusBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QStatusBar::paintEvent +128 QWidget::moveEvent +132 QStatusBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QStatusBar::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QStatusBar) +232 QStatusBar::_ZThn8_N10QStatusBarD1Ev +236 QStatusBar::_ZThn8_N10QStatusBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=20 align=4 + base size=20 base align=4 +QStatusBar (0xb3123f40) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 8u) + QWidget (0xb3165e10) 0 + primary-for QStatusBar (0xb3123f40) + QObject (0xb3170000) 0 + primary-for QWidget (0xb3165e10) + QPaintDevice (0xb317003c) 8 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 232u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextBrowser) +8 QTextBrowser::metaObject +12 QTextBrowser::qt_metacast +16 QTextBrowser::qt_metacall +20 QTextBrowser::~QTextBrowser +24 QTextBrowser::~QTextBrowser +28 QTextBrowser::event +32 QObject::eventFilter +36 QTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTextBrowser::mousePressEvent +84 QTextBrowser::mouseReleaseEvent +88 QTextEdit::mouseDoubleClickEvent +92 QTextBrowser::mouseMoveEvent +96 QTextEdit::wheelEvent +100 QTextBrowser::keyPressEvent +104 QTextEdit::keyReleaseEvent +108 QTextEdit::focusInEvent +112 QTextBrowser::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTextBrowser::paintEvent +128 QWidget::moveEvent +132 QTextEdit::resizeEvent +136 QWidget::closeEvent +140 QTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QTextEdit::dragEnterEvent +156 QTextEdit::dragMoveEvent +160 QTextEdit::dragLeaveEvent +164 QTextEdit::dropEvent +168 QTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTextEdit::changeEvent +184 QWidget::metric +188 QTextEdit::inputMethodEvent +192 QTextEdit::inputMethodQuery +196 QTextBrowser::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QTextEdit::scrollContentsBy +232 QTextBrowser::loadResource +236 QTextEdit::createMimeDataFromSelection +240 QTextEdit::canInsertFromMimeData +244 QTextEdit::insertFromMimeData +248 QTextBrowser::setSource +252 QTextBrowser::backward +256 QTextBrowser::forward +260 QTextBrowser::home +264 QTextBrowser::reload +268 (int (*)(...))-0x000000008 +272 (int (*)(...))(& _ZTI12QTextBrowser) +276 QTextBrowser::_ZThn8_N12QTextBrowserD1Ev +280 QTextBrowser::_ZThn8_N12QTextBrowserD0Ev +284 QWidget::_ZThn8_NK7QWidget7devTypeEv +288 QWidget::_ZThn8_NK7QWidget11paintEngineEv +292 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=20 align=4 + base size=20 base align=4 +QTextBrowser (0xb317a340) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 8u) + QTextEdit (0xb317a380) 0 + primary-for QTextBrowser (0xb317a340) + QAbstractScrollArea (0xb317a3c0) 0 + primary-for QTextEdit (0xb317a380) + QFrame (0xb317a400) 0 + primary-for QAbstractScrollArea (0xb317a3c0) + QWidget (0xb3182140) 0 + primary-for QFrame (0xb317a400) + QObject (0xb317f294) 0 + primary-for QWidget (0xb3182140) + QPaintDevice (0xb317f2d0) 8 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 276u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QToolBar) +8 QToolBar::metaObject +12 QToolBar::qt_metacast +16 QToolBar::qt_metacall +20 QToolBar::~QToolBar +24 QToolBar::~QToolBar +28 QToolBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QToolBar::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QToolBar::paintEvent +128 QWidget::moveEvent +132 QToolBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QToolBar::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI8QToolBar) +232 QToolBar::_ZThn8_N8QToolBarD1Ev +236 QToolBar::_ZThn8_N8QToolBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=20 align=4 + base size=20 base align=4 +QToolBar (0xb317a6c0) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 8u) + QWidget (0xb318b820) 0 + primary-for QToolBar (0xb317a6c0) + QObject (0xb317ffb4) 0 + primary-for QWidget (0xb318b820) + QPaintDevice (0xb317f7bc) 8 + vptr=((& QToolBar::_ZTV8QToolBar) + 232u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QToolBox) +8 QToolBox::metaObject +12 QToolBox::qt_metacast +16 QToolBox::qt_metacall +20 QToolBox::~QToolBox +24 QToolBox::~QToolBox +28 QToolBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QToolBox::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QToolBox::itemInserted +228 QToolBox::itemRemoved +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI8QToolBox) +240 QToolBox::_ZThn8_N8QToolBoxD1Ev +244 QToolBox::_ZThn8_N8QToolBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=20 align=4 + base size=20 base align=4 +QToolBox (0xb317aa80) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 8u) + QFrame (0xb317aac0) 0 + primary-for QToolBox (0xb317aa80) + QWidget (0xb31a1d20) 0 + primary-for QFrame (0xb317aac0) + QObject (0xb31a95a0) 0 + primary-for QWidget (0xb31a1d20) + QPaintDevice (0xb31a95dc) 8 + vptr=((& QToolBox::_ZTV8QToolBox) + 240u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QToolButton) +8 QToolButton::metaObject +12 QToolButton::qt_metacast +16 QToolButton::qt_metacall +20 QToolButton::~QToolButton +24 QToolButton::~QToolButton +28 QToolButton::event +32 QObject::eventFilter +36 QToolButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QToolButton::sizeHint +68 QToolButton::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QToolButton::mousePressEvent +84 QToolButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QToolButton::enterEvent +120 QToolButton::leaveEvent +124 QToolButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QToolButton::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QToolButton::hitButton +228 QAbstractButton::checkStateSet +232 QToolButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QToolButton) +244 QToolButton::_ZThn8_N11QToolButtonD1Ev +248 QToolButton::_ZThn8_N11QToolButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=20 align=4 + base size=20 base align=4 +QToolButton (0xb31cf0c0) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 8u) + QAbstractButton (0xb31cf100) 0 + primary-for QToolButton (0xb31cf0c0) + QWidget (0xb31cd4b0) 0 + primary-for QAbstractButton (0xb31cf100) + QObject (0xb31caa14) 0 + primary-for QWidget (0xb31cd4b0) + QPaintDevice (0xb31caa50) 8 + vptr=((& QToolButton::_ZTV11QToolButton) + 244u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QWorkspace) +8 QWorkspace::metaObject +12 QWorkspace::qt_metacast +16 QWorkspace::qt_metacall +20 QWorkspace::~QWorkspace +24 QWorkspace::~QWorkspace +28 QWorkspace::event +32 QWorkspace::eventFilter +36 QObject::timerEvent +40 QWorkspace::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWorkspace::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWorkspace::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWorkspace::paintEvent +128 QWidget::moveEvent +132 QWorkspace::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWorkspace::showEvent +172 QWorkspace::hideEvent +176 QWidget::x11Event +180 QWorkspace::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QWorkspace) +232 QWorkspace::_ZThn8_N10QWorkspaceD1Ev +236 QWorkspace::_ZThn8_N10QWorkspaceD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=20 align=4 + base size=20 base align=4 +QWorkspace (0xb31cf7c0) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 8u) + QWidget (0xb31e2910) 0 + primary-for QWorkspace (0xb31cf7c0) + QObject (0xb31f20b4) 0 + primary-for QWidget (0xb31e2910) + QPaintDevice (0xb31f20f0) 8 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 232u) + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb305b564) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb3070b04) 0 + +Class QVectorTypedData + size=24 align=4 + base size=24 base align=4 +QVectorTypedData (0xb2f24e4c) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2f3c924) 0 + +Class QVectorTypedData + size=36 align=4 + base size=36 base align=4 +QVectorTypedData (0xb2f593fc) 0 + +Class QVectorTypedData + size=48 align=4 + base size=48 base align=4 +QVectorTypedData (0xb2fcec30) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2fcee10) 0 + +Class QVectorTypedData + size=48 align=4 + base size=48 base align=4 +QVectorTypedData (0xb2fce03c) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2fe31a4) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2ea3960) 0 + +Class QVectorTypedData > + size=20 align=4 + base size=20 base align=4 +QVectorTypedData > (0xb2ea3b40) 0 + +Class QVectorTypedData + size=28 align=4 + base size=28 base align=4 +QVectorTypedData (0xb2ed1ce4) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2ee9168) 0 + +Class QVectorTypedData + size=28 align=4 + base size=28 base align=4 +QVectorTypedData (0xb2ee9b40) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2cec870) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2d29d20) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb2d29d98) 0 + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb2d55ca8) 0 empty + +Class QHashNode + size=16 align=4 + base size=13 base align=4 +QHashNode (0xb2d55fb4) 0 + +Class QHashNode + size=16 align=4 + base size=16 base align=4 +QHashNode (0xb2d9cbb8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2dc0168) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2dc04b0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2dc0d5c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2bc61a4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2bc6744) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2bd57f8) 0 empty + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb2bd5e4c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2bd5f78) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2be51e0) 0 + +Class QVector::realloc(int, int) [with T = QPoint]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPoint]:: (0xb2be599c) 0 + +Class QVector::realloc(int, int) [with T = QPointF]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPointF]:: (0xb2c1a0f0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2c1a870) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2c1a8e8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2c1ad98) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2c1ae10) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2c52258) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2c52690) 0 + +Class QVector::realloc(int, int) [with T = QTextLength]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QTextLength]:: (0xb2c52a14) 0 + +Class QHashDummyNode + size=12 align=4 + base size=12 base align=4 +QHashDummyNode (0xb2c529d8) 0 + +Class QVector::realloc(int, int) [with T = QPainterPath::Element]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPainterPath::Element]:: (0xb2c88654) 0 + diff --git a/tests/auto/bic/data/QtNetwork.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtNetwork.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..0c22422 --- /dev/null +++ b/tests/auto/bic/data/QtNetwork.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,5155 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb77b7f3c) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb77b7f78) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7c12b40) 0 empty + QUintForSize<4> (0xb77bc000) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb77bc12c) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb77bc168) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7c12d00) 0 empty + QIntForSize<4> (0xb77bc1e0) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb77bc564) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb77bcb7c) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb77cf528) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb77cf5dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cf7bc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cf8ac) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cf99c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cfa8c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cfb7c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cfc6c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cfd5c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cfe4c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cff3c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77e903c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77e912c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77e921c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77e930c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77e93fc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77e94ec) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb77e95dc) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb7806078) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb78064ec) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb782c1a4) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb6a28c6c) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6a5a240) 0 + QBasicAtomicInt (0xb6a4cc30) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6a61b7c) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6a9dd5c) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6a80168) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb6ac8d5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b0be4c) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69240f0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6924a14) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6967348) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6967c6c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69795a0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6979ec4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb698c7f8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb699b12c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb699ba50) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69af384) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69afca8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69c35dc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69c3f00) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb69db834) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb6a1ab40) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb6826078) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb69db99c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6826c30) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb688bca8) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb68e8564) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb6752b00) 0 + QString (0xb67a0000) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb67a030c) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb67ae1a4) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb67dbf00) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb6809100) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb680a21c) 0 nearly-empty + primary-for std::bad_exception (0xb6809100) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb6809240) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb680a4ec) 0 nearly-empty + primary-for std::bad_alloc (0xb6809240) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb680a7bc) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb680aa14) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb680a9d8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb66b4c6c) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb66b4a50) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb6675fb4) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb66cd2d0) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb66cd258) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb66e7564) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb66e7ac8) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb66f50b4) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb66f8000) 0 + QGenericArgument (0xb66f54ec) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb66f59d8) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb66f57f8) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6709b40) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6709ac8) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb6709a14) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb6709c6c) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb654c1e0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb654ae80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb654cb40) 0 + primary-for QIODevice (0xb654ae80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6567e4c) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb6590ce4) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb65aed5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb65df564) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb65df654) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb65dfbb8) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb65dfb40) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb65bcf80) 0 + QList (0xb65dfbf4) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb660e960) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb660eb7c) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb6425bf4) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb6600f40) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb64361a4) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb6600f40) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb6434960) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb64364ec) 0 + primary-for QTextCodecPlugin (0xb6434960) + QTextCodecFactoryInterface (0xb643a0c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb6436528) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb643a0c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb6436e4c) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb644999c) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb6449690) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb643a980) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb6455b7c) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb643a980) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb643aa40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb643aa80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb643aa40) + std::exception (0xb6455d20) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb643aa80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb6455ec4) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb645803c) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb64580b4) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb6458078) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb65039d8) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb650399c) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb631f2d0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb631f384) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb63b730c) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb63b73fc) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb63b7384) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb63b7474) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb63b74ec) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb63b7528) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb63b7564) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb63b75dc) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb63b7618) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb63f4d98) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb6404a14) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb63bae00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb640fa8c) 0 + primary-for QTextIStream (0xb63bae00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb62220c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb62204ec) 0 + primary-for QTextOStream (0xb62220c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb6220fb4) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb6231000) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb6220f3c) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6231078) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62310f0) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6231168) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb62311e0) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb623121c) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb6231258) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb62312d0) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb6231348) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb6231384) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb62314b0) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb6231438) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb62313fc) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb6231528) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb6231618) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb62315a0) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb6231690) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb6231780) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb6231708) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6231834) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb62318ac) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb6231924) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb6231960) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb623199c) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb62319d8) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb62f0924) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb62f08e8) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb614d6cc) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb616530c) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb6165294) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb6165654) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb61651a4) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb6165780) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb6165e88) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb6165f00) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb61a8780) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb619a9d8) 0 + primary-for QFutureInterface (0xb61a8780) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb61e7168) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb62006c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb62017f8) 0 + primary-for QFutureWatcherBase (0xb62006c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb6200dc0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb6200e00) 0 + primary-for QFutureWatcher (0xb6200dc0) + QObject (0xb601a30c) 0 + primary-for QFutureWatcherBase (0xb6200e00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb603021c) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb60248c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb6030b40) 0 + primary-for QThread (0xb60248c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb6024c00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb6045924) 0 + primary-for QThreadPool (0xb6024c00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb605330c) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb60535dc) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb605d2c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb606230c) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb605d2c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb6062b04) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb605dc40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb6062b7c) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb605de00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb605de40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb6078000) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb605de40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb6078618) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb6078654) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb607f140) 0 empty + std::input_iterator_tag (0xb6078690) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb607f1c0) 0 empty + std::forward_iterator_tag (0xb607f200) 0 empty + std::input_iterator_tag (0xb60786cc) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb607f280) 0 empty + std::bidirectional_iterator_tag (0xb607f2c0) 0 empty + std::forward_iterator_tag (0xb607f300) 0 empty + std::input_iterator_tag (0xb6078708) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb6078a14) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb6078a50) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb6078ac8) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb6078ce4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6078dd4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6078e4c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6078ec4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6078f3c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6078fb4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6078168) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb609903c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60990b4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb609912c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60991a4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb609921c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6099294) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb609930c) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb60993fc) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb6099474) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb60994ec) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb6099870) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb60998e8) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb60999d8) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb6099a50) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb6099ac8) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6099ce4) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6099d20) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6099d5c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6099d98) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6099dd4) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6099e10) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6099e88) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6099ec4) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6099f00) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6099f3c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6099f78) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6099fb4) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb60ae99c) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb60ddf78) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb5f2d3c0) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb5f2d5dc) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb5f2d9d8) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb5f2db40) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb5f2dca8) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5f72384) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5f7add4) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb5f88708) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb5f88960) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb5f8899c) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb5f88a14) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb5f88a50) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb5f88ac8) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb5f88ce4) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb5f88e4c) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb5f88dd4) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb5f88e88) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb5f88ec4) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb60113fc) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb60116cc) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5e097c0) 0 empty + __gnu_cxx::new_allocator (0xb6011708) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb6011744) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5e09880) 0 empty + __gnu_cxx::new_allocator (0xb6011780) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb601199c) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5eb2294) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5eb22d0) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5eaeb40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5eb230c) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5ee5f78) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5d48100) 0 + std::allocator (0xb5d48140) 0 empty + __gnu_cxx::new_allocator (0xb5ee5fb4) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5ee5f00) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5d8a000) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5d482c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5d8a03c) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5d8a0f0) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5d484c0) 0 + std::allocator (0xb5d48500) 0 empty + __gnu_cxx::new_allocator (0xb5d8a168) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5d8a078) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5d8a1a4) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5d8a258) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5d48680) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5d8a1e0) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5d8a294) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5de0744) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5dec0f0) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5dec438) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5df6640) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5df2dd4) 0 + primary-for std::collate (0xb5df6640) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5df6740) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5df2ec4) 0 + primary-for std::collate (0xb5df6740) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5c112d0) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5c1130c) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5c186c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5c11348) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5c18800) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5c18840) 0 + primary-for std::collate_byname (0xb5c18800) + std::locale::facet (0xb5c113c0) 0 + primary-for std::collate (0xb5c18840) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5c188c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5c18900) 0 + primary-for std::collate_byname (0xb5c188c0) + std::locale::facet (0xb5c114b0) 0 + primary-for std::collate (0xb5c18900) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5c18f40) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5c3130c) 0 nearly-empty + primary-for std::ios_base::failure (0xb5c18f40) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5c3b5a0) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5c3bb40) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5c3bf3c) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5c312d0) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5c71960) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5c71bf4) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5c71e88) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5ce2fa0) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5cb6dd4) 0 + primary-for std::ctype (0xb5ce2fa0) + std::ctype_base (0xb5cb6e10) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5cf1870) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5b0299c) 0 + primary-for std::__ctype_abstract_base (0xb5cf1870) + std::ctype_base (0xb5b029d8) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5cf5800) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5b0c6e0) 0 + primary-for std::ctype (0xb5cf5800) + std::locale::facet (0xb5b02ac8) 0 + primary-for std::__ctype_abstract_base (0xb5b0c6e0) + std::ctype_base (0xb5b02b04) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5cf59c0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5b13e60) 0 + primary-for std::ctype_byname (0xb5cf59c0) + std::locale::facet (0xb5b12e10) 0 + primary-for std::ctype (0xb5b13e60) + std::ctype_base (0xb5b12e4c) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5cf5a40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5cf5a80) 0 + primary-for std::ctype_byname (0xb5cf5a40) + std::__ctype_abstract_base (0xb5b174b0) 0 + primary-for std::ctype (0xb5cf5a80) + std::locale::facet (0xb5b12fb4) 0 + primary-for std::__ctype_abstract_base (0xb5b174b0) + std::ctype_base (0xb5b12d5c) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5b1a99c) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5b25480) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5b2c1e0) 0 + primary-for std::numpunct (0xb5b25480) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5b25540) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5b2c2d0) 0 + primary-for std::numpunct (0xb5b25540) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5b63924) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5ba9a80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5ba9ac0) 0 + primary-for std::numpunct_byname (0xb5ba9a80) + std::locale::facet (0xb5b63f78) 0 + primary-for std::numpunct (0xb5ba9ac0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5ba9b00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5bc103c) 0 + primary-for std::num_get > > (0xb5ba9b00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5ba9b80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5bc112c) 0 + primary-for std::num_put > > (0xb5ba9b80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5ba9c00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5ba9c40) 0 + primary-for std::numpunct_byname (0xb5ba9c00) + std::locale::facet (0xb5bc121c) 0 + primary-for std::numpunct (0xb5ba9c40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5ba9cc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5bc130c) 0 + primary-for std::num_get > > (0xb5ba9cc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5ba9d40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5bc13fc) 0 + primary-for std::num_put > > (0xb5ba9d40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5bfed80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5bc1bf4) 0 + primary-for std::basic_ios > (0xb5bfed80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5bfedc0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5bc1ce4) 0 + primary-for std::basic_ios > (0xb5bfedc0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5a48a40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5a48a80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb5a2a7f8) 4 + primary-for std::basic_ios > (0xb5a48a80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5a2a9d8) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5a48bc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5a48c00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5a2aa14) 4 + primary-for std::basic_ios > (0xb5a48c00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5a2abb8) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5a87480) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5a874c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5a890b4) 8 + primary-for std::basic_ios > (0xb5a874c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5a87580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5a875c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5a89438) 8 + primary-for std::basic_ios > (0xb5a875c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5a89b40) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5a89b7c) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5ab4480) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5a89bb8) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5aea078) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb5aef380 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb5aef400 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5afab40) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb5aef380) 0 + primary-for std::basic_iostream > (0xb5afab40) + subvttidx=4u + std::basic_ios > (0xb5aef3c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5aea0b4) 12 + primary-for std::basic_ios > (0xb5aef3c0) + std::basic_ostream > (0xb5aef400) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb5aef3c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5aea348) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb5aef700 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb5aef780 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5902be0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb5aef700) 0 + primary-for std::basic_iostream > (0xb5902be0) + subvttidx=4u + std::basic_ios > (0xb5aef740) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb5aea384) 12 + primary-for std::basic_ios > (0xb5aef740) + std::basic_ostream > (0xb5aef780) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb5aef740) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb5aeac6c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb5aeabf4) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb5aeab7c) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb5aeaac8) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb5aea438) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb59347bc) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb581cc30) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb583a370) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb582aa00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb583a370) + QFutureInterfaceBase (0xb581ce10) 0 + primary-for QFutureInterface (0xb582aa00) + QRunnable (0xb581ce4c) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb582aa80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb583a780) 0 + primary-for QtConcurrent::RunFunctionTask (0xb582aa80) + QFutureInterface (0xb582aac0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb583a780) + QFutureInterfaceBase (0xb581cf00) 0 + primary-for QFutureInterface (0xb582aac0) + QRunnable (0xb583f000) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb57a7294) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb578de00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb578de40) 0 + primary-for QFile (0xb578de00) + QObject (0xb57a7384) 0 + primary-for QIODevice (0xb578de40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57bece4) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb57d18ac) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57e2f3c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb57f4258) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb57f4fb4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb57f4f3c) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb56160b4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5622618) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5622708) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb5663294) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb56632d0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb5647240) 0 + QAbstractFileEngine::ExtensionOption (0xb566330c) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb56472c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb56633fc) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb5647340) 0 + QAbstractFileEngine::ExtensionOption (0xb5663438) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb56529d8) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5663ac8) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb5670924) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb5670ac8) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb5647580) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb56475c0) 0 + primary-for QBuffer (0xb5647580) + QObject (0xb5670a8c) 0 + primary-for QIODevice (0xb56475c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb5683ca8) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5691474) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb5647a00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb569f258) 0 + primary-for QFileSystemWatcher (0xb5647a00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb5647cc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb569fc30) 0 + primary-for QFSFileEngine (0xb5647cc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb5647dc0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb5647e00) 0 + primary-for QProcess (0xb5647dc0) + QObject (0xb56b75dc) 0 + primary-for QIODevice (0xb5647e00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb56d5000) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb56f5438) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb56f54b0) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb56d521c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb56f5ca8) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56f5e10) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb551021c) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb5510708) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5510b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5510d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5510f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552e0f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552e2d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552e4b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552e690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552e870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552ea50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552ec30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb552ee10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5538000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55381e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55383c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55385a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5538780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5538960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5538b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5538d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5538f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553e0f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553e2d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553e4b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553e690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553e870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553ea50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553ec30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb553ee10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55481e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55483c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55485a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5548f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb554f0f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb554f2d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb554f4b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb554f690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb554f870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb554fa50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb554fc30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb554fe10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5556000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55561e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55563c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55565a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5556780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5556960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5556b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5556d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5556f00) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb5569d98) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb5569f78) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb5569e4c) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb5578654) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb555e0f0) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb558fb7c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb558fb04) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb558fc6c) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb558fbf4) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb55d2000) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55d2618) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb55d27f8) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb55d29d8) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb55da2c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb55d2bb8) 0 + primary-for QSettings (0xb55da2c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb55daec0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb55daf00) 0 + primary-for QTemporaryFile (0xb55daec0) + QIODevice (0xb55daf40) 0 + primary-for QFile (0xb55daf00) + QObject (0xb5410924) 0 + primary-for QIODevice (0xb55daf40) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb541fa8c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb542899c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5454438) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb5421ac0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb5464294) 0 + primary-for QEventLoop (0xb5421ac0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb54648ac) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb5421e40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb5479c6c) 0 + primary-for QAbstractEventDispatcher (0xb5421e40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb5488b40) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54a0f00) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb54a9000) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54a9744) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb548fa00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb54a9834) 0 + primary-for QAbstractItemModel (0xb548fa00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb548fec0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb548ff00) 0 + primary-for QAbstractTableModel (0xb548fec0) + QObject (0xb54d53c0) 0 + primary-for QAbstractItemModel (0xb548ff00) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb54e0140) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb54e0180) 0 + primary-for QAbstractListModel (0xb54e0140) + QObject (0xb54d5e4c) 0 + primary-for QAbstractItemModel (0xb54e0180) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb54f58ac) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52ff03c) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb52ff12c) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb54e0b80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb52ffe4c) 0 + primary-for QTimerEvent (0xb54e0b80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb54e0c40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb531103c) 0 + primary-for QChildEvent (0xb54e0c40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb54e0e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb53118ac) 0 + primary-for QCustomEvent (0xb54e0e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb54e0f00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb5311ca8) 0 + primary-for QDynamicPropertyChangeEvent (0xb54e0f00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb54e0fc0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb5311f00) 0 + primary-for QCoreApplication (0xb54e0fc0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb53378e8) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb5337c6c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb536c12c) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb536c21c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb536c654) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb536c744) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb536ca50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb536cd98) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb537a240) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb536ce88) 0 + primary-for QMimeData (0xb537a240) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb537a500) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb5384a14) 0 + primary-for QObjectCleanupHandler (0xb537a500) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb537a740) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb5393258) 0 + primary-for QSharedMemory (0xb537a740) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb537aa00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb53a1078) 0 + primary-for QSignalMapper (0xb537aa00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb537acc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb53af1e0) 0 + primary-for QSocketNotifier (0xb537acc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb53bb258) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb53bc040) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb53bb780) 0 + primary-for QTimer (0xb53bc040) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb53bc4c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb53cd8ac) 0 + primary-for QTranslator (0xb53bc4c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb53bc7c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb53dd6cc) 0 + primary-for QLibrary (0xb53bc7c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb53ec618) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb53bcb40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb51fb1e0) 0 + primary-for QPluginLoader (0xb53bcb40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb51fbdd4) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb5217bf4) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb5224294) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb5217f78) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb522c780) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb522c474) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb5232960) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb5232c30) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb524603c) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb5264d5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5273a50) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb5273ce4) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb52856cc) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb5285a50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52b23fc) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb52b24ec) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52bca50) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb52bcb40) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52d21e0) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb52d23c0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52e31a4) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb50d8438) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50e0294) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb50f83fc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50f87bc) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb5116924) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5123348) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb5142f78) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb51b7294) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51bf294) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb51d1f00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fe17f8) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb4ffdd5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5019c30) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb505d834) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5078d5c) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb50bb3fc) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb50d3618) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb4eda7c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb50d3fb4) 0 + primary-for QTimeLine (0xb4eda7c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb4f01384) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb4f1d528) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f26a8c) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4f26bf4) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4f26b7c) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb4f25240) 0 + QVector (0xb4f26c30) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb4f26c6c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f49690) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb4f497bc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f59384) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb4f594b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f6e438) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb4f6e564) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb4f6e708) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb4f89ce4) 0 + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QUrlInfo) +8 QUrlInfo::~QUrlInfo +12 QUrlInfo::~QUrlInfo +16 QUrlInfo::setName +20 QUrlInfo::setDir +24 QUrlInfo::setFile +28 QUrlInfo::setSymLink +32 QUrlInfo::setOwner +36 QUrlInfo::setGroup +40 QUrlInfo::setSize +44 QUrlInfo::setWritable +48 QUrlInfo::setReadable +52 QUrlInfo::setPermissions +56 QUrlInfo::setLastModified + +Class QUrlInfo + size=8 align=4 + base size=8 base align=4 +QUrlInfo (0xb4f9e2d0) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 8u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI4QFtp) +8 QFtp::metaObject +12 QFtp::qt_metacast +16 QFtp::qt_metacall +20 QFtp::~QFtp +24 QFtp::~QFtp +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFtp + size=8 align=4 + base size=8 base align=4 +QFtp (0xb4f25ec0) 0 + vptr=((& QFtp::_ZTV4QFtp) + 8u) + QObject (0xb4f9ebb8) 0 + primary-for QFtp (0xb4f25ec0) + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHttpHeader) +8 QHttpHeader::~QHttpHeader +12 QHttpHeader::~QHttpHeader +16 QHttpHeader::toString +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QHttpHeader::parseLine + +Class QHttpHeader + size=8 align=4 + base size=8 base align=4 +QHttpHeader (0xb4fb9e4c) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 8u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QHttpResponseHeader) +8 QHttpResponseHeader::~QHttpResponseHeader +12 QHttpResponseHeader::~QHttpResponseHeader +16 QHttpResponseHeader::toString +20 QHttpResponseHeader::majorVersion +24 QHttpResponseHeader::minorVersion +28 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=8 align=4 + base size=8 base align=4 +QHttpResponseHeader (0xb4fbd2c0) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 8u) + QHttpHeader (0xb4fc6528) 0 + primary-for QHttpResponseHeader (0xb4fbd2c0) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QHttpRequestHeader) +8 QHttpRequestHeader::~QHttpRequestHeader +12 QHttpRequestHeader::~QHttpRequestHeader +16 QHttpRequestHeader::toString +20 QHttpRequestHeader::majorVersion +24 QHttpRequestHeader::minorVersion +28 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=8 align=4 + base size=8 base align=4 +QHttpRequestHeader (0xb4fbd3c0) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 8u) + QHttpHeader (0xb4fc6b7c) 0 + primary-for QHttpRequestHeader (0xb4fbd3c0) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QHttp) +8 QHttp::metaObject +12 QHttp::qt_metacast +16 QHttp::qt_metacall +20 QHttp::~QHttp +24 QHttp::~QHttp +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QHttp + size=8 align=4 + base size=8 base align=4 +QHttp (0xb4fbd4c0) 0 + vptr=((& QHttp::_ZTV5QHttp) + 8u) + QObject (0xb4dd60b4) 0 + primary-for QHttp (0xb4fbd4c0) + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QNetworkAccessManager) +8 QNetworkAccessManager::metaObject +12 QNetworkAccessManager::qt_metacast +16 QNetworkAccessManager::qt_metacall +20 QNetworkAccessManager::~QNetworkAccessManager +24 QNetworkAccessManager::~QNetworkAccessManager +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=8 align=4 + base size=8 base align=4 +QNetworkAccessManager (0xb4fbd7c0) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 8u) + QObject (0xb4dec0f0) 0 + primary-for QNetworkAccessManager (0xb4fbd7c0) + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb4dff0f0) 0 + +Class QNetworkCookie + size=4 align=4 + base size=4 base align=4 +QNetworkCookie (0xb4decac8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4dff30c) 0 empty + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QNetworkCookieJar) +8 QNetworkCookieJar::metaObject +12 QNetworkCookieJar::qt_metacast +16 QNetworkCookieJar::qt_metacall +20 QNetworkCookieJar::~QNetworkCookieJar +24 QNetworkCookieJar::~QNetworkCookieJar +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QNetworkCookieJar::cookiesForUrl +60 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=8 align=4 + base size=8 base align=4 +QNetworkCookieJar (0xb4fbdc00) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 8u) + QObject (0xb4dff3fc) 0 + primary-for QNetworkCookieJar (0xb4fbdc00) + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4dfffb4) 0 empty + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb4e140f0) 0 empty + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb4e14780) 0 + +Class QNetworkRequest + size=4 align=4 + base size=4 base align=4 +QNetworkRequest (0xb4e14294) 0 + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4e14960) 0 empty + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QNetworkReply) +8 QNetworkReply::metaObject +12 QNetworkReply::qt_metacast +16 QNetworkReply::qt_metacall +20 QNetworkReply::~QNetworkReply +24 QNetworkReply::~QNetworkReply +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QNetworkReply::isSequential +60 QIODevice::open +64 QNetworkReply::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 QNetworkReply::writeData +120 __cxa_pure_virtual +124 QNetworkReply::setReadBufferSize +128 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=8 align=4 + base size=8 base align=4 +QNetworkReply (0xb4e15340) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 8u) + QIODevice (0xb4e15380) 0 + primary-for QNetworkReply (0xb4e15340) + QObject (0xb4e14b04) 0 + primary-for QIODevice (0xb4e15380) + +Class QAuthenticator + size=4 align=4 + base size=4 base align=4 +QAuthenticator (0xb4e2d834) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractSocket) +8 QAbstractSocket::metaObject +12 QAbstractSocket::qt_metacast +16 QAbstractSocket::qt_metacall +20 QAbstractSocket::~QAbstractSocket +24 QAbstractSocket::~QAbstractSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QAbstractSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QAbstractSocket::atEnd +84 QIODevice::reset +88 QAbstractSocket::bytesAvailable +92 QAbstractSocket::bytesToWrite +96 QAbstractSocket::canReadLine +100 QAbstractSocket::waitForReadyRead +104 QAbstractSocket::waitForBytesWritten +108 QAbstractSocket::readData +112 QAbstractSocket::readLineData +116 QAbstractSocket::writeData + +Class QAbstractSocket + size=8 align=4 + base size=8 base align=4 +QAbstractSocket (0xb4e156c0) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 8u) + QIODevice (0xb4e15700) 0 + primary-for QAbstractSocket (0xb4e156c0) + QObject (0xb4e2dca8) 0 + primary-for QIODevice (0xb4e15700) + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0xb4e4fce4) 0 + +Class QHostAddress + size=4 align=4 + base size=4 base align=4 +QHostAddress (0xb4e4ffb4) 0 + +Class QHostInfo + size=4 align=4 + base size=4 base align=4 +QHostInfo (0xb4e681a4) 0 + +Class QNetworkAddressEntry + size=4 align=4 + base size=4 base align=4 +QNetworkAddressEntry (0xb4e68618) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb4e751a4) 0 + +Class QNetworkInterface + size=4 align=4 + base size=4 base align=4 +QNetworkInterface (0xb4e688e8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4e752d0) 0 + +Class QNetworkProxy + size=4 align=4 + base size=4 base align=4 +QNetworkProxy (0xb4e75e88) 0 + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QLocalServer) +8 QLocalServer::metaObject +12 QLocalServer::qt_metacast +16 QLocalServer::qt_metacall +20 QLocalServer::~QLocalServer +24 QLocalServer::~QLocalServer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLocalServer::hasPendingConnections +60 QLocalServer::nextPendingConnection +64 QLocalServer::incomingConnection + +Class QLocalServer + size=8 align=4 + base size=8 base align=4 +QLocalServer (0xb4e8e100) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 8u) + QObject (0xb4e919d8) 0 + primary-for QLocalServer (0xb4e8e100) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QLocalSocket) +8 QLocalSocket::metaObject +12 QLocalSocket::qt_metacast +16 QLocalSocket::qt_metacall +20 QLocalSocket::~QLocalSocket +24 QLocalSocket::~QLocalSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLocalSocket::isSequential +60 QIODevice::open +64 QLocalSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QLocalSocket::bytesAvailable +92 QLocalSocket::bytesToWrite +96 QLocalSocket::canReadLine +100 QLocalSocket::waitForReadyRead +104 QLocalSocket::waitForBytesWritten +108 QLocalSocket::readData +112 QIODevice::readLineData +116 QLocalSocket::writeData + +Class QLocalSocket + size=8 align=4 + base size=8 base align=4 +QLocalSocket (0xb4e8e3c0) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 8u) + QIODevice (0xb4e8e400) 0 + primary-for QLocalSocket (0xb4e8e3c0) + QObject (0xb4ea1618) 0 + primary-for QIODevice (0xb4e8e400) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTcpServer) +8 QTcpServer::metaObject +12 QTcpServer::qt_metacast +16 QTcpServer::qt_metacall +20 QTcpServer::~QTcpServer +24 QTcpServer::~QTcpServer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTcpServer::hasPendingConnections +60 QTcpServer::nextPendingConnection +64 QTcpServer::incomingConnection + +Class QTcpServer + size=8 align=4 + base size=8 base align=4 +QTcpServer (0xb4e8e6c0) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 8u) + QObject (0xb4eafec4) 0 + primary-for QTcpServer (0xb4e8e6c0) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTcpSocket) +8 QTcpSocket::metaObject +12 QTcpSocket::qt_metacast +16 QTcpSocket::qt_metacall +20 QTcpSocket::~QTcpSocket +24 QTcpSocket::~QTcpSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QAbstractSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QAbstractSocket::atEnd +84 QIODevice::reset +88 QAbstractSocket::bytesAvailable +92 QAbstractSocket::bytesToWrite +96 QAbstractSocket::canReadLine +100 QAbstractSocket::waitForReadyRead +104 QAbstractSocket::waitForBytesWritten +108 QAbstractSocket::readData +112 QAbstractSocket::readLineData +116 QAbstractSocket::writeData + +Class QTcpSocket + size=8 align=4 + base size=8 base align=4 +QTcpSocket (0xb4e8e980) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 8u) + QAbstractSocket (0xb4e8e9c0) 0 + primary-for QTcpSocket (0xb4e8e980) + QIODevice (0xb4e8ea00) 0 + primary-for QAbstractSocket (0xb4e8e9c0) + QObject (0xb4ec0b7c) 0 + primary-for QIODevice (0xb4e8ea00) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUdpSocket) +8 QUdpSocket::metaObject +12 QUdpSocket::qt_metacast +16 QUdpSocket::qt_metacall +20 QUdpSocket::~QUdpSocket +24 QUdpSocket::~QUdpSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QAbstractSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QAbstractSocket::atEnd +84 QIODevice::reset +88 QAbstractSocket::bytesAvailable +92 QAbstractSocket::bytesToWrite +96 QAbstractSocket::canReadLine +100 QAbstractSocket::waitForReadyRead +104 QAbstractSocket::waitForBytesWritten +108 QAbstractSocket::readData +112 QAbstractSocket::readLineData +116 QAbstractSocket::writeData + +Class QUdpSocket + size=8 align=4 + base size=8 base align=4 +QUdpSocket (0xb4e8ecc0) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 8u) + QAbstractSocket (0xb4e8ed00) 0 + primary-for QUdpSocket (0xb4e8ecc0) + QIODevice (0xb4e8ed40) 0 + primary-for QAbstractSocket (0xb4e8ed00) + QObject (0xb4ece780) 0 + primary-for QIODevice (0xb4e8ed40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4cdf618) 0 + +Class QSslCertificate + size=4 align=4 + base size=4 base align=4 +QSslCertificate (0xb4cf01e0) 0 + +Class QSslCipher + size=4 align=4 + base size=4 base align=4 +QSslCipher (0xb4cf0fb4) 0 + +Class QSslError + size=4 align=4 + base size=4 base align=4 +QSslError (0xb4d00474) 0 + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QSslSocket) +8 QSslSocket::metaObject +12 QSslSocket::qt_metacast +16 QSslSocket::qt_metacall +20 QSslSocket::~QSslSocket +24 QSslSocket::~QSslSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QSslSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QSslSocket::atEnd +84 QIODevice::reset +88 QSslSocket::bytesAvailable +92 QSslSocket::bytesToWrite +96 QSslSocket::canReadLine +100 QSslSocket::waitForReadyRead +104 QSslSocket::waitForBytesWritten +108 QSslSocket::readData +112 QAbstractSocket::readLineData +116 QSslSocket::writeData + +Class QSslSocket + size=8 align=4 + base size=8 base align=4 +QSslSocket (0xb4ce22c0) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 8u) + QTcpSocket (0xb4ce2300) 0 + primary-for QSslSocket (0xb4ce22c0) + QAbstractSocket (0xb4ce2340) 0 + primary-for QTcpSocket (0xb4ce2300) + QIODevice (0xb4ce2380) 0 + primary-for QAbstractSocket (0xb4ce2340) + QObject (0xb4d00b7c) 0 + primary-for QIODevice (0xb4ce2380) + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb4d0efb4) 0 empty + +Class QSslConfiguration + size=4 align=4 + base size=4 base align=4 +QSslConfiguration (0xb4d2312c) 0 + +Class QSslKey + size=4 align=4 + base size=4 base align=4 +QSslKey (0xb4d237bc) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4d7d21c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4d8f7bc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4c4b9d8) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb4c4ba50) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4c6d564) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4c6d4ec) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4c6dd5c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4c6dce4) 0 + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb4ca52d0) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4ca53fc) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4cbc744) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4cbc99c) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4cbca14) 0 + diff --git a/tests/auto/bic/data/QtOpenGL.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtOpenGL.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..708f7f3 --- /dev/null +++ b/tests/auto/bic/data/QtOpenGL.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,18572 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb6bbc8ac) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb6bbc8e8) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7d6cc40) 0 empty + QUintForSize<4> (0xb6bbc960) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb6bbca8c) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb6bbcac8) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7d6ce00) 0 empty + QIntForSize<4> (0xb6bbcb40) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb6bbcec4) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb6bc84ec) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb6bc8e88) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb6bc8f3c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde12c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde21c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde30c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde3fc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde4ec) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde5dc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde6cc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde7bc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde8ac) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bde99c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bdea8c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bdeb7c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bdec6c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bded5c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bdee4c) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb6bdef3c) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb6bf69d8) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb6bf6e4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6c2ab04) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb69a45dc) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb69d1340) 0 + QBasicAtomicInt (0xb69c95a0) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb69dc4ec) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6a196cc) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb69dcac8) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb6a476cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a8a7bc) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a8aa50) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68d5384) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68d5ca8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68e95dc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68e9f00) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68fa834) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6905168) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6905a8c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb691b3c0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb691bce4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb692d618) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb692df3c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6944870) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb69541a4) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb69954b0) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb69989d8) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb695430c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb67a25a0) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb6806618) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb685bec4) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb66c2c00) 0 + QString (0xb6706960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6706c6c) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb6720b04) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb676a870) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb6780200) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb676ab7c) 0 nearly-empty + primary-for std::bad_exception (0xb6780200) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb6780340) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb676ae4c) 0 nearly-empty + primary-for std::bad_alloc (0xb6780340) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb678e078) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb678e2d0) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb678e294) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb662d5dc) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb662d3c0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb660d924) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb663ec30) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb663ebb8) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb665bec4) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb6664438) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb6664a14) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb6670100) 0 + QGenericArgument (0xb6664e4c) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb6672348) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb6672168) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb66874b0) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6687438) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb6687384) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb66875dc) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb64bbb40) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb64bef80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb64cf4b0) 0 + primary-for QIODevice (0xb64bef80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb64ef780) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb650b654) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb65286cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6552ec4) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb6552fb4) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb655f528) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb655f4b0) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb6564080) 0 + QList (0xb655f564) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb658a2d0) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb658a4ec) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb63a7564) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb63b0040) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb63a7b40) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb63b0040) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb63aae60) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb63a7e88) 0 + primary-for QTextCodecPlugin (0xb63aae60) + QTextCodecFactoryInterface (0xb63b01c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb63a7ec4) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb63b01c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb63b9780) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb63c530c) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb63c5000) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb63b0a80) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb63d04ec) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb63b0a80) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb63b0b40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb63b0b80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb63b0b40) + std::exception (0xb63d0690) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb63b0b80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb63d0834) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb63d0a14) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb63d0a8c) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb63d0a50) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb648a348) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb648a30c) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb6293c30) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6293ce4) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb630bc6c) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb630bd5c) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb630bce4) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb630bdd4) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb630be4c) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb630be88) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb630bec4) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb630bf3c) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb630bf78) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb636f708) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb637e384) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb632ef00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb63873fc) 0 + primary-for QTextIStream (0xb632ef00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb61961c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb6387e88) 0 + primary-for QTextOStream (0xb61961c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb619c924) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb619c99c) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb619c8ac) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb619ca14) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb619ca8c) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb619cb04) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb619cb7c) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb619cbb8) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb619cbf4) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb619cc6c) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb619cce4) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb619cd20) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb619ce4c) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb619cdd4) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb619cd98) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb619cec4) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb619cfb4) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb619cf3c) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb61b6000) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb61b60f0) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb61b6078) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb61b61a4) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb61b621c) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb61b6294) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb61b62d0) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb61b630c) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb61b6348) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb627b294) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb627b258) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb60d7000) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb60d7c6c) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb60d7bf4) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb60d7fb4) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb60d7b04) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb60f50b4) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb60f57bc) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb60f5834) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb6121880) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb612030c) 0 + primary-for QFutureInterface (0xb6121880) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb614dac8) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb61777c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb6181168) 0 + primary-for QFutureWatcherBase (0xb61777c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb6177ec0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb6177f00) 0 + primary-for QFutureWatcher (0xb6177ec0) + QObject (0xb6181ca8) 0 + primary-for QFutureWatcherBase (0xb6177f00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb5f9bb7c) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb5f9a9c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb5fac474) 0 + primary-for QThread (0xb5f9a9c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb5f9ad00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb5fc0294) 0 + primary-for QThreadPool (0xb5f9ad00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb5fc0ca8) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb5fc0f78) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb5fce3c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb5fd1c6c) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb5fce3c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb5fde438) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb5fced40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb5fde4b0) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb5fcef00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb5fcef40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb5fde960) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb5fcef40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb5fdef78) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb5fdefb4) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb5ff3240) 0 empty + std::input_iterator_tag (0xb5fdea50) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb5ff32c0) 0 empty + std::forward_iterator_tag (0xb5ff3300) 0 empty + std::input_iterator_tag (0xb5fdeac8) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb5ff3380) 0 empty + std::bidirectional_iterator_tag (0xb5ff33c0) 0 empty + std::forward_iterator_tag (0xb5ff3400) 0 empty + std::input_iterator_tag (0xb5ffc000) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb5ffc30c) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb5ffc348) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb5ffc3c0) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb5ffc5dc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffc6cc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffc744) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffc7bc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffc834) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffc8ac) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffc924) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffc99c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffca14) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffca8c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffcb04) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffcb7c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffcbf4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb5ffcc6c) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb5ffcd5c) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb5ffcdd4) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb5ffce4c) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb60161e0) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb6016258) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb6016348) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb60163c0) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb6016438) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6016654) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6016690) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60166cc) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6016708) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6016744) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6016780) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60167f8) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6016834) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6016870) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60168ac) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60168e8) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6016924) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb603830c) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb607b8e8) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb607bd20) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb607bf3c) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb5ebc348) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb5ebc4b0) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb5ebc618) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5ebcd20) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5ef6744) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb5f02078) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb5f022d0) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb5f0230c) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb5f02384) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb5f023c0) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb5f02438) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb5f02654) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb5f027bc) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb5f02744) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb5f027f8) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb5f02834) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb5f7cd5c) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5d9c03c) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5f8f8c0) 0 empty + __gnu_cxx::new_allocator (0xb5d9c078) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5d9c0b4) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5f8f980) 0 empty + __gnu_cxx::new_allocator (0xb5d9c0f0) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb5d9c30c) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5dfbbf4) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5dfbc30) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5e37c40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5dfbc6c) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5c9a8e8) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5cd1200) 0 + std::allocator (0xb5cd1240) 0 empty + __gnu_cxx::new_allocator (0xb5c9a960) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5c9a870) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5c9a99c) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5cd13c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5c9a9d8) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5c9aa8c) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5cd15c0) 0 + std::allocator (0xb5cd1600) 0 empty + __gnu_cxx::new_allocator (0xb5c9ab04) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5c9aa14) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5c9ab40) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5c9abf4) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5cd1780) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5c9ab7c) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5c9ac30) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5d6b0b4) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5d6ba8c) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5d6bdd4) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5d80740) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5d7f744) 0 + primary-for std::collate (0xb5d80740) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5d80840) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5d7f834) 0 + primary-for std::collate (0xb5d80840) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5d7fca8) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5d7fce4) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5b9e7c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5d7fd20) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5b9e900) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5b9e940) 0 + primary-for std::collate_byname (0xb5b9e900) + std::locale::facet (0xb5d7fd98) 0 + primary-for std::collate (0xb5b9e940) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5b9e9c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5b9ea00) 0 + primary-for std::collate_byname (0xb5b9e9c0) + std::locale::facet (0xb5d7fe88) 0 + primary-for std::collate (0xb5b9ea00) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5bbe040) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5bafc6c) 0 nearly-empty + primary-for std::ios_base::failure (0xb5bbe040) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5bc1f00) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5bc24b0) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5bc28ac) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5bafc30) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5c032d0) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5c03564) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5c037f8) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5c6f4b0) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5c5a744) 0 + primary-for std::ctype (0xb5c6f4b0) + std::ctype_base (0xb5c5a780) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5c77d70) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5c8930c) 0 + primary-for std::__ctype_abstract_base (0xb5c77d70) + std::ctype_base (0xb5c89348) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5c79900) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5a91be0) 0 + primary-for std::ctype (0xb5c79900) + std::locale::facet (0xb5c89438) 0 + primary-for std::__ctype_abstract_base (0xb5a91be0) + std::ctype_base (0xb5c89474) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5c79ac0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5a9a370) 0 + primary-for std::ctype_byname (0xb5c79ac0) + std::locale::facet (0xb5a98780) 0 + primary-for std::ctype (0xb5a9a370) + std::ctype_base (0xb5a987bc) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5c79b40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5c79b80) 0 + primary-for std::ctype_byname (0xb5c79b40) + std::__ctype_abstract_base (0xb5a9aa00) 0 + primary-for std::ctype (0xb5c79b80) + std::locale::facet (0xb5a98924) 0 + primary-for std::__ctype_abstract_base (0xb5a9aa00) + std::ctype_base (0xb5a98960) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5aa42d0) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5aac580) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5aa4b40) 0 + primary-for std::numpunct (0xb5aac580) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5aac640) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5aa4c30) 0 + primary-for std::numpunct (0xb5aac640) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5b15294) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5b31b80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5b31bc0) 0 + primary-for std::numpunct_byname (0xb5b31b80) + std::locale::facet (0xb5b158e8) 0 + primary-for std::numpunct (0xb5b31bc0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5b31c00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5b159d8) 0 + primary-for std::num_get > > (0xb5b31c00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5b31c80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5b15ac8) 0 + primary-for std::num_put > > (0xb5b31c80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5b31d00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5b31d40) 0 + primary-for std::numpunct_byname (0xb5b31d00) + std::locale::facet (0xb5b15bb8) 0 + primary-for std::numpunct (0xb5b31d40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5b31dc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5b15ca8) 0 + primary-for std::num_get > > (0xb5b31dc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5b31e40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5b15d98) 0 + primary-for std::num_put > > (0xb5b31e40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5b7be80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5b853fc) 0 + primary-for std::basic_ios > (0xb5b7be80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5b7bec0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5b854ec) 0 + primary-for std::basic_ios > (0xb5b7bec0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb59cbb40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb59cbb80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb59cf168) 4 + primary-for std::basic_ios > (0xb59cbb80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb59cf348) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb59cbcc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb59cbd00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb59cf384) 4 + primary-for std::basic_ios > (0xb59cbd00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb59cf528) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5a0d580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5a0d5c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb59cfa8c) 8 + primary-for std::basic_ios > (0xb5a0d5c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5a0d680) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5a0d6c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb59cfe10) 8 + primary-for std::basic_ios > (0xb5a0d6c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5a2d438) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5a2d474) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5a39580) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5a2d4b0) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5a2da8c) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb5a73480 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb5a73500 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5a83050) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb5a73480) 0 + primary-for std::basic_iostream > (0xb5a83050) + subvttidx=4u + std::basic_ios > (0xb5a734c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5a2dac8) 12 + primary-for std::basic_ios > (0xb5a734c0) + std::basic_ostream > (0xb5a73500) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb5a734c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5a2dd5c) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb5a73800 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb5a73880 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb588d0f0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb5a73800) 0 + primary-for std::basic_iostream > (0xb588d0f0) + subvttidx=4u + std::basic_ios > (0xb5a73840) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb5a2dd98) 12 + primary-for std::basic_ios > (0xb5a73840) + std::basic_ostream > (0xb5a73880) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb5a73840) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb5897564) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb58974ec) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb5897474) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb58973c0) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb5897924) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb58cf0f0) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb57b35a0) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb57bd870) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb57aeb00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb57bd870) + QFutureInterfaceBase (0xb57b3780) 0 + primary-for QFutureInterface (0xb57aeb00) + QRunnable (0xb57b37bc) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb57aeb80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb57bdc80) 0 + primary-for QtConcurrent::RunFunctionTask (0xb57aeb80) + QFutureInterface (0xb57aebc0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb57bdc80) + QFutureInterfaceBase (0xb57b3960) 0 + primary-for QFutureInterface (0xb57aebc0) + QRunnable (0xb57b399c) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb5715bf4) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb570ff00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb570ff40) 0 + primary-for QFile (0xb570ff00) + QObject (0xb5715ce4) 0 + primary-for QIODevice (0xb570ff40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb574d654) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb575d21c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb576d8ac) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb576dbb8) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb577f924) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb577f8ac) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb577fa14) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55a0f78) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55b503c) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb55ddbf4) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb55ddc30) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb55ca340) 0 + QAbstractFileEngine::ExtensionOption (0xb55ddc6c) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb55ca3c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb55ddd5c) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb55ca440) 0 + QAbstractFileEngine::ExtensionOption (0xb55ddd98) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb55dd348) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55ec438) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb55fc294) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb55fc438) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb55ca680) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb55ca6c0) 0 + primary-for QBuffer (0xb55ca680) + QObject (0xb55fc960) 0 + primary-for QIODevice (0xb55ca6c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb56135dc) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5613dd4) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb55cab00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb5621bb8) 0 + primary-for QFileSystemWatcher (0xb55cab00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb55cadc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb5634564) 0 + primary-for QFSFileEngine (0xb55cadc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb55caec0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb55caf00) 0 + primary-for QProcess (0xb55caec0) + QObject (0xb5634f3c) 0 + primary-for QIODevice (0xb55caf00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb565399c) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb5670d98) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb5670e10) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb5653bb8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb567f618) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb567f780) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb5485b7c) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb54a3078) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54a34b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54a3690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54a3870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54a3a50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54a3c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54a3e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ba000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ba1e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ba3c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ba5a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ba780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ba960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54bab40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54bad20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54baf00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c10f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c12d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c14b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c1690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c1870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c1a50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c1c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c1e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c8000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c81e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c83c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c85a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c8780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c8960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c8b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c8d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c8f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d30f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d32d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d34b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d3690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d3870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d3a50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d3c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d3e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d7000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d71e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d73c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d75a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d7780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d7960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d7b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d7d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54d7f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e00f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e02d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e04b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e0690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e0870) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb54f5708) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb54f58e8) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb54f57bc) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb54f5fb4) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb54e0a50) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb551d4ec) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb551d474) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb551d5dc) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb551d564) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb5550960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5550f78) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5564168) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5564348) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb555c3c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb5564528) 0 + primary-for QSettings (0xb555c3c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb555cfc0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb53a0000) 0 + primary-for QTemporaryFile (0xb555cfc0) + QIODevice (0xb53a0040) 0 + primary-for QFile (0xb53a0000) + QObject (0xb539e258) 0 + primary-for QIODevice (0xb53a0040) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb53ac3c0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb53b930c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53d1d98) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb53a0bc0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb53e4bf4) 0 + primary-for QEventLoop (0xb53a0bc0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb53f421c) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb53a0f40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb54075dc) 0 + primary-for QAbstractEventDispatcher (0xb53a0f40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb5419474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb542a870) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb542a960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54330b4) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb5414b00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb54331a4) 0 + primary-for QAbstractItemModel (0xb5414b00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb5414fc0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb545f000) 0 + primary-for QAbstractTableModel (0xb5414fc0) + QObject (0xb5456d20) 0 + primary-for QAbstractItemModel (0xb545f000) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb545f240) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb545f280) 0 + primary-for QAbstractListModel (0xb545f240) + QObject (0xb54627bc) 0 + primary-for QAbstractItemModel (0xb545f280) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb548321c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb548399c) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb5483a8c) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb545fc80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb52927bc) 0 + primary-for QTimerEvent (0xb545fc80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb545fd40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb5292a14) 0 + primary-for QChildEvent (0xb545fd40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb545ff00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb529f1e0) 0 + primary-for QCustomEvent (0xb545ff00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb52a4000) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb529f5dc) 0 + primary-for QDynamicPropertyChangeEvent (0xb52a4000) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb52a40c0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb529f834) 0 + primary-for QCoreApplication (0xb52a40c0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb52c1258) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb52c15dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52c1a8c) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb52c1b7c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52c1fb4) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb52fa0b4) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb52fa3c0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52fa708) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb52fb340) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb52fa7f8) 0 + primary-for QMimeData (0xb52fb340) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb52fb600) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb5310348) 0 + primary-for QObjectCleanupHandler (0xb52fb600) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb52fb840) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb5310bf4) 0 + primary-for QSharedMemory (0xb52fb840) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb52fbb00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb5320a14) 0 + primary-for QSignalMapper (0xb52fbb00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb52fbdc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb532eb7c) 0 + primary-for QSocketNotifier (0xb52fbdc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb533cbf4) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb5344140) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb534a0f0) 0 + primary-for QTimer (0xb5344140) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb53445c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb535b21c) 0 + primary-for QTranslator (0xb53445c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb53448c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb536803c) 0 + primary-for QLibrary (0xb53448c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5368fb4) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb5344c40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb537db40) 0 + primary-for QPluginLoader (0xb5344c40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb5188744) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb519b564) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb519bbf4) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb519b8e8) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb51b30f0) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb51aadd4) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb51b82d0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb51b85a0) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb51b899c) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb51f26cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51fc3c0) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb51fc654) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb522203c) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb52223c0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5231d5c) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb5231e4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52443c0) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb52444b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb524ebb8) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb524ed98) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5264c6c) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb5270d98) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5060d20) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb5071d5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb508312c) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb509e294) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb509eca8) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb50ca8e8) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb511abf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5140ce4) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb515c870) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f6799c) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb4f856cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f9e5a0) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb4fe51a4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ffe6cc) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb5037d5c) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb5041f78) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb505b8c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb4e65924) 0 + primary-for QTimeLine (0xb505b8c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb4e76d20) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb4e96e88) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4eb03fc) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4eb0564) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4eb04ec) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb4ea6340) 0 + QVector (0xb4eb05a0) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb4eb05dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ed6000) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb4ed612c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ed6ce4) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb4ed6e10) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ee7d98) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb4ee7ec4) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb4efe078) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb4f17654) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4f3d5a0) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4f3d618) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4f3d690) 0 + +Class QColor:: + size=10 align=2 + base size=10 base align=2 +QColor:: (0xb4f3d528) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0xb4f2c0f0) 0 + +Class QRegion::QRegionData + size=16 align=4 + base size=16 base align=4 +QRegion::QRegionData (0xb4d63ac8) 0 + +Class QRegion + size=4 align=4 + base size=4 base align=4 +QRegion (0xb4f52438) 0 + +Class QKeySequence + size=4 align=4 + base size=4 base align=4 +QKeySequence (0xb4d723fc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4d7c6cc) 0 empty + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMimeSource) +8 QMimeSource::~QMimeSource +12 QMimeSource::~QMimeSource +16 __cxa_pure_virtual +20 QMimeSource::provides +24 __cxa_pure_virtual + +Class QMimeSource + size=4 align=4 + base size=4 base align=4 +QMimeSource (0xb4d7c960) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 8u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QDrag) +8 QDrag::metaObject +12 QDrag::qt_metacast +16 QDrag::qt_metacall +20 QDrag::~QDrag +24 QDrag::~QDrag +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QDrag + size=8 align=4 + base size=8 base align=4 +QDrag (0xb4d93100) 0 + vptr=((& QDrag::_ZTV5QDrag) + 8u) + QObject (0xb4d7cac8) 0 + primary-for QDrag (0xb4d93100) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QInputEvent) +8 QInputEvent::~QInputEvent +12 QInputEvent::~QInputEvent + +Class QInputEvent + size=16 align=4 + base size=16 base align=4 +QInputEvent (0xb4d93400) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 8u) + QEvent (0xb4da2528) 0 + primary-for QInputEvent (0xb4d93400) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMouseEvent) +8 QMouseEvent::~QMouseEvent +12 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=40 align=4 + base size=40 base align=4 +QMouseEvent (0xb4d934c0) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 8u) + QInputEvent (0xb4d93500) 0 + primary-for QMouseEvent (0xb4d934c0) + QEvent (0xb4da27f8) 0 + primary-for QInputEvent (0xb4d93500) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHoverEvent) +8 QHoverEvent::~QHoverEvent +12 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=28 align=4 + base size=28 base align=4 +QHoverEvent (0xb4d93840) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 8u) + QEvent (0xb4db1b04) 0 + primary-for QHoverEvent (0xb4d93840) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWheelEvent) +8 QWheelEvent::~QWheelEvent +12 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=44 align=4 + base size=44 base align=4 +QWheelEvent (0xb4d93940) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 8u) + QInputEvent (0xb4d93980) 0 + primary-for QWheelEvent (0xb4d93940) + QEvent (0xb4db1ec4) 0 + primary-for QInputEvent (0xb4d93980) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTabletEvent) +8 QTabletEvent::~QTabletEvent +12 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=104 align=4 + base size=104 base align=4 +QTabletEvent (0xb4d93c80) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 8u) + QInputEvent (0xb4d93cc0) 0 + primary-for QTabletEvent (0xb4d93c80) + QEvent (0xb4dc4ac8) 0 + primary-for QInputEvent (0xb4d93cc0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QKeyEvent) +8 QKeyEvent::~QKeyEvent +12 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=28 align=4 + base size=27 base align=4 +QKeyEvent (0xb4dd61c0) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 8u) + QInputEvent (0xb4dd6200) 0 + primary-for QKeyEvent (0xb4dd61c0) + QEvent (0xb4dd0f78) 0 + primary-for QInputEvent (0xb4dd6200) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFocusEvent) +8 QFocusEvent::~QFocusEvent +12 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=16 align=4 + base size=16 base align=4 +QFocusEvent (0xb4dd65c0) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 8u) + QEvent (0xb4dea294) 0 + primary-for QFocusEvent (0xb4dd65c0) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QPaintEvent) +8 QPaintEvent::~QPaintEvent +12 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=36 align=4 + base size=33 base align=4 +QPaintEvent (0xb4dd66c0) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 8u) + QEvent (0xb4dea780) 0 + primary-for QPaintEvent (0xb4dd66c0) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +8 QUpdateLaterEvent::~QUpdateLaterEvent +12 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=16 align=4 + base size=16 base align=4 +QUpdateLaterEvent (0xb4dd6840) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 8u) + QEvent (0xb4dead98) 0 + primary-for QUpdateLaterEvent (0xb4dd6840) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QMoveEvent) +8 QMoveEvent::~QMoveEvent +12 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=28 align=4 + base size=28 base align=4 +QMoveEvent (0xb4dd6900) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 8u) + QEvent (0xb4dea474) 0 + primary-for QMoveEvent (0xb4dd6900) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QResizeEvent) +8 QResizeEvent::~QResizeEvent +12 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=28 align=4 + base size=28 base align=4 +QResizeEvent (0xb4dd6a00) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 8u) + QEvent (0xb4dfc294) 0 + primary-for QResizeEvent (0xb4dd6a00) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QCloseEvent) +8 QCloseEvent::~QCloseEvent +12 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=12 align=4 + base size=12 base align=4 +QCloseEvent (0xb4dd6b00) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 8u) + QEvent (0xb4dfc5dc) 0 + primary-for QCloseEvent (0xb4dd6b00) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QIconDragEvent) +8 QIconDragEvent::~QIconDragEvent +12 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=12 align=4 + base size=12 base align=4 +QIconDragEvent (0xb4dd6b40) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 8u) + QEvent (0xb4dfc744) 0 + primary-for QIconDragEvent (0xb4dd6b40) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QShowEvent) +8 QShowEvent::~QShowEvent +12 QShowEvent::~QShowEvent + +Class QShowEvent + size=12 align=4 + base size=12 base align=4 +QShowEvent (0xb4dd6bc0) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 8u) + QEvent (0xb4dfc8ac) 0 + primary-for QShowEvent (0xb4dd6bc0) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QHideEvent) +8 QHideEvent::~QHideEvent +12 QHideEvent::~QHideEvent + +Class QHideEvent + size=12 align=4 + base size=12 base align=4 +QHideEvent (0xb4dd6c40) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 8u) + QEvent (0xb4dfca14) 0 + primary-for QHideEvent (0xb4dd6c40) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QContextMenuEvent) +8 QContextMenuEvent::~QContextMenuEvent +12 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=36 align=4 + base size=33 base align=4 +QContextMenuEvent (0xb4dd6cc0) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 8u) + QInputEvent (0xb4dd6d00) 0 + primary-for QContextMenuEvent (0xb4dd6cc0) + QEvent (0xb4dfcb7c) 0 + primary-for QInputEvent (0xb4dd6d00) + +Class QInputMethodEvent::Attribute + size=24 align=4 + base size=24 base align=4 +QInputMethodEvent::Attribute (0xb4e09690) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4e09f78) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4e09f00) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QInputMethodEvent) +8 QInputMethodEvent::~QInputMethodEvent +12 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=32 align=4 + base size=32 base align=4 +QInputMethodEvent (0xb4dd6f80) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 8u) + QEvent (0xb4e09654) 0 + primary-for QInputMethodEvent (0xb4dd6f80) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QDropEvent) +8 QDropEvent::~QDropEvent +12 QDropEvent::~QDropEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI10QDropEvent) +36 QDropEvent::_ZThn12_N10QDropEventD1Ev +40 QDropEvent::_ZThn12_N10QDropEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=52 align=4 + base size=52 base align=4 +QDropEvent (0xb4e25af0) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 8u) + QEvent (0xb4e29780) 0 + primary-for QDropEvent (0xb4e25af0) + QMimeSource (0xb4e297bc) 12 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 36u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDragMoveEvent) +8 QDragMoveEvent::~QDragMoveEvent +12 QDragMoveEvent::~QDragMoveEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI14QDragMoveEvent) +36 QDragMoveEvent::_ZThn12_N14QDragMoveEventD1Ev +40 QDragMoveEvent::_ZThn12_N14QDragMoveEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=68 align=4 + base size=68 base align=4 +QDragMoveEvent (0xb4e107c0) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 8u) + QDropEvent (0xb4e364b0) 0 + primary-for QDragMoveEvent (0xb4e107c0) + QEvent (0xb4e38bb8) 0 + primary-for QDropEvent (0xb4e364b0) + QMimeSource (0xb4e38bf4) 12 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 36u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QDragEnterEvent) +8 QDragEnterEvent::~QDragEnterEvent +12 QDragEnterEvent::~QDragEnterEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI15QDragEnterEvent) +36 QDragEnterEvent::_ZThn12_N15QDragEnterEventD1Ev +40 QDragEnterEvent::_ZThn12_N15QDragEnterEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=68 align=4 + base size=68 base align=4 +QDragEnterEvent (0xb4e109c0) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 8u) + QDragMoveEvent (0xb4e10a00) 0 + primary-for QDragEnterEvent (0xb4e109c0) + QDropEvent (0xb4e3c410) 0 + primary-for QDragMoveEvent (0xb4e10a00) + QEvent (0xb4e40744) 0 + primary-for QDropEvent (0xb4e3c410) + QMimeSource (0xb4e40780) 12 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 36u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QDragResponseEvent) +8 QDragResponseEvent::~QDragResponseEvent +12 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=16 align=4 + base size=13 base align=4 +QDragResponseEvent (0xb4e10a40) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 8u) + QEvent (0xb4e40960) 0 + primary-for QDragResponseEvent (0xb4e10a40) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QDragLeaveEvent) +8 QDragLeaveEvent::~QDragLeaveEvent +12 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=12 align=4 + base size=12 base align=4 +QDragLeaveEvent (0xb4e10b40) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 8u) + QEvent (0xb4e40bb8) 0 + primary-for QDragLeaveEvent (0xb4e10b40) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QHelpEvent) +8 QHelpEvent::~QHelpEvent +12 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=28 align=4 + base size=28 base align=4 +QHelpEvent (0xb4e10b80) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 8u) + QEvent (0xb4e40d20) 0 + primary-for QHelpEvent (0xb4e10b80) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QStatusTipEvent) +8 QStatusTipEvent::~QStatusTipEvent +12 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=16 align=4 + base size=16 base align=4 +QStatusTipEvent (0xb4e10dc0) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 8u) + QEvent (0xb4e4d3c0) 0 + primary-for QStatusTipEvent (0xb4e10dc0) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +8 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +12 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=16 align=4 + base size=16 base align=4 +QWhatsThisClickedEvent (0xb4e10e80) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 8u) + QEvent (0xb4e4d618) 0 + primary-for QWhatsThisClickedEvent (0xb4e10e80) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QActionEvent) +8 QActionEvent::~QActionEvent +12 QActionEvent::~QActionEvent + +Class QActionEvent + size=20 align=4 + base size=20 base align=4 +QActionEvent (0xb4e10f40) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 8u) + QEvent (0xb4e4d870) 0 + primary-for QActionEvent (0xb4e10f40) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFileOpenEvent) +8 QFileOpenEvent::~QFileOpenEvent +12 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=16 align=4 + base size=16 base align=4 +QFileOpenEvent (0xb4e58040) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 8u) + QEvent (0xb4e4dbb8) 0 + primary-for QFileOpenEvent (0xb4e58040) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +8 QToolBarChangeEvent::~QToolBarChangeEvent +12 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=16 align=4 + base size=13 base align=4 +QToolBarChangeEvent (0xb4e58100) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 8u) + QEvent (0xb4e4de10) 0 + primary-for QToolBarChangeEvent (0xb4e58100) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QShortcutEvent) +8 QShortcutEvent::~QShortcutEvent +12 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=24 align=4 + base size=24 base align=4 +QShortcutEvent (0xb4e581c0) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 8u) + QEvent (0xb4e4d99c) 0 + primary-for QShortcutEvent (0xb4e581c0) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QClipboardEvent) +8 QClipboardEvent::~QClipboardEvent +12 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=12 align=4 + base size=12 base align=4 +QClipboardEvent (0xb4e583c0) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 8u) + QEvent (0xb4c60654) 0 + primary-for QClipboardEvent (0xb4e583c0) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +8 QWindowStateChangeEvent::~QWindowStateChangeEvent +12 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=16 align=4 + base size=16 base align=4 +QWindowStateChangeEvent (0xb4e58480) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 8u) + QEvent (0xb4c608ac) 0 + primary-for QWindowStateChangeEvent (0xb4e58480) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +8 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +12 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=16 align=4 + base size=16 base align=4 +QMenubarUpdatedEvent (0xb4e58540) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 8u) + QEvent (0xb4c60b40) 0 + primary-for QMenubarUpdatedEvent (0xb4e58540) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0xb4c60780) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4c6e870) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4c824b0) 0 + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb4c93078) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAccessibleInterface) +8 QAccessibleInterface::~QAccessibleInterface +12 QAccessibleInterface::~QAccessibleInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QAccessibleInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleInterface (0xb4e589c0) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 8u) + QAccessible (0xb4c93474) 0 empty + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb4c93fb4) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb4c93f3c) 0 + +Class QSet + size=4 align=4 + base size=4 base align=4 +QSet (0xb4c93ec4) 0 + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +8 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +12 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=4 align=4 + base size=4 base align=4 +QAccessibleInterfaceEx (0xb4e58f80) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 8u) + QAccessibleInterface (0xb4e58fc0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb4e58f80) + QAccessible (0xb4cbde10) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QAccessibleEvent) +8 QAccessibleEvent::~QAccessibleEvent +12 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=20 align=4 + base size=20 base align=4 +QAccessibleEvent (0xb4ccb080) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 8u) + QEvent (0xb4cbdfb4) 0 + primary-for QAccessibleEvent (0xb4ccb080) + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QAccessible2Interface) +8 QAccessible2Interface::~QAccessible2Interface +12 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=4 align=4 + base size=4 base align=4 +QAccessible2Interface (0xb4ccd99c) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 8u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +8 QAccessibleTextInterface::~QAccessibleTextInterface +12 QAccessibleTextInterface::~QAccessibleTextInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleTextInterface (0xb4ccb600) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 8u) + QAccessible2Interface (0xb4ccdec4) 0 nearly-empty + primary-for QAccessibleTextInterface (0xb4ccb600) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +8 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +12 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleEditableTextInterface (0xb4ccb780) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 8u) + QAccessible2Interface (0xb4cdf2d0) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0xb4ccb780) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +8 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +12 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +16 QAccessibleSimpleEditableTextInterface::copyText +20 QAccessibleSimpleEditableTextInterface::deleteText +24 QAccessibleSimpleEditableTextInterface::insertText +28 QAccessibleSimpleEditableTextInterface::cutText +32 QAccessibleSimpleEditableTextInterface::pasteText +36 QAccessibleSimpleEditableTextInterface::replaceText +40 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=8 align=4 + base size=8 base align=4 +QAccessibleSimpleEditableTextInterface (0xb4ccb900) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 8u) + QAccessibleEditableTextInterface (0xb4ccb940) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0xb4ccb900) + QAccessible2Interface (0xb4cdf708) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0xb4ccb940) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +8 QAccessibleValueInterface::~QAccessibleValueInterface +12 QAccessibleValueInterface::~QAccessibleValueInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleValueInterface (0xb4ccba00) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 8u) + QAccessible2Interface (0xb4cdf8ac) 0 nearly-empty + primary-for QAccessibleValueInterface (0xb4ccba00) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +8 QAccessibleTableInterface::~QAccessibleTableInterface +12 QAccessibleTableInterface::~QAccessibleTableInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleTableInterface (0xb4ccbb80) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 8u) + QAccessible2Interface (0xb4cdfce4) 0 nearly-empty + primary-for QAccessibleTableInterface (0xb4ccbb80) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleBridge) +8 QAccessibleBridge::~QAccessibleBridge +12 QAccessibleBridge::~QAccessibleBridge +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleBridge + size=4 align=4 + base size=4 base align=4 +QAccessibleBridge (0xb4cdff00) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 8u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +8 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +12 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleBridgeFactoryInterface (0xb4ccbd40) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 8u) + QFactoryInterface (0xb4cfa12c) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0xb4ccbd40) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +8 QAccessibleBridgePlugin::metaObject +12 QAccessibleBridgePlugin::qt_metacast +16 QAccessibleBridgePlugin::qt_metacall +20 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +24 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +72 QAccessibleBridgePlugin::_ZThn8_N23QAccessibleBridgePluginD1Ev +76 QAccessibleBridgePlugin::_ZThn8_N23QAccessibleBridgePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=12 align=4 + base size=12 base align=4 +QAccessibleBridgePlugin (0xb4cfe190) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 8u) + QObject (0xb4cfa474) 0 + primary-for QAccessibleBridgePlugin (0xb4cfe190) + QAccessibleBridgeFactoryInterface (0xb4ccbec0) 8 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 72u) + QFactoryInterface (0xb4cfa4b0) 8 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0xb4ccbec0) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleObject) +8 QAccessibleObject::~QAccessibleObject +12 QAccessibleObject::~QAccessibleObject +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 QAccessibleObject::setText +52 QAccessibleObject::rect +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAccessibleObject::userActionCount +68 QAccessibleObject::actionText +72 QAccessibleObject::doAction + +Class QAccessibleObject + size=8 align=4 + base size=8 base align=4 +QAccessibleObject (0xb4d04100) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 8u) + QAccessibleInterface (0xb4d04140) 0 nearly-empty + primary-for QAccessibleObject (0xb4d04100) + QAccessible (0xb4cfaca8) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +8 QAccessibleObjectEx::~QAccessibleObjectEx +12 QAccessibleObjectEx::~QAccessibleObjectEx +16 QAccessibleObjectEx::isValid +20 QAccessibleObjectEx::object +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 QAccessibleObjectEx::setText +52 QAccessibleObjectEx::rect +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAccessibleObjectEx::userActionCount +68 QAccessibleObjectEx::actionText +72 QAccessibleObjectEx::doAction +76 __cxa_pure_virtual +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=8 align=4 + base size=8 base align=4 +QAccessibleObjectEx (0xb4d04180) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 8u) + QAccessibleInterfaceEx (0xb4d041c0) 0 nearly-empty + primary-for QAccessibleObjectEx (0xb4d04180) + QAccessibleInterface (0xb4d04200) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb4d041c0) + QAccessible (0xb4d0e078) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QAccessibleApplication) +8 QAccessibleApplication::~QAccessibleApplication +12 QAccessibleApplication::~QAccessibleApplication +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 QAccessibleApplication::childCount +28 QAccessibleApplication::indexOfChild +32 QAccessibleApplication::relationTo +36 QAccessibleApplication::childAt +40 QAccessibleApplication::navigate +44 QAccessibleApplication::text +48 QAccessibleObject::setText +52 QAccessibleObject::rect +56 QAccessibleApplication::role +60 QAccessibleApplication::state +64 QAccessibleApplication::userActionCount +68 QAccessibleApplication::actionText +72 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=8 align=4 + base size=8 base align=4 +QAccessibleApplication (0xb4d04280) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 8u) + QAccessibleObject (0xb4d042c0) 0 + primary-for QAccessibleApplication (0xb4d04280) + QAccessibleInterface (0xb4d04300) 0 nearly-empty + primary-for QAccessibleObject (0xb4d042c0) + QAccessible (0xb4d0e4b0) 0 empty + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +8 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +12 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleFactoryInterface (0xb4d14cd0) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 8u) + QAccessible (0xb4d0e9d8) 0 empty + QFactoryInterface (0xb4d0ea14) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0xb4d14cd0) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessiblePlugin) +8 QAccessiblePlugin::metaObject +12 QAccessiblePlugin::qt_metacast +16 QAccessiblePlugin::qt_metacall +20 QAccessiblePlugin::~QAccessiblePlugin +24 QAccessiblePlugin::~QAccessiblePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI17QAccessiblePlugin) +72 QAccessiblePlugin::_ZThn8_N17QAccessiblePluginD1Ev +76 QAccessiblePlugin::_ZThn8_N17QAccessiblePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QAccessiblePlugin + size=12 align=4 + base size=12 base align=4 +QAccessiblePlugin (0xb4d162d0) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 8u) + QObject (0xb4d0ed5c) 0 + primary-for QAccessiblePlugin (0xb4d162d0) + QAccessibleFactoryInterface (0xb4d16320) 8 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 72u) + QAccessible (0xb4d0ed98) 8 empty + QFactoryInterface (0xb4d0edd4) 8 nearly-empty + primary-for QAccessibleFactoryInterface (0xb4d16320) + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleWidget) +8 QAccessibleWidget::~QAccessibleWidget +12 QAccessibleWidget::~QAccessibleWidget +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 QAccessibleWidget::childCount +28 QAccessibleWidget::indexOfChild +32 QAccessibleWidget::relationTo +36 QAccessibleWidget::childAt +40 QAccessibleWidget::navigate +44 QAccessibleWidget::text +48 QAccessibleObject::setText +52 QAccessibleWidget::rect +56 QAccessibleWidget::role +60 QAccessibleWidget::state +64 QAccessibleWidget::userActionCount +68 QAccessibleWidget::actionText +72 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=12 align=4 + base size=12 base align=4 +QAccessibleWidget (0xb4d04700) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 8u) + QAccessibleObject (0xb4d04740) 0 + primary-for QAccessibleWidget (0xb4d04700) + QAccessibleInterface (0xb4d04780) 0 nearly-empty + primary-for QAccessibleObject (0xb4d04740) + QAccessible (0xb4d21528) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +8 QAccessibleWidgetEx::~QAccessibleWidgetEx +12 QAccessibleWidgetEx::~QAccessibleWidgetEx +16 QAccessibleObjectEx::isValid +20 QAccessibleObjectEx::object +24 QAccessibleWidgetEx::childCount +28 QAccessibleWidgetEx::indexOfChild +32 QAccessibleWidgetEx::relationTo +36 QAccessibleWidgetEx::childAt +40 QAccessibleWidgetEx::navigate +44 QAccessibleWidgetEx::text +48 QAccessibleObjectEx::setText +52 QAccessibleWidgetEx::rect +56 QAccessibleWidgetEx::role +60 QAccessibleWidgetEx::state +64 QAccessibleObjectEx::userActionCount +68 QAccessibleWidgetEx::actionText +72 QAccessibleWidgetEx::doAction +76 QAccessibleWidgetEx::invokeMethodEx +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=12 align=4 + base size=12 base align=4 +QAccessibleWidgetEx (0xb4d047c0) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 8u) + QAccessibleObjectEx (0xb4d04800) 0 + primary-for QAccessibleWidgetEx (0xb4d047c0) + QAccessibleInterfaceEx (0xb4d04840) 0 nearly-empty + primary-for QAccessibleObjectEx (0xb4d04800) + QAccessibleInterface (0xb4d04880) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb4d04840) + QAccessible (0xb4d21dd4) 0 empty + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPaintDevice) +8 QPaintDevice::~QPaintDevice +12 QPaintDevice::~QPaintDevice +16 QPaintDevice::devType +20 __cxa_pure_virtual +24 QPaintDevice::metric + +Class QPaintDevice + size=8 align=4 + base size=6 base align=4 +QPaintDevice (0xb4d2e690) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 8u) + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4d40bb8) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4d40b40) 0 + +Class QPolygon + size=4 align=4 + base size=4 base align=4 +QPolygon (0xb4d04d80) 0 + QVector (0xb4d40bf4) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4d5cca8) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4d5cc30) 0 + +Class QPolygonF + size=4 align=4 + base size=4 base align=4 +QPolygonF (0xb4b62380) 0 + QVector (0xb4d5cce4) 0 + +Class QMatrix + size=48 align=4 + base size=48 base align=4 +QMatrix (0xb4b7dbf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4b98258) 0 empty + +Class QPainterPath::Element + size=20 align=4 + base size=20 base align=4 +QPainterPath::Element (0xb4b98a50) 0 + +Class QPainterPath + size=4 align=4 + base size=4 base align=4 +QPainterPath (0xb4b98a14) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4bc2ac8) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4bc2a50) 0 + +Class QPainterPathPrivate + size=8 align=4 + base size=8 base align=4 +QPainterPathPrivate (0xb4bc26cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4bc2b04) 0 empty + +Class QPainterPathStroker + size=4 align=4 + base size=4 base align=4 +QPainterPathStroker (0xb4bc2ca8) 0 + +Class QTransform + size=80 align=4 + base size=80 base align=4 +QTransform (0xb4bf9384) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4c09474) 0 empty + +Class QImageTextKeyLang + size=8 align=4 + base size=8 base align=4 +QImageTextKeyLang (0xb4c4103c) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QImage) +8 QImage::~QImage +12 QImage::~QImage +16 QImage::devType +20 QImage::paintEngine +24 QImage::metric + +Class QImage + size=12 align=4 + base size=12 base align=4 +QImage (0xb4c24900) 0 + vptr=((& QImage::_ZTV6QImage) + 8u) + QPaintDevice (0xb4c41c6c) 0 + primary-for QImage (0xb4c24900) + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4aa5168) 0 empty + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QPixmap) +8 QPixmap::~QPixmap +12 QPixmap::~QPixmap +16 QPixmap::devType +20 QPixmap::paintEngine +24 QPixmap::metric + +Class QPixmap + size=12 align=4 + base size=12 base align=4 +QPixmap (0xb4aa8200) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 8u) + QPaintDevice (0xb4aa5474) 0 + primary-for QPixmap (0xb4aa8200) + +Class QBrush + size=4 align=4 + base size=4 base align=4 +QBrush (0xb4accb7c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ad8690) 0 empty + +Class QBrushData + size=124 align=4 + base size=121 base align=4 +QBrushData (0xb4ad8924) 0 + +Class QVector >:: + size=4 align=4 + base size=4 base align=4 +QVector >:: (0xb4af15a0) 0 + +Class QVector > + size=4 align=4 + base size=4 base align=4 +QVector > (0xb4af1528) 0 + +Class QGradient:::: + size=32 align=4 + base size=32 base align=4 +QGradient:::: (0xb4af1690) 0 + +Class QGradient:::: + size=40 align=4 + base size=40 base align=4 +QGradient:::: (0xb4af1708) 0 + +Class QGradient:::: + size=24 align=4 + base size=24 base align=4 +QGradient:::: (0xb4af1780) 0 + +Class QGradient:: + size=40 align=4 + base size=40 base align=4 +QGradient:: (0xb4af1618) 0 + +Class QGradient + size=56 align=4 + base size=56 base align=4 +QGradient (0xb4ad8f00) 0 + +Class QLinearGradient + size=56 align=4 + base size=56 base align=4 +QLinearGradient (0xb4aa8f80) 0 + QGradient (0xb4af1c30) 0 + +Class QRadialGradient + size=56 align=4 + base size=56 base align=4 +QRadialGradient (0xb4b0b080) 0 + QGradient (0xb4af1e88) 0 + +Class QConicalGradient + size=56 align=4 + base size=56 base align=4 +QConicalGradient (0xb4b0b180) 0 + QGradient (0xb4b1012c) 0 + +Class QPalette + size=8 align=4 + base size=8 base align=4 +QPalette (0xb4b102d0) 0 + +Class QColorGroup + size=8 align=4 + base size=8 base align=4 +QColorGroup (0xb4b0bbc0) 0 + QPalette (0xb4b39b40) 0 + +Class QFont + size=8 align=4 + base size=8 base align=4 +QFont (0xb4b54e4c) 0 + +Class QFontMetrics + size=4 align=4 + base size=4 base align=4 +QFontMetrics (0xb4972ca8) 0 + +Class QFontMetricsF + size=4 align=4 + base size=4 base align=4 +QFontMetricsF (0xb497d708) 0 + +Class QFontInfo + size=4 align=4 + base size=4 base align=4 +QFontInfo (0xb497de88) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0xb498f438) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb49db4b0) 0 + +Class QCursor + size=4 align=4 + base size=4 base align=4 +QCursor (0xb49e9870) 0 + +Class QWidgetData + size=64 align=4 + base size=64 base align=4 +QWidgetData (0xb49e9ca8) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QWidget) +8 QWidget::metaObject +12 QWidget::qt_metacast +16 QWidget::qt_metacall +20 QWidget::~QWidget +24 QWidget::~QWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI7QWidget) +232 QWidget::_ZThn8_N7QWidgetD1Ev +236 QWidget::_ZThn8_N7QWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=20 align=4 + base size=20 base align=4 +QWidget (0xb49f8b90) 0 + vptr=((& QWidget::_ZTV7QWidget) + 8u) + QObject (0xb49e9ce4) 0 + primary-for QWidget (0xb49f8b90) + QPaintDevice (0xb49e9d20) 8 + vptr=((& QWidget::_ZTV7QWidget) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4a2fe10) 0 + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QDialog) +8 QDialog::metaObject +12 QDialog::qt_metacast +16 QDialog::qt_metacall +20 QDialog::~QDialog +24 QDialog::~QDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI7QDialog) +244 QDialog::_ZThn8_N7QDialogD1Ev +248 QDialog::_ZThn8_N7QDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=20 align=4 + base size=20 base align=4 +QDialog (0xb488ee40) 0 + vptr=((& QDialog::_ZTV7QDialog) + 8u) + QWidget (0xb48aae60) 0 + primary-for QDialog (0xb488ee40) + QObject (0xb48bb4ec) 0 + primary-for QWidget (0xb48aae60) + QPaintDevice (0xb48bb528) 8 + vptr=((& QDialog::_ZTV7QDialog) + 244u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +8 QAbstractPageSetupDialog::metaObject +12 QAbstractPageSetupDialog::qt_metacast +16 QAbstractPageSetupDialog::qt_metacall +20 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +24 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 __cxa_pure_virtual +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +248 QAbstractPageSetupDialog::_ZThn8_N24QAbstractPageSetupDialogD1Ev +252 QAbstractPageSetupDialog::_ZThn8_N24QAbstractPageSetupDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=20 align=4 + base size=20 base align=4 +QAbstractPageSetupDialog (0xb48ce100) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 8u) + QDialog (0xb48ce140) 0 + primary-for QAbstractPageSetupDialog (0xb48ce100) + QWidget (0xb48c78c0) 0 + primary-for QDialog (0xb48ce140) + QObject (0xb48cf3c0) 0 + primary-for QWidget (0xb48c78c0) + QPaintDevice (0xb48cf3fc) 8 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 248u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +8 QAbstractPrintDialog::metaObject +12 QAbstractPrintDialog::qt_metacast +16 QAbstractPrintDialog::qt_metacall +20 QAbstractPrintDialog::~QAbstractPrintDialog +24 QAbstractPrintDialog::~QAbstractPrintDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 __cxa_pure_virtual +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +248 QAbstractPrintDialog::_ZThn8_N20QAbstractPrintDialogD1Ev +252 QAbstractPrintDialog::_ZThn8_N20QAbstractPrintDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=20 align=4 + base size=20 base align=4 +QAbstractPrintDialog (0xb48ce400) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 8u) + QDialog (0xb48ce440) 0 + primary-for QAbstractPrintDialog (0xb48ce400) + QWidget (0xb48d5e10) 0 + primary-for QDialog (0xb48ce440) + QObject (0xb48cfdd4) 0 + primary-for QWidget (0xb48d5e10) + QPaintDevice (0xb48cfe10) 8 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 248u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb48e3fb4) 0 + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QColorDialog) +8 QColorDialog::metaObject +12 QColorDialog::qt_metacast +16 QColorDialog::qt_metacall +20 QColorDialog::~QColorDialog +24 QColorDialog::~QColorDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QColorDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QColorDialog) +244 QColorDialog::_ZThn8_N12QColorDialogD1Ev +248 QColorDialog::_ZThn8_N12QColorDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=20 align=4 + base size=20 base align=4 +QColorDialog (0xb48ce7c0) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 8u) + QDialog (0xb48ce800) 0 + primary-for QColorDialog (0xb48ce7c0) + QWidget (0xb48f7500) 0 + primary-for QDialog (0xb48ce800) + QObject (0xb48f8b40) 0 + primary-for QWidget (0xb48f7500) + QPaintDevice (0xb48f8b7c) 8 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 244u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QErrorMessage) +8 QErrorMessage::metaObject +12 QErrorMessage::qt_metacast +16 QErrorMessage::qt_metacall +20 QErrorMessage::~QErrorMessage +24 QErrorMessage::~QErrorMessage +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QErrorMessage::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QErrorMessage::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI13QErrorMessage) +244 QErrorMessage::_ZThn8_N13QErrorMessageD1Ev +248 QErrorMessage::_ZThn8_N13QErrorMessageD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=20 align=4 + base size=20 base align=4 +QErrorMessage (0xb48ceb40) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 8u) + QDialog (0xb48ceb80) 0 + primary-for QErrorMessage (0xb48ceb40) + QWidget (0xb4912280) 0 + primary-for QDialog (0xb48ceb80) + QObject (0xb490c99c) 0 + primary-for QWidget (0xb4912280) + QPaintDevice (0xb490c9d8) 8 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 244u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFileDialog) +8 QFileDialog::metaObject +12 QFileDialog::qt_metacast +16 QFileDialog::qt_metacall +20 QFileDialog::~QFileDialog +24 QFileDialog::~QFileDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFileDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QFileDialog::done +228 QFileDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QFileDialog) +244 QFileDialog::_ZThn8_N11QFileDialogD1Ev +248 QFileDialog::_ZThn8_N11QFileDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=20 align=4 + base size=20 base align=4 +QFileDialog (0xb48cee80) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 8u) + QDialog (0xb48ceec0) 0 + primary-for QFileDialog (0xb48cee80) + QWidget (0xb491a960) 0 + primary-for QDialog (0xb48ceec0) + QObject (0xb49207bc) 0 + primary-for QWidget (0xb491a960) + QPaintDevice (0xb49207f8) 8 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 244u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4932924) 0 + +Class QIcon + size=4 align=4 + base size=4 base align=4 +QIcon (0xb4953ce4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb47740b4) 0 empty + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFileSystemModel) +8 QFileSystemModel::metaObject +12 QFileSystemModel::qt_metacast +16 QFileSystemModel::qt_metacall +20 QFileSystemModel::~QFileSystemModel +24 QFileSystemModel::~QFileSystemModel +28 QObject::event +32 QObject::eventFilter +36 QFileSystemModel::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFileSystemModel::index +60 QFileSystemModel::parent +64 QFileSystemModel::rowCount +68 QFileSystemModel::columnCount +72 QFileSystemModel::hasChildren +76 QFileSystemModel::data +80 QFileSystemModel::setData +84 QFileSystemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QFileSystemModel::mimeTypes +104 QFileSystemModel::mimeData +108 QFileSystemModel::dropMimeData +112 QFileSystemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QFileSystemModel::fetchMore +136 QFileSystemModel::canFetchMore +140 QFileSystemModel::flags +144 QFileSystemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QFileSystemModel + size=8 align=4 + base size=8 base align=4 +QFileSystemModel (0xb4944b00) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 8u) + QAbstractItemModel (0xb4944b40) 0 + primary-for QFileSystemModel (0xb4944b00) + QObject (0xb47741a4) 0 + primary-for QAbstractItemModel (0xb4944b40) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFontDialog) +8 QFontDialog::metaObject +12 QFontDialog::qt_metacast +16 QFontDialog::qt_metacall +20 QFontDialog::~QFontDialog +24 QFontDialog::~QFontDialog +28 QWidget::event +32 QFontDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFontDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QFontDialog) +244 QFontDialog::_ZThn8_N11QFontDialogD1Ev +248 QFontDialog::_ZThn8_N11QFontDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=20 align=4 + base size=20 base align=4 +QFontDialog (0xb4944fc0) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 8u) + QDialog (0xb4797000) 0 + primary-for QFontDialog (0xb4944fc0) + QWidget (0xb4787f00) 0 + primary-for QDialog (0xb4797000) + QObject (0xb4790618) 0 + primary-for QWidget (0xb4787f00) + QPaintDevice (0xb4790654) 8 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 244u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QFrame) +8 QFrame::metaObject +12 QFrame::qt_metacast +16 QFrame::qt_metacall +20 QFrame::~QFrame +24 QFrame::~QFrame +28 QFrame::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI6QFrame) +232 QFrame::_ZThn8_N6QFrameD1Ev +236 QFrame::_ZThn8_N6QFrameD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=20 align=4 + base size=20 base align=4 +QFrame (0xb4797340) 0 + vptr=((& QFrame::_ZTV6QFrame) + 8u) + QWidget (0xb479ee10) 0 + primary-for QFrame (0xb4797340) + QObject (0xb47a54ec) 0 + primary-for QWidget (0xb479ee10) + QPaintDevice (0xb47a5528) 8 + vptr=((& QFrame::_ZTV6QFrame) + 232u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QLineEdit) +8 QLineEdit::metaObject +12 QLineEdit::qt_metacast +16 QLineEdit::qt_metacall +20 QLineEdit::~QLineEdit +24 QLineEdit::~QLineEdit +28 QLineEdit::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLineEdit::sizeHint +68 QLineEdit::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QLineEdit::mousePressEvent +84 QLineEdit::mouseReleaseEvent +88 QLineEdit::mouseDoubleClickEvent +92 QLineEdit::mouseMoveEvent +96 QWidget::wheelEvent +100 QLineEdit::keyPressEvent +104 QWidget::keyReleaseEvent +108 QLineEdit::focusInEvent +112 QLineEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLineEdit::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QLineEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QLineEdit::dragEnterEvent +156 QLineEdit::dragMoveEvent +160 QLineEdit::dragLeaveEvent +164 QLineEdit::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QLineEdit::changeEvent +184 QWidget::metric +188 QLineEdit::inputMethodEvent +192 QLineEdit::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QLineEdit) +232 QLineEdit::_ZThn8_N9QLineEditD1Ev +236 QLineEdit::_ZThn8_N9QLineEditD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=20 align=4 + base size=20 base align=4 +QLineEdit (0xb4797600) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 8u) + QWidget (0xb47b1960) 0 + primary-for QLineEdit (0xb4797600) + QObject (0xb47b4834) 0 + primary-for QWidget (0xb47b1960) + QPaintDevice (0xb47b4870) 8 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 232u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QInputDialog) +8 QInputDialog::metaObject +12 QInputDialog::qt_metacast +16 QInputDialog::qt_metacall +20 QInputDialog::~QInputDialog +24 QInputDialog::~QInputDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QInputDialog) +244 QInputDialog::_ZThn8_N12QInputDialogD1Ev +248 QInputDialog::_ZThn8_N12QInputDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=20 align=4 + base size=20 base align=4 +QInputDialog (0xb4797e80) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 8u) + QDialog (0xb4797ec0) 0 + primary-for QInputDialog (0xb4797e80) + QWidget (0xb47d3f50) 0 + primary-for QDialog (0xb4797ec0) + QObject (0xb47deca8) 0 + primary-for QWidget (0xb47d3f50) + QPaintDevice (0xb47dece4) 8 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 244u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMessageBox) +8 QMessageBox::metaObject +12 QMessageBox::qt_metacast +16 QMessageBox::qt_metacall +20 QMessageBox::~QMessageBox +24 QMessageBox::~QMessageBox +28 QMessageBox::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QMessageBox::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QMessageBox::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QMessageBox::resizeEvent +136 QMessageBox::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QMessageBox::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QMessageBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QMessageBox) +244 QMessageBox::_ZThn8_N11QMessageBoxD1Ev +248 QMessageBox::_ZThn8_N11QMessageBoxD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=20 align=4 + base size=20 base align=4 +QMessageBox (0xb47f1280) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 8u) + QDialog (0xb47f12c0) 0 + primary-for QMessageBox (0xb47f1280) + QWidget (0xb47f66e0) 0 + primary-for QDialog (0xb47f12c0) + QObject (0xb47eaf78) 0 + primary-for QWidget (0xb47f66e0) + QPaintDevice (0xb47eafb4) 8 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 244u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4806dd4) 0 + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QPageSetupDialog) +8 QPageSetupDialog::metaObject +12 QPageSetupDialog::qt_metacast +16 QPageSetupDialog::qt_metacall +20 QPageSetupDialog::~QPageSetupDialog +24 QPageSetupDialog::~QPageSetupDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 QPageSetupDialog::exec +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI16QPageSetupDialog) +248 QPageSetupDialog::_ZThn8_N16QPageSetupDialogD1Ev +252 QPageSetupDialog::_ZThn8_N16QPageSetupDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=20 align=4 + base size=20 base align=4 +QPageSetupDialog (0xb47f17c0) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 8u) + QAbstractPageSetupDialog (0xb47f1800) 0 + primary-for QPageSetupDialog (0xb47f17c0) + QDialog (0xb47f1840) 0 + primary-for QAbstractPageSetupDialog (0xb47f1800) + QWidget (0xb482d4b0) 0 + primary-for QDialog (0xb47f1840) + QObject (0xb48380b4) 0 + primary-for QWidget (0xb482d4b0) + QPaintDevice (0xb48380f0) 8 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 248u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QUnixPrintWidget) +8 QUnixPrintWidget::metaObject +12 QUnixPrintWidget::qt_metacast +16 QUnixPrintWidget::qt_metacall +20 QUnixPrintWidget::~QUnixPrintWidget +24 QUnixPrintWidget::~QUnixPrintWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI16QUnixPrintWidget) +232 QUnixPrintWidget::_ZThn8_N16QUnixPrintWidgetD1Ev +236 QUnixPrintWidget::_ZThn8_N16QUnixPrintWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=24 align=4 + base size=24 base align=4 +QUnixPrintWidget (0xb47f1b00) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 8u) + QWidget (0xb48429b0) 0 + primary-for QUnixPrintWidget (0xb47f1b00) + QObject (0xb4838d20) 0 + primary-for QWidget (0xb48429b0) + QPaintDevice (0xb4838d5c) 8 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 232u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPrintDialog) +8 QPrintDialog::metaObject +12 QPrintDialog::qt_metacast +16 QPrintDialog::qt_metacall +20 QPrintDialog::~QPrintDialog +24 QPrintDialog::~QPrintDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QPrintDialog::accept +232 QDialog::reject +236 QPrintDialog::exec +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI12QPrintDialog) +248 QPrintDialog::_ZThn8_N12QPrintDialogD1Ev +252 QPrintDialog::_ZThn8_N12QPrintDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=20 align=4 + base size=20 base align=4 +QPrintDialog (0xb47f1d40) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 8u) + QAbstractPrintDialog (0xb47f1d80) 0 + primary-for QPrintDialog (0xb47f1d40) + QDialog (0xb47f1dc0) 0 + primary-for QAbstractPrintDialog (0xb47f1d80) + QWidget (0xb484f910) 0 + primary-for QDialog (0xb47f1dc0) + QObject (0xb48524b0) 0 + primary-for QWidget (0xb484f910) + QPaintDevice (0xb48524ec) 8 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 248u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +8 QPrintPreviewDialog::metaObject +12 QPrintPreviewDialog::qt_metacast +16 QPrintPreviewDialog::qt_metacall +20 QPrintPreviewDialog::~QPrintPreviewDialog +24 QPrintPreviewDialog::~QPrintPreviewDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QPrintPreviewDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +244 QPrintPreviewDialog::_ZThn8_N19QPrintPreviewDialogD1Ev +248 QPrintPreviewDialog::_ZThn8_N19QPrintPreviewDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=24 align=4 + base size=24 base align=4 +QPrintPreviewDialog (0xb4653080) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 8u) + QDialog (0xb46530c0) 0 + primary-for QPrintPreviewDialog (0xb4653080) + QWidget (0xb4649cd0) 0 + primary-for QDialog (0xb46530c0) + QObject (0xb4852e88) 0 + primary-for QWidget (0xb4649cd0) + QPaintDevice (0xb4852ec4) 8 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 244u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QProgressDialog) +8 QProgressDialog::metaObject +12 QProgressDialog::qt_metacast +16 QProgressDialog::qt_metacall +20 QProgressDialog::~QProgressDialog +24 QProgressDialog::~QProgressDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QProgressDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QProgressDialog::resizeEvent +136 QProgressDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QProgressDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QProgressDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI15QProgressDialog) +244 QProgressDialog::_ZThn8_N15QProgressDialogD1Ev +248 QProgressDialog::_ZThn8_N15QProgressDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=20 align=4 + base size=20 base align=4 +QProgressDialog (0xb4653380) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 8u) + QDialog (0xb46533c0) 0 + primary-for QProgressDialog (0xb4653380) + QWidget (0xb4662280) 0 + primary-for QDialog (0xb46533c0) + QObject (0xb465a8e8) 0 + primary-for QWidget (0xb4662280) + QPaintDevice (0xb465a924) 8 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 244u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QWizard) +8 QWizard::metaObject +12 QWizard::qt_metacast +16 QWizard::qt_metacall +20 QWizard::~QWizard +24 QWizard::~QWizard +28 QWizard::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWizard::setVisible +64 QWizard::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWizard::paintEvent +128 QWidget::moveEvent +132 QWizard::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QWizard::done +228 QDialog::accept +232 QDialog::reject +236 QWizard::validateCurrentPage +240 QWizard::nextId +244 QWizard::initializePage +248 QWizard::cleanupPage +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI7QWizard) +260 QWizard::_ZThn8_N7QWizardD1Ev +264 QWizard::_ZThn8_N7QWizardD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=20 align=4 + base size=20 base align=4 +QWizard (0xb4653680) 0 + vptr=((& QWizard::_ZTV7QWizard) + 8u) + QDialog (0xb46536c0) 0 + primary-for QWizard (0xb4653680) + QWidget (0xb466bb40) 0 + primary-for QDialog (0xb46536c0) + QObject (0xb4673564) 0 + primary-for QWidget (0xb466bb40) + QPaintDevice (0xb46735a0) 8 + vptr=((& QWizard::_ZTV7QWizard) + 260u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4680924) 0 + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWizardPage) +8 QWizardPage::metaObject +12 QWizardPage::qt_metacast +16 QWizardPage::qt_metacall +20 QWizardPage::~QWizardPage +24 QWizardPage::~QWizardPage +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QWizardPage::initializePage +228 QWizardPage::cleanupPage +232 QWizardPage::validatePage +236 QWizardPage::isComplete +240 QWizardPage::nextId +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI11QWizardPage) +252 QWizardPage::_ZThn8_N11QWizardPageD1Ev +256 QWizardPage::_ZThn8_N11QWizardPageD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=20 align=4 + base size=20 base align=4 +QWizardPage (0xb4653a40) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 8u) + QWidget (0xb46919b0) 0 + primary-for QWizardPage (0xb4653a40) + QObject (0xb469a4b0) 0 + primary-for QWidget (0xb46919b0) + QPaintDevice (0xb469a4ec) 8 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 252u) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QGraphicsItem) +8 QGraphicsItem::~QGraphicsItem +12 QGraphicsItem::~QGraphicsItem +16 QGraphicsItem::advance +20 __cxa_pure_virtual +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsItem::isObscuredBy +44 QGraphicsItem::opaqueArea +48 __cxa_pure_virtual +52 QGraphicsItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QGraphicsItem + size=8 align=4 + base size=8 base align=4 +QGraphicsItem (0xb46af1e0) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb46da924) 0 + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +8 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +12 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +16 QGraphicsItem::advance +20 __cxa_pure_virtual +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QAbstractGraphicsShapeItem::isObscuredBy +44 QAbstractGraphicsShapeItem::opaqueArea +48 __cxa_pure_virtual +52 QGraphicsItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=8 align=4 + base size=8 base align=4 +QAbstractGraphicsShapeItem (0xb46f4400) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 8u) + QGraphicsItem (0xb46fda8c) 0 + primary-for QAbstractGraphicsShapeItem (0xb46f4400) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsPathItem) +8 QGraphicsPathItem::~QGraphicsPathItem +12 QGraphicsPathItem::~QGraphicsPathItem +16 QGraphicsItem::advance +20 QGraphicsPathItem::boundingRect +24 QGraphicsPathItem::shape +28 QGraphicsPathItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPathItem::isObscuredBy +44 QGraphicsPathItem::opaqueArea +48 QGraphicsPathItem::paint +52 QGraphicsPathItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPathItem::supportsExtension +148 QGraphicsPathItem::setExtension +152 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPathItem (0xb46f4500) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 8u) + QAbstractGraphicsShapeItem (0xb46f4540) 0 + primary-for QGraphicsPathItem (0xb46f4500) + QGraphicsItem (0xb4709168) 0 + primary-for QAbstractGraphicsShapeItem (0xb46f4540) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsRectItem) +8 QGraphicsRectItem::~QGraphicsRectItem +12 QGraphicsRectItem::~QGraphicsRectItem +16 QGraphicsItem::advance +20 QGraphicsRectItem::boundingRect +24 QGraphicsRectItem::shape +28 QGraphicsRectItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsRectItem::isObscuredBy +44 QGraphicsRectItem::opaqueArea +48 QGraphicsRectItem::paint +52 QGraphicsRectItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsRectItem::supportsExtension +148 QGraphicsRectItem::setExtension +152 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=8 align=4 + base size=8 base align=4 +QGraphicsRectItem (0xb46f4640) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 8u) + QAbstractGraphicsShapeItem (0xb46f4680) 0 + primary-for QGraphicsRectItem (0xb46f4640) + QGraphicsItem (0xb4709924) 0 + primary-for QAbstractGraphicsShapeItem (0xb46f4680) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +8 QGraphicsEllipseItem::~QGraphicsEllipseItem +12 QGraphicsEllipseItem::~QGraphicsEllipseItem +16 QGraphicsItem::advance +20 QGraphicsEllipseItem::boundingRect +24 QGraphicsEllipseItem::shape +28 QGraphicsEllipseItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsEllipseItem::isObscuredBy +44 QGraphicsEllipseItem::opaqueArea +48 QGraphicsEllipseItem::paint +52 QGraphicsEllipseItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsEllipseItem::supportsExtension +148 QGraphicsEllipseItem::setExtension +152 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=8 align=4 + base size=8 base align=4 +QGraphicsEllipseItem (0xb46f47c0) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 8u) + QAbstractGraphicsShapeItem (0xb46f4800) 0 + primary-for QGraphicsEllipseItem (0xb46f47c0) + QGraphicsItem (0xb471c258) 0 + primary-for QAbstractGraphicsShapeItem (0xb46f4800) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +8 QGraphicsPolygonItem::~QGraphicsPolygonItem +12 QGraphicsPolygonItem::~QGraphicsPolygonItem +16 QGraphicsItem::advance +20 QGraphicsPolygonItem::boundingRect +24 QGraphicsPolygonItem::shape +28 QGraphicsPolygonItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPolygonItem::isObscuredBy +44 QGraphicsPolygonItem::opaqueArea +48 QGraphicsPolygonItem::paint +52 QGraphicsPolygonItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPolygonItem::supportsExtension +148 QGraphicsPolygonItem::setExtension +152 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPolygonItem (0xb46f4940) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 8u) + QAbstractGraphicsShapeItem (0xb46f4980) 0 + primary-for QGraphicsPolygonItem (0xb46f4940) + QGraphicsItem (0xb471cbf4) 0 + primary-for QAbstractGraphicsShapeItem (0xb46f4980) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsLineItem) +8 QGraphicsLineItem::~QGraphicsLineItem +12 QGraphicsLineItem::~QGraphicsLineItem +16 QGraphicsItem::advance +20 QGraphicsLineItem::boundingRect +24 QGraphicsLineItem::shape +28 QGraphicsLineItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsLineItem::isObscuredBy +44 QGraphicsLineItem::opaqueArea +48 QGraphicsLineItem::paint +52 QGraphicsLineItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsLineItem::supportsExtension +148 QGraphicsLineItem::setExtension +152 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=8 align=4 + base size=8 base align=4 +QGraphicsLineItem (0xb46f4a80) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 8u) + QGraphicsItem (0xb472e384) 0 + primary-for QGraphicsLineItem (0xb46f4a80) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +8 QGraphicsPixmapItem::~QGraphicsPixmapItem +12 QGraphicsPixmapItem::~QGraphicsPixmapItem +16 QGraphicsItem::advance +20 QGraphicsPixmapItem::boundingRect +24 QGraphicsPixmapItem::shape +28 QGraphicsPixmapItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPixmapItem::isObscuredBy +44 QGraphicsPixmapItem::opaqueArea +48 QGraphicsPixmapItem::paint +52 QGraphicsPixmapItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPixmapItem::supportsExtension +148 QGraphicsPixmapItem::setExtension +152 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPixmapItem (0xb46f4bc0) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 8u) + QGraphicsItem (0xb472ed20) 0 + primary-for QGraphicsPixmapItem (0xb46f4bc0) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsTextItem) +8 QGraphicsTextItem::metaObject +12 QGraphicsTextItem::qt_metacast +16 QGraphicsTextItem::qt_metacall +20 QGraphicsTextItem::~QGraphicsTextItem +24 QGraphicsTextItem::~QGraphicsTextItem +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsTextItem::boundingRect +60 QGraphicsTextItem::shape +64 QGraphicsTextItem::contains +68 QGraphicsTextItem::paint +72 QGraphicsTextItem::isObscuredBy +76 QGraphicsTextItem::opaqueArea +80 QGraphicsTextItem::type +84 QGraphicsTextItem::sceneEvent +88 QGraphicsTextItem::mousePressEvent +92 QGraphicsTextItem::mouseMoveEvent +96 QGraphicsTextItem::mouseReleaseEvent +100 QGraphicsTextItem::mouseDoubleClickEvent +104 QGraphicsTextItem::contextMenuEvent +108 QGraphicsTextItem::keyPressEvent +112 QGraphicsTextItem::keyReleaseEvent +116 QGraphicsTextItem::focusInEvent +120 QGraphicsTextItem::focusOutEvent +124 QGraphicsTextItem::dragEnterEvent +128 QGraphicsTextItem::dragLeaveEvent +132 QGraphicsTextItem::dragMoveEvent +136 QGraphicsTextItem::dropEvent +140 QGraphicsTextItem::inputMethodEvent +144 QGraphicsTextItem::hoverEnterEvent +148 QGraphicsTextItem::hoverMoveEvent +152 QGraphicsTextItem::hoverLeaveEvent +156 QGraphicsTextItem::inputMethodQuery +160 QGraphicsTextItem::supportsExtension +164 QGraphicsTextItem::setExtension +168 QGraphicsTextItem::extension +172 (int (*)(...))-0x000000008 +176 (int (*)(...))(& _ZTI17QGraphicsTextItem) +180 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItemD1Ev +184 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItemD0Ev +188 QGraphicsItem::advance +192 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem12boundingRectEv +196 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem5shapeEv +200 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem8containsERK7QPointF +204 QGraphicsItem::collidesWithItem +208 QGraphicsItem::collidesWithPath +212 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +216 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem10opaqueAreaEv +220 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +224 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem4typeEv +228 QGraphicsItem::sceneEventFilter +232 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem10sceneEventEP6QEvent +236 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +240 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +244 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +248 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +252 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +256 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +260 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +264 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +268 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +272 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +276 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +280 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +284 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +288 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +292 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +296 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +300 QGraphicsItem::wheelEvent +304 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +308 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +312 QGraphicsItem::itemChange +316 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +320 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +324 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=20 align=4 + base size=20 base align=4 +QGraphicsTextItem (0xb47450f0) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 8u) + QObject (0xb473f618) 0 + primary-for QGraphicsTextItem (0xb47450f0) + QGraphicsItem (0xb473f654) 8 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 180u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +8 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +12 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +16 QGraphicsItem::advance +20 QGraphicsSimpleTextItem::boundingRect +24 QGraphicsSimpleTextItem::shape +28 QGraphicsSimpleTextItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsSimpleTextItem::isObscuredBy +44 QGraphicsSimpleTextItem::opaqueArea +48 QGraphicsSimpleTextItem::paint +52 QGraphicsSimpleTextItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsSimpleTextItem::supportsExtension +148 QGraphicsSimpleTextItem::setExtension +152 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=8 align=4 + base size=8 base align=4 +QGraphicsSimpleTextItem (0xb46f4f00) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 8u) + QAbstractGraphicsShapeItem (0xb46f4f40) 0 + primary-for QGraphicsSimpleTextItem (0xb46f4f00) + QGraphicsItem (0xb4552870) 0 + primary-for QAbstractGraphicsShapeItem (0xb46f4f40) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +8 QGraphicsItemGroup::~QGraphicsItemGroup +12 QGraphicsItemGroup::~QGraphicsItemGroup +16 QGraphicsItem::advance +20 QGraphicsItemGroup::boundingRect +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsItemGroup::isObscuredBy +44 QGraphicsItemGroup::opaqueArea +48 QGraphicsItemGroup::paint +52 QGraphicsItemGroup::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=8 align=4 + base size=8 base align=4 +QGraphicsItemGroup (0xb4560040) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 8u) + QGraphicsItem (0xb4562000) 0 + primary-for QGraphicsItemGroup (0xb4560040) + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4562870) 0 empty + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4562a14) 0 empty + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +8 QGraphicsLayoutItem::~QGraphicsLayoutItem +12 QGraphicsLayoutItem::~QGraphicsLayoutItem +16 QGraphicsLayoutItem::setGeometry +20 QGraphicsLayoutItem::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=8 align=4 + base size=8 base align=4 +QGraphicsLayoutItem (0xb4562bb8) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 8u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QGraphicsLayout) +8 QGraphicsLayout::~QGraphicsLayout +12 QGraphicsLayout::~QGraphicsLayout +16 QGraphicsLayoutItem::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 __cxa_pure_virtual +32 QGraphicsLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QGraphicsLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsLayout (0xb45607c0) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 8u) + QGraphicsLayoutItem (0xb45799d8) 0 + primary-for QGraphicsLayout (0xb45607c0) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +8 QGraphicsGridLayout::~QGraphicsGridLayout +12 QGraphicsGridLayout::~QGraphicsGridLayout +16 QGraphicsGridLayout::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 QGraphicsGridLayout::sizeHint +32 QGraphicsGridLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 QGraphicsGridLayout::count +44 QGraphicsGridLayout::itemAt +48 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsGridLayout (0xb45608c0) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 8u) + QGraphicsLayout (0xb4560900) 0 + primary-for QGraphicsGridLayout (0xb45608c0) + QGraphicsLayoutItem (0xb45880f0) 0 + primary-for QGraphicsLayout (0xb4560900) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +8 QGraphicsItemAnimation::metaObject +12 QGraphicsItemAnimation::qt_metacast +16 QGraphicsItemAnimation::qt_metacall +20 QGraphicsItemAnimation::~QGraphicsItemAnimation +24 QGraphicsItemAnimation::~QGraphicsItemAnimation +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsItemAnimation::beforeAnimationStep +60 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=12 align=4 + base size=12 base align=4 +QGraphicsItemAnimation (0xb4560a40) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 8u) + QObject (0xb4588ac8) 0 + primary-for QGraphicsItemAnimation (0xb4560a40) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +8 QGraphicsLinearLayout::~QGraphicsLinearLayout +12 QGraphicsLinearLayout::~QGraphicsLinearLayout +16 QGraphicsLinearLayout::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 QGraphicsLinearLayout::sizeHint +32 QGraphicsLinearLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 QGraphicsLinearLayout::count +44 QGraphicsLinearLayout::itemAt +48 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsLinearLayout (0xb4560c80) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 8u) + QGraphicsLayout (0xb4560cc0) 0 + primary-for QGraphicsLinearLayout (0xb4560c80) + QGraphicsLayoutItem (0xb45a5438) 0 + primary-for QGraphicsLayout (0xb4560cc0) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QGraphicsWidget) +8 QGraphicsWidget::metaObject +12 QGraphicsWidget::qt_metacast +16 QGraphicsWidget::qt_metacall +20 QGraphicsWidget::~QGraphicsWidget +24 QGraphicsWidget::~QGraphicsWidget +28 QGraphicsWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsWidget::setGeometry +60 QGraphicsWidget::getContentsMargins +64 QGraphicsWidget::type +68 QGraphicsWidget::paint +72 QGraphicsWidget::paintWindowFrame +76 QGraphicsWidget::boundingRect +80 QGraphicsWidget::shape +84 QGraphicsWidget::initStyleOption +88 QGraphicsWidget::sizeHint +92 QGraphicsWidget::updateGeometry +96 QGraphicsWidget::itemChange +100 QGraphicsWidget::propertyChange +104 QGraphicsWidget::sceneEvent +108 QGraphicsWidget::windowFrameEvent +112 QGraphicsWidget::windowFrameSectionAt +116 QGraphicsWidget::changeEvent +120 QGraphicsWidget::closeEvent +124 QGraphicsWidget::focusInEvent +128 QGraphicsWidget::focusNextPrevChild +132 QGraphicsWidget::focusOutEvent +136 QGraphicsWidget::hideEvent +140 QGraphicsWidget::moveEvent +144 QGraphicsWidget::polishEvent +148 QGraphicsWidget::resizeEvent +152 QGraphicsWidget::showEvent +156 QGraphicsWidget::hoverMoveEvent +160 QGraphicsWidget::hoverLeaveEvent +164 QGraphicsWidget::grabMouseEvent +168 QGraphicsWidget::ungrabMouseEvent +172 QGraphicsWidget::grabKeyboardEvent +176 QGraphicsWidget::ungrabKeyboardEvent +180 (int (*)(...))-0x000000008 +184 (int (*)(...))(& _ZTI15QGraphicsWidget) +188 QGraphicsWidget::_ZThn8_N15QGraphicsWidgetD1Ev +192 QGraphicsWidget::_ZThn8_N15QGraphicsWidgetD0Ev +196 QGraphicsItem::advance +200 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget12boundingRectEv +204 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget5shapeEv +208 QGraphicsItem::contains +212 QGraphicsItem::collidesWithItem +216 QGraphicsItem::collidesWithPath +220 QGraphicsItem::isObscuredBy +224 QGraphicsItem::opaqueArea +228 QGraphicsWidget::_ZThn8_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +232 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget4typeEv +236 QGraphicsItem::sceneEventFilter +240 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10sceneEventEP6QEvent +244 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +252 QGraphicsItem::dragLeaveEvent +256 QGraphicsItem::dragMoveEvent +260 QGraphicsItem::dropEvent +264 QGraphicsWidget::_ZThn8_N15QGraphicsWidget12focusInEventEP11QFocusEvent +268 QGraphicsWidget::_ZThn8_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +272 QGraphicsItem::hoverEnterEvent +276 QGraphicsWidget::_ZThn8_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +280 QGraphicsWidget::_ZThn8_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +284 QGraphicsItem::keyPressEvent +288 QGraphicsItem::keyReleaseEvent +292 QGraphicsItem::mousePressEvent +296 QGraphicsItem::mouseMoveEvent +300 QGraphicsItem::mouseReleaseEvent +304 QGraphicsItem::mouseDoubleClickEvent +308 QGraphicsItem::wheelEvent +312 QGraphicsItem::inputMethodEvent +316 QGraphicsItem::inputMethodQuery +320 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +324 QGraphicsItem::supportsExtension +328 QGraphicsItem::setExtension +332 QGraphicsItem::extension +336 (int (*)(...))-0x000000010 +340 (int (*)(...))(& _ZTI15QGraphicsWidget) +344 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +348 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +352 QGraphicsWidget::_ZThn16_N15QGraphicsWidget11setGeometryERK6QRectF +356 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +360 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14updateGeometryEv +364 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=24 align=4 + base size=24 base align=4 +QGraphicsWidget (0xb45b22d0) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 8u) + QObject (0xb45b3000) 0 + primary-for QGraphicsWidget (0xb45b22d0) + QGraphicsItem (0xb45b303c) 8 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 188u) + QGraphicsLayoutItem (0xb45b3078) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 344u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 101u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +8 QGraphicsProxyWidget::metaObject +12 QGraphicsProxyWidget::qt_metacast +16 QGraphicsProxyWidget::qt_metacall +20 QGraphicsProxyWidget::~QGraphicsProxyWidget +24 QGraphicsProxyWidget::~QGraphicsProxyWidget +28 QGraphicsProxyWidget::event +32 QGraphicsProxyWidget::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsProxyWidget::setGeometry +60 QGraphicsWidget::getContentsMargins +64 QGraphicsProxyWidget::type +68 QGraphicsProxyWidget::paint +72 QGraphicsWidget::paintWindowFrame +76 QGraphicsWidget::boundingRect +80 QGraphicsWidget::shape +84 QGraphicsWidget::initStyleOption +88 QGraphicsProxyWidget::sizeHint +92 QGraphicsWidget::updateGeometry +96 QGraphicsProxyWidget::itemChange +100 QGraphicsWidget::propertyChange +104 QGraphicsWidget::sceneEvent +108 QGraphicsWidget::windowFrameEvent +112 QGraphicsWidget::windowFrameSectionAt +116 QGraphicsWidget::changeEvent +120 QGraphicsWidget::closeEvent +124 QGraphicsProxyWidget::focusInEvent +128 QGraphicsProxyWidget::focusNextPrevChild +132 QGraphicsProxyWidget::focusOutEvent +136 QGraphicsProxyWidget::hideEvent +140 QGraphicsWidget::moveEvent +144 QGraphicsWidget::polishEvent +148 QGraphicsProxyWidget::resizeEvent +152 QGraphicsProxyWidget::showEvent +156 QGraphicsProxyWidget::hoverMoveEvent +160 QGraphicsProxyWidget::hoverLeaveEvent +164 QGraphicsProxyWidget::grabMouseEvent +168 QGraphicsProxyWidget::ungrabMouseEvent +172 QGraphicsWidget::grabKeyboardEvent +176 QGraphicsWidget::ungrabKeyboardEvent +180 QGraphicsProxyWidget::contextMenuEvent +184 QGraphicsProxyWidget::hoverEnterEvent +188 QGraphicsProxyWidget::mouseMoveEvent +192 QGraphicsProxyWidget::mousePressEvent +196 QGraphicsProxyWidget::mouseReleaseEvent +200 QGraphicsProxyWidget::mouseDoubleClickEvent +204 QGraphicsProxyWidget::wheelEvent +208 QGraphicsProxyWidget::keyPressEvent +212 QGraphicsProxyWidget::keyReleaseEvent +216 (int (*)(...))-0x000000008 +220 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +224 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidgetD1Ev +228 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidgetD0Ev +232 QGraphicsItem::advance +236 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget12boundingRectEv +240 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget5shapeEv +244 QGraphicsItem::contains +248 QGraphicsItem::collidesWithItem +252 QGraphicsItem::collidesWithPath +256 QGraphicsItem::isObscuredBy +260 QGraphicsItem::opaqueArea +264 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +268 QGraphicsProxyWidget::_ZThn8_NK20QGraphicsProxyWidget4typeEv +272 QGraphicsItem::sceneEventFilter +276 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10sceneEventEP6QEvent +280 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +284 QGraphicsItem::dragEnterEvent +288 QGraphicsItem::dragLeaveEvent +292 QGraphicsItem::dragMoveEvent +296 QGraphicsItem::dropEvent +300 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +304 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +308 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +312 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +316 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +320 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +324 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +328 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +332 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +336 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +340 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +344 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +348 QGraphicsItem::inputMethodEvent +352 QGraphicsItem::inputMethodQuery +356 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +360 QGraphicsItem::supportsExtension +364 QGraphicsItem::setExtension +368 QGraphicsItem::extension +372 (int (*)(...))-0x000000010 +376 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +380 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +384 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +388 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget11setGeometryERK6QRectF +392 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +396 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14updateGeometryEv +400 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=24 align=4 + base size=24 base align=4 +QGraphicsProxyWidget (0xb45cc180) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 8u) + QGraphicsWidget (0xb45c5870) 0 + primary-for QGraphicsProxyWidget (0xb45cc180) + QObject (0xb45cd7f8) 0 + primary-for QGraphicsWidget (0xb45c5870) + QGraphicsItem (0xb45cd834) 8 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 224u) + QGraphicsLayoutItem (0xb45cd870) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 380u) + +Class QPen + size=4 align=4 + base size=4 base align=4 +QPen (0xb45dfb7c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb45ec3fc) 0 empty + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QGraphicsScene) +8 QGraphicsScene::metaObject +12 QGraphicsScene::qt_metacast +16 QGraphicsScene::qt_metacall +20 QGraphicsScene::~QGraphicsScene +24 QGraphicsScene::~QGraphicsScene +28 QGraphicsScene::event +32 QGraphicsScene::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsScene::inputMethodQuery +60 QGraphicsScene::contextMenuEvent +64 QGraphicsScene::dragEnterEvent +68 QGraphicsScene::dragMoveEvent +72 QGraphicsScene::dragLeaveEvent +76 QGraphicsScene::dropEvent +80 QGraphicsScene::focusInEvent +84 QGraphicsScene::focusOutEvent +88 QGraphicsScene::helpEvent +92 QGraphicsScene::keyPressEvent +96 QGraphicsScene::keyReleaseEvent +100 QGraphicsScene::mousePressEvent +104 QGraphicsScene::mouseMoveEvent +108 QGraphicsScene::mouseReleaseEvent +112 QGraphicsScene::mouseDoubleClickEvent +116 QGraphicsScene::wheelEvent +120 QGraphicsScene::inputMethodEvent +124 QGraphicsScene::drawBackground +128 QGraphicsScene::drawForeground +132 QGraphicsScene::drawItems + +Class QGraphicsScene + size=8 align=4 + base size=8 base align=4 +QGraphicsScene (0xb45cc6c0) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 8u) + QObject (0xb45ec690) 0 + primary-for QGraphicsScene (0xb45cc6c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4610384) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4610dd4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4610d5c) 0 + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +8 QGraphicsSceneEvent::~QGraphicsSceneEvent +12 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneEvent (0xb45ccd80) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 8u) + QEvent (0xb4637618) 0 + primary-for QGraphicsSceneEvent (0xb45ccd80) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +8 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +12 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneMouseEvent (0xb45cce80) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 8u) + QGraphicsSceneEvent (0xb45ccec0) 0 + primary-for QGraphicsSceneMouseEvent (0xb45cce80) + QEvent (0xb4637ac8) 0 + primary-for QGraphicsSceneEvent (0xb45ccec0) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +8 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +12 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneWheelEvent (0xb45ccfc0) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 8u) + QGraphicsSceneEvent (0xb4452000) 0 + primary-for QGraphicsSceneWheelEvent (0xb45ccfc0) + QEvent (0xb4637f00) 0 + primary-for QGraphicsSceneEvent (0xb4452000) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +8 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +12 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneContextMenuEvent (0xb4452100) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 8u) + QGraphicsSceneEvent (0xb4452140) 0 + primary-for QGraphicsSceneContextMenuEvent (0xb4452100) + QEvent (0xb44592d0) 0 + primary-for QGraphicsSceneEvent (0xb4452140) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +8 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +12 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneHoverEvent (0xb4452240) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 8u) + QGraphicsSceneEvent (0xb4452280) 0 + primary-for QGraphicsSceneHoverEvent (0xb4452240) + QEvent (0xb44597f8) 0 + primary-for QGraphicsSceneEvent (0xb4452280) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +8 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +12 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneHelpEvent (0xb4452380) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 8u) + QGraphicsSceneEvent (0xb44523c0) 0 + primary-for QGraphicsSceneHelpEvent (0xb4452380) + QEvent (0xb4459c30) 0 + primary-for QGraphicsSceneEvent (0xb44523c0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +8 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +12 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneDragDropEvent (0xb44524c0) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 8u) + QGraphicsSceneEvent (0xb4452500) 0 + primary-for QGraphicsSceneDragDropEvent (0xb44524c0) + QEvent (0xb445999c) 0 + primary-for QGraphicsSceneEvent (0xb4452500) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +8 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +12 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneResizeEvent (0xb4452600) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 8u) + QGraphicsSceneEvent (0xb4452640) 0 + primary-for QGraphicsSceneResizeEvent (0xb4452600) + QEvent (0xb44653c0) 0 + primary-for QGraphicsSceneEvent (0xb4452640) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +8 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +12 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneMoveEvent (0xb4452740) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 8u) + QGraphicsSceneEvent (0xb4452780) 0 + primary-for QGraphicsSceneMoveEvent (0xb4452740) + QEvent (0xb4465708) 0 + primary-for QGraphicsSceneEvent (0xb4452780) + +Class QTextOption::Tab + size=16 align=4 + base size=14 base align=4 +QTextOption::Tab (0xb4465a8c) 0 + +Class QTextOption + size=24 align=4 + base size=24 base align=4 +QTextOption (0xb4465a50) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4487168) 0 + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4496744) 0 empty + +Class QPainter + size=4 align=4 + base size=4 base align=4 +QPainter (0xb4496a50) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb44da528) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb44f8f78) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb44f8f00) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb451c0f0) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb451c078) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb451c834) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb451c7bc) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb451c99c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb451c924) 0 + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractScrollArea) +8 QAbstractScrollArea::metaObject +12 QAbstractScrollArea::qt_metacast +16 QAbstractScrollArea::qt_metacall +20 QAbstractScrollArea::~QAbstractScrollArea +24 QAbstractScrollArea::~QAbstractScrollArea +28 QAbstractScrollArea::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QAbstractScrollArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QAbstractScrollArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI19QAbstractScrollArea) +240 QAbstractScrollArea::_ZThn8_N19QAbstractScrollAreaD1Ev +244 QAbstractScrollArea::_ZThn8_N19QAbstractScrollAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=20 align=4 + base size=20 base align=4 +QAbstractScrollArea (0xb434de40) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 8u) + QFrame (0xb434de80) 0 + primary-for QAbstractScrollArea (0xb434de40) + QWidget (0xb439c320) 0 + primary-for QFrame (0xb434de80) + QObject (0xb4397474) 0 + primary-for QWidget (0xb439c320) + QPaintDevice (0xb43974b0) 8 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 240u) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QScrollArea) +8 QScrollArea::metaObject +12 QScrollArea::qt_metacast +16 QScrollArea::qt_metacall +20 QScrollArea::~QScrollArea +24 QScrollArea::~QScrollArea +28 QScrollArea::event +32 QScrollArea::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QScrollArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QScrollArea::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QScrollArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI11QScrollArea) +240 QScrollArea::_ZThn8_N11QScrollAreaD1Ev +244 QScrollArea::_ZThn8_N11QScrollAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=20 align=4 + base size=20 base align=4 +QScrollArea (0xb43ac140) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 8u) + QAbstractScrollArea (0xb43ac180) 0 + primary-for QScrollArea (0xb43ac140) + QFrame (0xb43ac1c0) 0 + primary-for QAbstractScrollArea (0xb43ac180) + QWidget (0xb43a5d20) 0 + primary-for QFrame (0xb43ac1c0) + QObject (0xb43ae384) 0 + primary-for QWidget (0xb43a5d20) + QPaintDevice (0xb43ae3c0) 8 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 240u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QGraphicsView) +8 QGraphicsView::metaObject +12 QGraphicsView::qt_metacast +16 QGraphicsView::qt_metacall +20 QGraphicsView::~QGraphicsView +24 QGraphicsView::~QGraphicsView +28 QGraphicsView::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QGraphicsView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGraphicsView::mousePressEvent +84 QGraphicsView::mouseReleaseEvent +88 QGraphicsView::mouseDoubleClickEvent +92 QGraphicsView::mouseMoveEvent +96 QGraphicsView::wheelEvent +100 QGraphicsView::keyPressEvent +104 QGraphicsView::keyReleaseEvent +108 QGraphicsView::focusInEvent +112 QGraphicsView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGraphicsView::paintEvent +128 QWidget::moveEvent +132 QGraphicsView::resizeEvent +136 QWidget::closeEvent +140 QGraphicsView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QGraphicsView::dragEnterEvent +156 QGraphicsView::dragMoveEvent +160 QGraphicsView::dragLeaveEvent +164 QGraphicsView::dropEvent +168 QGraphicsView::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QGraphicsView::inputMethodEvent +192 QGraphicsView::inputMethodQuery +196 QGraphicsView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QGraphicsView::viewportEvent +228 QGraphicsView::scrollContentsBy +232 QGraphicsView::drawBackground +236 QGraphicsView::drawForeground +240 QGraphicsView::drawItems +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI13QGraphicsView) +252 QGraphicsView::_ZThn8_N13QGraphicsViewD1Ev +256 QGraphicsView::_ZThn8_N13QGraphicsViewD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=20 align=4 + base size=20 base align=4 +QGraphicsView (0xb43ac480) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 8u) + QAbstractScrollArea (0xb43ac4c0) 0 + primary-for QGraphicsView (0xb43ac480) + QFrame (0xb43ac500) 0 + primary-for QAbstractScrollArea (0xb43ac4c0) + QWidget (0xb43b6b90) 0 + primary-for QFrame (0xb43ac500) + QObject (0xb43c0258) 0 + primary-for QWidget (0xb43b6b90) + QPaintDevice (0xb43c0294) 8 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 252u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb43dab40) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb43e9744) 0 + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBitmap) +8 QBitmap::~QBitmap +12 QBitmap::~QBitmap +16 QPixmap::devType +20 QPixmap::paintEngine +24 QPixmap::metric + +Class QBitmap + size=12 align=4 + base size=12 base align=4 +QBitmap (0xb43acc40) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 8u) + QPixmap (0xb43acc80) 0 + primary-for QBitmap (0xb43acc40) + QPaintDevice (0xb4407f3c) 0 + primary-for QPixmap (0xb43acc80) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QIconEngine) +8 QIconEngine::~QIconEngine +12 QIconEngine::~QIconEngine +16 __cxa_pure_virtual +20 QIconEngine::actualSize +24 QIconEngine::pixmap +28 QIconEngine::addPixmap +32 QIconEngine::addFile + +Class QIconEngine + size=4 align=4 + base size=4 base align=4 +QIconEngine (0xb442f5a0) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 8u) + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QIconEngineV2) +8 QIconEngineV2::~QIconEngineV2 +12 QIconEngineV2::~QIconEngineV2 +16 __cxa_pure_virtual +20 QIconEngine::actualSize +24 QIconEngine::pixmap +28 QIconEngine::addPixmap +32 QIconEngine::addFile +36 QIconEngineV2::key +40 QIconEngineV2::clone +44 QIconEngineV2::read +48 QIconEngineV2::write +52 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=4 align=4 + base size=4 base align=4 +QIconEngineV2 (0xb442a480) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 8u) + QIconEngine (0xb442f960) 0 nearly-empty + primary-for QIconEngineV2 (0xb442a480) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +8 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +12 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=4 align=4 + base size=4 base align=4 +QIconEngineFactoryInterface (0xb442a500) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 8u) + QFactoryInterface (0xb442fb04) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0xb442a500) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QIconEnginePlugin) +8 QIconEnginePlugin::metaObject +12 QIconEnginePlugin::qt_metacast +16 QIconEnginePlugin::qt_metacall +20 QIconEnginePlugin::~QIconEnginePlugin +24 QIconEnginePlugin::~QIconEnginePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI17QIconEnginePlugin) +72 QIconEnginePlugin::_ZThn8_N17QIconEnginePluginD1Ev +76 QIconEnginePlugin::_ZThn8_N17QIconEnginePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QIconEnginePlugin + size=12 align=4 + base size=12 base align=4 +QIconEnginePlugin (0xb44388c0) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 8u) + QObject (0xb442fe4c) 0 + primary-for QIconEnginePlugin (0xb44388c0) + QIconEngineFactoryInterface (0xb442a6c0) 8 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 72u) + QFactoryInterface (0xb442fe88) 8 nearly-empty + primary-for QIconEngineFactoryInterface (0xb442a6c0) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +8 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +12 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=4 align=4 + base size=4 base align=4 +QIconEngineFactoryInterfaceV2 (0xb442a900) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 8u) + QFactoryInterface (0xb44435a0) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0xb442a900) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +8 QIconEnginePluginV2::metaObject +12 QIconEnginePluginV2::qt_metacast +16 QIconEnginePluginV2::qt_metacall +20 QIconEnginePluginV2::~QIconEnginePluginV2 +24 QIconEnginePluginV2::~QIconEnginePluginV2 +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +72 QIconEnginePluginV2::_ZThn8_N19QIconEnginePluginV2D1Ev +76 QIconEnginePluginV2::_ZThn8_N19QIconEnginePluginV2D0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=12 align=4 + base size=12 base align=4 +QIconEnginePluginV2 (0xb4442dc0) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 8u) + QObject (0xb4443924) 0 + primary-for QIconEnginePluginV2 (0xb4442dc0) + QIconEngineFactoryInterfaceV2 (0xb442aa80) 8 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 72u) + QFactoryInterface (0xb4443960) 8 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0xb442aa80) + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QImageIOHandler) +8 QImageIOHandler::~QImageIOHandler +12 QImageIOHandler::~QImageIOHandler +16 QImageIOHandler::name +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QImageIOHandler::write +32 QImageIOHandler::option +36 QImageIOHandler::setOption +40 QImageIOHandler::supportsOption +44 QImageIOHandler::jumpToNextImage +48 QImageIOHandler::jumpToImage +52 QImageIOHandler::loopCount +56 QImageIOHandler::imageCount +60 QImageIOHandler::nextImageDelay +64 QImageIOHandler::currentImageNumber +68 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=8 align=4 + base size=8 base align=4 +QImageIOHandler (0xb425712c) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 8u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +8 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +12 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=4 align=4 + base size=4 base align=4 +QImageIOHandlerFactoryInterface (0xb442ad80) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 8u) + QFactoryInterface (0xb42577bc) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0xb442ad80) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QImageIOPlugin) +8 QImageIOPlugin::metaObject +12 QImageIOPlugin::qt_metacast +16 QImageIOPlugin::qt_metacall +20 QImageIOPlugin::~QImageIOPlugin +24 QImageIOPlugin::~QImageIOPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 (int (*)(...))-0x000000008 +72 (int (*)(...))(& _ZTI14QImageIOPlugin) +76 QImageIOPlugin::_ZThn8_N14QImageIOPluginD1Ev +80 QImageIOPlugin::_ZThn8_N14QImageIOPluginD0Ev +84 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QImageIOPlugin + size=12 align=4 + base size=12 base align=4 +QImageIOPlugin (0xb425daf0) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 8u) + QObject (0xb4257b40) 0 + primary-for QImageIOPlugin (0xb425daf0) + QImageIOHandlerFactoryInterface (0xb442af00) 8 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 76u) + QFactoryInterface (0xb4257b7c) 8 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0xb442af00) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb42695a0) 0 + +Class QImageReader + size=4 align=4 + base size=4 base align=4 +QImageReader (0xb427b168) 0 + +Class QImageWriter + size=4 align=4 + base size=4 base align=4 +QImageWriter (0xb427b618) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QMovie) +8 QMovie::metaObject +12 QMovie::qt_metacast +16 QMovie::qt_metacall +20 QMovie::~QMovie +24 QMovie::~QMovie +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QMovie + size=8 align=4 + base size=8 base align=4 +QMovie (0xb4267240) 0 + vptr=((& QMovie::_ZTV6QMovie) + 8u) + QObject (0xb427ba8c) 0 + primary-for QMovie (0xb4267240) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QPicture) +8 QPicture::~QPicture +12 QPicture::~QPicture +16 QPicture::devType +20 QPicture::paintEngine +24 QPicture::metric +28 QPicture::setData + +Class QPicture + size=12 align=4 + base size=12 base align=4 +QPicture (0xb4267800) 0 + vptr=((& QPicture::_ZTV8QPicture) + 8u) + QPaintDevice (0xb42ac960) 0 + primary-for QPicture (0xb4267800) + +Class QPictureIO + size=4 align=4 + base size=4 base align=4 +QPictureIO (0xb42b9690) 0 + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QPictureFormatInterface) +8 QPictureFormatInterface::~QPictureFormatInterface +12 QPictureFormatInterface::~QPictureFormatInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QPictureFormatInterface + size=4 align=4 + base size=4 base align=4 +QPictureFormatInterface (0xb4267a80) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 8u) + QFactoryInterface (0xb42b99d8) 0 nearly-empty + primary-for QPictureFormatInterface (0xb4267a80) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +8 QPictureFormatPlugin::metaObject +12 QPictureFormatPlugin::qt_metacast +16 QPictureFormatPlugin::qt_metacall +20 QPictureFormatPlugin::~QPictureFormatPlugin +24 QPictureFormatPlugin::~QPictureFormatPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 QPictureFormatPlugin::loadPicture +64 QPictureFormatPlugin::savePicture +68 __cxa_pure_virtual +72 (int (*)(...))-0x000000008 +76 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +80 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPluginD1Ev +84 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPluginD0Ev +88 __cxa_pure_virtual +92 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +96 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +100 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=12 align=4 + base size=12 base align=4 +QPictureFormatPlugin (0xb42c5320) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 8u) + QObject (0xb42b9ce4) 0 + primary-for QPictureFormatPlugin (0xb42c5320) + QPictureFormatInterface (0xb4267c40) 8 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 80u) + QFactoryInterface (0xb42b9d20) 8 nearly-empty + primary-for QPictureFormatInterface (0xb4267c40) + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0xb42cc4ec) 0 empty + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QAction) +8 QAction::metaObject +12 QAction::qt_metacast +16 QAction::qt_metacall +20 QAction::~QAction +24 QAction::~QAction +28 QAction::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QAction + size=8 align=4 + base size=8 base align=4 +QAction (0xb4267e80) 0 + vptr=((& QAction::_ZTV7QAction) + 8u) + QObject (0xb42cc528) 0 + primary-for QAction (0xb4267e80) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QActionGroup) +8 QActionGroup::metaObject +12 QActionGroup::qt_metacast +16 QActionGroup::qt_metacall +20 QActionGroup::~QActionGroup +24 QActionGroup::~QActionGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QActionGroup + size=8 align=4 + base size=8 base align=4 +QActionGroup (0xb42e6580) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 8u) + QObject (0xb42f1708) 0 + primary-for QActionGroup (0xb42e6580) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb42ff528) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb42ff4b0) 0 + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QInputContext) +8 QInputContext::metaObject +12 QInputContext::qt_metacast +16 QInputContext::qt_metacall +20 QInputContext::~QInputContext +24 QInputContext::~QInputContext +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 QInputContext::update +72 QInputContext::mouseHandler +76 QInputContext::font +80 __cxa_pure_virtual +84 QInputContext::setFocusWidget +88 QInputContext::widgetDestroyed +92 QInputContext::actions +96 QInputContext::x11FilterEvent +100 QInputContext::filterEvent + +Class QInputContext + size=8 align=4 + base size=8 base align=4 +QInputContext (0xb42e6a00) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 8u) + QObject (0xb42ff708) 0 + primary-for QInputContext (0xb42e6a00) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0xb43242d0) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +8 QInputContextFactoryInterface::~QInputContextFactoryInterface +12 QInputContextFactoryInterface::~QInputContextFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=4 align=4 + base size=4 base align=4 +QInputContextFactoryInterface (0xb42e6cc0) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 8u) + QFactoryInterface (0xb432430c) 0 nearly-empty + primary-for QInputContextFactoryInterface (0xb42e6cc0) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QInputContextPlugin) +8 QInputContextPlugin::metaObject +12 QInputContextPlugin::qt_metacast +16 QInputContextPlugin::qt_metacall +20 QInputContextPlugin::~QInputContextPlugin +24 QInputContextPlugin::~QInputContextPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 (int (*)(...))-0x000000008 +80 (int (*)(...))(& _ZTI19QInputContextPlugin) +84 QInputContextPlugin::_ZThn8_N19QInputContextPluginD1Ev +88 QInputContextPlugin::_ZThn8_N19QInputContextPluginD0Ev +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual + +Class QInputContextPlugin + size=12 align=4 + base size=12 base align=4 +QInputContextPlugin (0xb4320fa0) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 8u) + QObject (0xb4324618) 0 + primary-for QInputContextPlugin (0xb4320fa0) + QInputContextFactoryInterface (0xb42e6e80) 8 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 84u) + QFactoryInterface (0xb4324654) 8 nearly-empty + primary-for QInputContextFactoryInterface (0xb42e6e80) + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QValidator) +8 QValidator::metaObject +12 QValidator::qt_metacast +16 QValidator::qt_metacall +20 QValidator::~QValidator +24 QValidator::~QValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 QValidator::fixup + +Class QValidator + size=8 align=4 + base size=8 base align=4 +QValidator (0xb43300c0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 8u) + QObject (0xb4324e4c) 0 + primary-for QValidator (0xb43300c0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QIntValidator) +8 QIntValidator::metaObject +12 QIntValidator::qt_metacast +16 QIntValidator::qt_metacall +20 QIntValidator::~QIntValidator +24 QIntValidator::~QIntValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIntValidator::validate +60 QValidator::fixup +64 QIntValidator::setRange + +Class QIntValidator + size=16 align=4 + base size=16 base align=4 +QIntValidator (0xb4330380) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 8u) + QValidator (0xb43303c0) 0 + primary-for QIntValidator (0xb4330380) + QObject (0xb4337c6c) 0 + primary-for QValidator (0xb43303c0) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QDoubleValidator) +8 QDoubleValidator::metaObject +12 QDoubleValidator::qt_metacast +16 QDoubleValidator::qt_metacall +20 QDoubleValidator::~QDoubleValidator +24 QDoubleValidator::~QDoubleValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDoubleValidator::validate +60 QValidator::fixup +64 QDoubleValidator::setRange + +Class QDoubleValidator + size=28 align=4 + base size=28 base align=4 +QDoubleValidator (0xb4330680) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 8u) + QValidator (0xb43306c0) 0 + primary-for QDoubleValidator (0xb4330680) + QObject (0xb4342bb8) 0 + primary-for QValidator (0xb43306c0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QRegExpValidator) +8 QRegExpValidator::metaObject +12 QRegExpValidator::qt_metacast +16 QRegExpValidator::qt_metacall +20 QRegExpValidator::~QRegExpValidator +24 QRegExpValidator::~QRegExpValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QRegExpValidator::validate +60 QValidator::fixup + +Class QRegExpValidator + size=12 align=4 + base size=12 base align=4 +QRegExpValidator (0xb4330a40) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 8u) + QValidator (0xb4330a80) 0 + primary-for QRegExpValidator (0xb4330a40) + QObject (0xb4151ec4) 0 + primary-for QValidator (0xb4330a80) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QAbstractSpinBox) +8 QAbstractSpinBox::metaObject +12 QAbstractSpinBox::qt_metacast +16 QAbstractSpinBox::qt_metacall +20 QAbstractSpinBox::~QAbstractSpinBox +24 QAbstractSpinBox::~QAbstractSpinBox +28 QAbstractSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSpinBox::validate +228 QAbstractSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI16QAbstractSpinBox) +252 QAbstractSpinBox::_ZThn8_N16QAbstractSpinBoxD1Ev +256 QAbstractSpinBox::_ZThn8_N16QAbstractSpinBoxD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=20 align=4 + base size=20 base align=4 +QAbstractSpinBox (0xb4330d00) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 8u) + QWidget (0xb416a0a0) 0 + primary-for QAbstractSpinBox (0xb4330d00) + QObject (0xb415fca8) 0 + primary-for QWidget (0xb416a0a0) + QPaintDevice (0xb415fce4) 8 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 252u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb416de88) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractSlider) +8 QAbstractSlider::metaObject +12 QAbstractSlider::qt_metacast +16 QAbstractSlider::qt_metacall +20 QAbstractSlider::~QAbstractSlider +24 QAbstractSlider::~QAbstractSlider +28 QAbstractSlider::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSlider::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI15QAbstractSlider) +236 QAbstractSlider::_ZThn8_N15QAbstractSliderD1Ev +240 QAbstractSlider::_ZThn8_N15QAbstractSliderD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=20 align=4 + base size=20 base align=4 +QAbstractSlider (0xb4186080) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 8u) + QWidget (0xb4184820) 0 + primary-for QAbstractSlider (0xb4186080) + QObject (0xb4185a14) 0 + primary-for QWidget (0xb4184820) + QPaintDevice (0xb4185a50) 8 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 236u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QSlider) +8 QSlider::metaObject +12 QSlider::qt_metacast +16 QSlider::qt_metacall +20 QSlider::~QSlider +24 QSlider::~QSlider +28 QSlider::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSlider::sizeHint +68 QSlider::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSlider::mousePressEvent +84 QSlider::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSlider::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSlider::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSlider::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI7QSlider) +236 QSlider::_ZThn8_N7QSliderD1Ev +240 QSlider::_ZThn8_N7QSliderD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=20 align=4 + base size=20 base align=4 +QSlider (0xb4186600) 0 + vptr=((& QSlider::_ZTV7QSlider) + 8u) + QAbstractSlider (0xb4186640) 0 + primary-for QSlider (0xb4186600) + QWidget (0xb41a5f00) 0 + primary-for QAbstractSlider (0xb4186640) + QObject (0xb41ae924) 0 + primary-for QWidget (0xb41a5f00) + QPaintDevice (0xb41ae960) 8 + vptr=((& QSlider::_ZTV7QSlider) + 236u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QStyle) +8 QStyle::metaObject +12 QStyle::qt_metacast +16 QStyle::qt_metacall +20 QStyle::~QStyle +24 QStyle::~QStyle +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyle::polish +60 QStyle::unpolish +64 QStyle::polish +68 QStyle::unpolish +72 QStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 __cxa_pure_virtual +120 __cxa_pure_virtual +124 __cxa_pure_virtual +128 __cxa_pure_virtual +132 __cxa_pure_virtual +136 __cxa_pure_virtual + +Class QStyle + size=8 align=4 + base size=8 base align=4 +QStyle (0xb4186a00) 0 + vptr=((& QStyle::_ZTV6QStyle) + 8u) + QObject (0xb41c4384) 0 + primary-for QStyle (0xb4186a00) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb41e5d20) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb41f9924) 0 + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QTabBar) +8 QTabBar::metaObject +12 QTabBar::qt_metacast +16 QTabBar::qt_metacall +20 QTabBar::~QTabBar +24 QTabBar::~QTabBar +28 QTabBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QTabBar::sizeHint +68 QTabBar::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTabBar::mousePressEvent +84 QTabBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QTabBar::mouseMoveEvent +96 QWidget::wheelEvent +100 QTabBar::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTabBar::paintEvent +128 QWidget::moveEvent +132 QTabBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QTabBar::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTabBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTabBar::tabSizeHint +228 QTabBar::tabInserted +232 QTabBar::tabRemoved +236 QTabBar::tabLayoutChange +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI7QTabBar) +248 QTabBar::_ZThn8_N7QTabBarD1Ev +252 QTabBar::_ZThn8_N7QTabBarD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=20 align=4 + base size=20 base align=4 +QTabBar (0xb4186e80) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 8u) + QWidget (0xb42230a0) 0 + primary-for QTabBar (0xb4186e80) + QObject (0xb42195a0) 0 + primary-for QWidget (0xb42230a0) + QPaintDevice (0xb42195dc) 8 + vptr=((& QTabBar::_ZTV7QTabBar) + 248u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTabWidget) +8 QTabWidget::metaObject +12 QTabWidget::qt_metacast +16 QTabWidget::qt_metacall +20 QTabWidget::~QTabWidget +24 QTabWidget::~QTabWidget +28 QTabWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QTabWidget::sizeHint +68 QTabWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QTabWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTabWidget::paintEvent +128 QWidget::moveEvent +132 QTabWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QTabWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTabWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTabWidget::tabInserted +228 QTabWidget::tabRemoved +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI10QTabWidget) +240 QTabWidget::_ZThn8_N10QTabWidgetD1Ev +244 QTabWidget::_ZThn8_N10QTabWidgetD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=20 align=4 + base size=20 base align=4 +QTabWidget (0xb4232180) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 8u) + QWidget (0xb422da00) 0 + primary-for QTabWidget (0xb4232180) + QObject (0xb4235618) 0 + primary-for QWidget (0xb422da00) + QPaintDevice (0xb4235654) 8 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 240u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QRubberBand) +8 QRubberBand::metaObject +12 QRubberBand::qt_metacast +16 QRubberBand::qt_metacall +20 QRubberBand::~QRubberBand +24 QRubberBand::~QRubberBand +28 QRubberBand::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QRubberBand::paintEvent +128 QRubberBand::moveEvent +132 QRubberBand::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QRubberBand::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QRubberBand::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QRubberBand) +232 QRubberBand::_ZThn8_N11QRubberBandD1Ev +236 QRubberBand::_ZThn8_N11QRubberBandD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=20 align=4 + base size=20 base align=4 +QRubberBand (0xb42329c0) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 8u) + QWidget (0xb4049d20) 0 + primary-for QRubberBand (0xb42329c0) + QObject (0xb405cac8) 0 + primary-for QWidget (0xb4049d20) + QPaintDevice (0xb405cb04) 8 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 232u) + +Class QStyleOption + size=44 align=4 + base size=44 base align=4 +QStyleOption (0xb406bb40) 0 + +Class QStyleOptionFocusRect + size=60 align=4 + base size=60 base align=4 +QStyleOptionFocusRect (0xb4232e40) 0 + QStyleOption (0xb4079258) 0 + +Class QStyleOptionFrame + size=52 align=4 + base size=52 base align=4 +QStyleOptionFrame (0xb407e040) 0 + QStyleOption (0xb4079780) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4079f3c) 0 + +Class QStyleOptionFrameV2 + size=56 align=4 + base size=56 base align=4 +QStyleOptionFrameV2 (0xb407e240) 0 + QStyleOptionFrame (0xb407e280) 0 + QStyleOption (0xb4079ca8) 0 + +Class QStyleOptionTabWidgetFrame + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabWidgetFrame (0xb407e6c0) 0 + QStyleOption (0xb409d2d0) 0 + +Class QStyleOptionTabBarBase + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabBarBase (0xb407e8c0) 0 + QStyleOption (0xb409d8e8) 0 + +Class QStyleOptionHeader + size=80 align=4 + base size=80 base align=4 +QStyleOptionHeader (0xb407eac0) 0 + QStyleOption (0xb409dec4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb40b18ac) 0 + +Class QStyleOptionButton + size=64 align=4 + base size=64 base align=4 +QStyleOptionButton (0xb407ed80) 0 + QStyleOption (0xb40b15a0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb40c9dd4) 0 + +Class QStyleOptionTab + size=72 align=4 + base size=72 base align=4 +QStyleOptionTab (0xb40ca080) 0 + QStyleOption (0xb40c98ac) 0 + +Class QStyleOptionTabV2 + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabV2 (0xb40ca3c0) 0 + QStyleOptionTab (0xb40ca400) 0 + QStyleOption (0xb40e6e4c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4102ac8) 0 + +Class QStyleOptionToolBar + size=68 align=4 + base size=68 base align=4 +QStyleOptionToolBar (0xb40ca740) 0 + QStyleOption (0xb4102654) 0 + +Class QStyleOptionProgressBar + size=68 align=4 + base size=65 base align=4 +QStyleOptionProgressBar (0xb40caa40) 0 + QStyleOption (0xb4116b04) 0 + +Class QStyleOptionProgressBarV2 + size=76 align=4 + base size=74 base align=4 +QStyleOptionProgressBarV2 (0xb40cac80) 0 + QStyleOptionProgressBar (0xb40cacc0) 0 + QStyleOption (0xb412f03c) 0 + +Class QStyleOptionMenuItem + size=96 align=4 + base size=96 base align=4 +QStyleOptionMenuItem (0xb40cad00) 0 + QStyleOption (0xb412f474) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb412fe10) 0 + +Class QStyleOptionQ3ListViewItem + size=64 align=4 + base size=64 base align=4 +QStyleOptionQ3ListViewItem (0xb40caf40) 0 + QStyleOption (0xb412fb04) 0 + +Class QStyleOptionQ3DockWindow + size=48 align=4 + base size=46 base align=4 +QStyleOptionQ3DockWindow (0xb4142240) 0 + QStyleOption (0xb4143e4c) 0 + +Class QStyleOptionDockWidget + size=52 align=4 + base size=51 base align=4 +QStyleOptionDockWidget (0xb4142440) 0 + QStyleOption (0xb3f5f348) 0 + +Class QStyleOptionDockWidgetV2 + size=52 align=4 + base size=52 base align=4 +QStyleOptionDockWidgetV2 (0xb4142640) 0 + QStyleOptionDockWidget (0xb4142680) 0 + QStyleOption (0xb3f5f870) 0 + +Class QStyleOptionViewItem + size=80 align=4 + base size=77 base align=4 +QStyleOptionViewItem (0xb41429c0) 0 + QStyleOption (0xb3f7003c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3f708ac) 0 + +Class QStyleOptionViewItemV2 + size=84 align=4 + base size=84 base align=4 +QStyleOptionViewItemV2 (0xb4142c40) 0 + QStyleOptionViewItem (0xb4142c80) 0 + QStyleOption (0xb3f70618) 0 + +Class QStyleOptionViewItemV3 + size=92 align=4 + base size=92 base align=4 +QStyleOptionViewItemV3 (0xb3f830c0) 0 + QStyleOptionViewItemV2 (0xb3f83100) 0 + QStyleOptionViewItem (0xb3f83140) 0 + QStyleOption (0xb3f86ca8) 0 + +Class QStyleOptionViewItemV4 + size=128 align=4 + base size=128 base align=4 +QStyleOptionViewItemV4 (0xb3f83480) 0 + QStyleOptionViewItemV3 (0xb3f834c0) 0 + QStyleOptionViewItemV2 (0xb3f83500) 0 + QStyleOptionViewItem (0xb3f83540) 0 + QStyleOption (0xb3f9d4b0) 0 + +Class QStyleOptionToolBox + size=52 align=4 + base size=52 base align=4 +QStyleOptionToolBox (0xb3f83880) 0 + QStyleOption (0xb3f9dd5c) 0 + +Class QStyleOptionToolBoxV2 + size=60 align=4 + base size=60 base align=4 +QStyleOptionToolBoxV2 (0xb3f83a80) 0 + QStyleOptionToolBox (0xb3f83ac0) 0 + QStyleOption (0xb3fb3294) 0 + +Class QStyleOptionRubberBand + size=52 align=4 + base size=49 base align=4 +QStyleOptionRubberBand (0xb3f83e00) 0 + QStyleOption (0xb3fb3c30) 0 + +Class QStyleOptionComplex + size=52 align=4 + base size=52 base align=4 +QStyleOptionComplex (0xb3fc2000) 0 + QStyleOption (0xb3fc01e0) 0 + +Class QStyleOptionSlider + size=104 align=4 + base size=101 base align=4 +QStyleOptionSlider (0xb3fc2280) 0 + QStyleOptionComplex (0xb3fc22c0) 0 + QStyleOption (0xb3fc09d8) 0 + +Class QStyleOptionSpinBox + size=64 align=4 + base size=61 base align=4 +QStyleOptionSpinBox (0xb3fc2600) 0 + QStyleOptionComplex (0xb3fc2640) 0 + QStyleOption (0xb3fd3078) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3fd3870) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3fd37f8) 0 + +Class QStyleOptionQ3ListView + size=84 align=4 + base size=81 base align=4 +QStyleOptionQ3ListView (0xb3fc2880) 0 + QStyleOptionComplex (0xb3fc28c0) 0 + QStyleOption (0xb3fd3708) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3ff30f0) 0 + +Class QStyleOptionToolButton + size=96 align=4 + base size=96 base align=4 +QStyleOptionToolButton (0xb3fc2b80) 0 + QStyleOptionComplex (0xb3fc2bc0) 0 + QStyleOption (0xb3fd3e10) 0 + +Class QStyleOptionComboBox + size=92 align=4 + base size=92 base align=4 +QStyleOptionComboBox (0xb3fc2ec0) 0 + QStyleOptionComplex (0xb3fc2f00) 0 + QStyleOption (0xb400e12c) 0 + +Class QStyleOptionTitleBar + size=68 align=4 + base size=68 base align=4 +QStyleOptionTitleBar (0xb401a100) 0 + QStyleOptionComplex (0xb401a140) 0 + QStyleOption (0xb400e690) 0 + +Class QStyleOptionGroupBox + size=88 align=4 + base size=88 base align=4 +QStyleOptionGroupBox (0xb401a380) 0 + QStyleOptionComplex (0xb401a3c0) 0 + QStyleOption (0xb400ebb8) 0 + +Class QStyleOptionSizeGrip + size=56 align=4 + base size=56 base align=4 +QStyleOptionSizeGrip (0xb401a640) 0 + QStyleOptionComplex (0xb401a680) 0 + QStyleOption (0xb402f12c) 0 + +Class QStyleOptionGraphicsItem + size=132 align=4 + base size=132 base align=4 +QStyleOptionGraphicsItem (0xb401a880) 0 + QStyleOption (0xb402f654) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0xb402fbf4) 0 + +Class QStyleHintReturnMask + size=12 align=4 + base size=12 base align=4 +QStyleHintReturnMask (0xb401ac80) 0 + QStyleHintReturn (0xb402fe10) 0 + +Class QStyleHintReturnVariant + size=20 align=4 + base size=20 base align=4 +QStyleHintReturnVariant (0xb401ad00) 0 + QStyleHintReturn (0xb402ff00) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +8 QAbstractItemDelegate::metaObject +12 QAbstractItemDelegate::qt_metacast +16 QAbstractItemDelegate::qt_metacall +20 QAbstractItemDelegate::~QAbstractItemDelegate +24 QAbstractItemDelegate::~QAbstractItemDelegate +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAbstractItemDelegate::createEditor +68 QAbstractItemDelegate::setEditorData +72 QAbstractItemDelegate::setModelData +76 QAbstractItemDelegate::updateEditorGeometry +80 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=8 align=4 + base size=8 base align=4 +QAbstractItemDelegate (0xb401afc0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 8u) + QObject (0xb3e4f0f0) 0 + primary-for QAbstractItemDelegate (0xb401afc0) + +Class QItemSelectionRange + size=8 align=4 + base size=8 base align=4 +QItemSelectionRange (0xb3e4fc6c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3e7e7f8) 0 empty + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QItemSelectionModel) +8 QItemSelectionModel::metaObject +12 QItemSelectionModel::qt_metacast +16 QItemSelectionModel::qt_metacall +20 QItemSelectionModel::~QItemSelectionModel +24 QItemSelectionModel::~QItemSelectionModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QItemSelectionModel::select +60 QItemSelectionModel::select +64 QItemSelectionModel::clear +68 QItemSelectionModel::reset + +Class QItemSelectionModel + size=8 align=4 + base size=8 base align=4 +QItemSelectionModel (0xb3e52bc0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 8u) + QObject (0xb3e7ec6c) 0 + primary-for QItemSelectionModel (0xb3e52bc0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3e95f3c) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3ea9bb8) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3ea9b40) 0 + +Class QItemSelection + size=4 align=4 + base size=4 base align=4 +QItemSelection (0xb3ed1000) 0 + QList (0xb3ea9bf4) 0 + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAbstractItemView) +8 QAbstractItemView::metaObject +12 QAbstractItemView::qt_metacast +16 QAbstractItemView::qt_metacall +20 QAbstractItemView::~QAbstractItemView +24 QAbstractItemView::~QAbstractItemView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QAbstractScrollArea::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 __cxa_pure_virtual +248 __cxa_pure_virtual +252 __cxa_pure_virtual +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QAbstractItemView::reset +268 QAbstractItemView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QAbstractItemView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QAbstractItemView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 __cxa_pure_virtual +344 __cxa_pure_virtual +348 __cxa_pure_virtual +352 __cxa_pure_virtual +356 __cxa_pure_virtual +360 __cxa_pure_virtual +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI17QAbstractItemView) +392 QAbstractItemView::_ZThn8_N17QAbstractItemViewD1Ev +396 QAbstractItemView::_ZThn8_N17QAbstractItemViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=20 align=4 + base size=20 base align=4 +QAbstractItemView (0xb3ed1180) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 8u) + QAbstractScrollArea (0xb3ed11c0) 0 + primary-for QAbstractItemView (0xb3ed1180) + QFrame (0xb3ed1200) 0 + primary-for QAbstractScrollArea (0xb3ed11c0) + QWidget (0xb3ed3320) 0 + primary-for QFrame (0xb3ed1200) + QObject (0xb3ea9f00) 0 + primary-for QWidget (0xb3ed3320) + QPaintDevice (0xb3ea9f3c) 8 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 392u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3ee9d5c) 0 + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractProxyModel) +8 QAbstractProxyModel::metaObject +12 QAbstractProxyModel::qt_metacast +16 QAbstractProxyModel::qt_metacall +20 QAbstractProxyModel::~QAbstractProxyModel +24 QAbstractProxyModel::~QAbstractProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 QAbstractProxyModel::data +80 QAbstractProxyModel::setData +84 QAbstractProxyModel::headerData +88 QAbstractProxyModel::setHeaderData +92 QAbstractProxyModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractProxyModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractProxyModel::submit +164 QAbstractProxyModel::revert +168 QAbstractProxyModel::setSourceModel +172 __cxa_pure_virtual +176 __cxa_pure_virtual +180 QAbstractProxyModel::mapSelectionToSource +184 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=8 align=4 + base size=8 base align=4 +QAbstractProxyModel (0xb3ed15c0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 8u) + QAbstractItemModel (0xb3ed1600) 0 + primary-for QAbstractProxyModel (0xb3ed15c0) + QObject (0xb3efd8e8) 0 + primary-for QAbstractItemModel (0xb3ed1600) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QColumnView) +8 QColumnView::metaObject +12 QColumnView::qt_metacast +16 QColumnView::qt_metacall +20 QColumnView::~QColumnView +24 QColumnView::~QColumnView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QColumnView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QColumnView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QColumnView::scrollContentsBy +232 QColumnView::setModel +236 QColumnView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QColumnView::visualRect +248 QColumnView::scrollTo +252 QColumnView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QAbstractItemView::reset +268 QColumnView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QColumnView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QColumnView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QAbstractItemView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QColumnView::moveCursor +344 QColumnView::horizontalOffset +348 QColumnView::verticalOffset +352 QColumnView::isIndexHidden +356 QColumnView::setSelection +360 QColumnView::visualRegionForSelection +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QColumnView::createColumn +388 (int (*)(...))-0x000000008 +392 (int (*)(...))(& _ZTI11QColumnView) +396 QColumnView::_ZThn8_N11QColumnViewD1Ev +400 QColumnView::_ZThn8_N11QColumnViewD0Ev +404 QWidget::_ZThn8_NK7QWidget7devTypeEv +408 QWidget::_ZThn8_NK7QWidget11paintEngineEv +412 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=20 align=4 + base size=20 base align=4 +QColumnView (0xb3ed18c0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 8u) + QAbstractItemView (0xb3ed1900) 0 + primary-for QColumnView (0xb3ed18c0) + QAbstractScrollArea (0xb3ed1940) 0 + primary-for QAbstractItemView (0xb3ed1900) + QFrame (0xb3ed1980) 0 + primary-for QAbstractScrollArea (0xb3ed1940) + QWidget (0xb3f19550) 0 + primary-for QFrame (0xb3ed1980) + QObject (0xb3f1f5dc) 0 + primary-for QWidget (0xb3f19550) + QPaintDevice (0xb3f1f618) 8 + vptr=((& QColumnView::_ZTV11QColumnView) + 396u) + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QDataWidgetMapper) +8 QDataWidgetMapper::metaObject +12 QDataWidgetMapper::qt_metacast +16 QDataWidgetMapper::qt_metacall +20 QDataWidgetMapper::~QDataWidgetMapper +24 QDataWidgetMapper::~QDataWidgetMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=8 align=4 + base size=8 base align=4 +QDataWidgetMapper (0xb3ed1c40) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 8u) + QObject (0xb3f305a0) 0 + primary-for QDataWidgetMapper (0xb3ed1c40) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFileIconProvider) +8 QFileIconProvider::~QFileIconProvider +12 QFileIconProvider::~QFileIconProvider +16 QFileIconProvider::icon +20 QFileIconProvider::icon +24 QFileIconProvider::type + +Class QFileIconProvider + size=8 align=4 + base size=8 base align=4 +QFileIconProvider (0xb3f4421c) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 8u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QDirModel) +8 QDirModel::metaObject +12 QDirModel::qt_metacast +16 QDirModel::qt_metacall +20 QDirModel::~QDirModel +24 QDirModel::~QDirModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDirModel::index +60 QDirModel::parent +64 QDirModel::rowCount +68 QDirModel::columnCount +72 QDirModel::hasChildren +76 QDirModel::data +80 QDirModel::setData +84 QDirModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QDirModel::mimeTypes +104 QDirModel::mimeData +108 QDirModel::dropMimeData +112 QDirModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QDirModel::flags +144 QDirModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QDirModel + size=8 align=4 + base size=8 base align=4 +QDirModel (0xb3d47000) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 8u) + QAbstractItemModel (0xb3d47040) 0 + primary-for QDirModel (0xb3d47000) + QObject (0xb3f447f8) 0 + primary-for QAbstractItemModel (0xb3d47040) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHeaderView) +8 QHeaderView::metaObject +12 QHeaderView::qt_metacast +16 QHeaderView::qt_metacall +20 QHeaderView::~QHeaderView +24 QHeaderView::~QHeaderView +28 QHeaderView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QHeaderView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QHeaderView::mousePressEvent +84 QHeaderView::mouseReleaseEvent +88 QHeaderView::mouseDoubleClickEvent +92 QHeaderView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QHeaderView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QHeaderView::viewportEvent +228 QHeaderView::scrollContentsBy +232 QHeaderView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QHeaderView::visualRect +248 QHeaderView::scrollTo +252 QHeaderView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QHeaderView::reset +268 QAbstractItemView::setRootIndex +272 QHeaderView::doItemsLayout +276 QAbstractItemView::selectAll +280 QHeaderView::dataChanged +284 QHeaderView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QHeaderView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QHeaderView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QHeaderView::moveCursor +344 QHeaderView::horizontalOffset +348 QHeaderView::verticalOffset +352 QHeaderView::isIndexHidden +356 QHeaderView::setSelection +360 QHeaderView::visualRegionForSelection +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QHeaderView::paintSection +388 QHeaderView::sectionSizeFromContents +392 (int (*)(...))-0x000000008 +396 (int (*)(...))(& _ZTI11QHeaderView) +400 QHeaderView::_ZThn8_N11QHeaderViewD1Ev +404 QHeaderView::_ZThn8_N11QHeaderViewD0Ev +408 QWidget::_ZThn8_NK7QWidget7devTypeEv +412 QWidget::_ZThn8_NK7QWidget11paintEngineEv +416 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=20 align=4 + base size=20 base align=4 +QHeaderView (0xb3d47300) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 8u) + QAbstractItemView (0xb3d47340) 0 + primary-for QHeaderView (0xb3d47300) + QAbstractScrollArea (0xb3d47380) 0 + primary-for QAbstractItemView (0xb3d47340) + QFrame (0xb3d473c0) 0 + primary-for QAbstractScrollArea (0xb3d47380) + QWidget (0xb3d54a50) 0 + primary-for QFrame (0xb3d473c0) + QObject (0xb3d56834) 0 + primary-for QWidget (0xb3d54a50) + QPaintDevice (0xb3d56870) 8 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 400u) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QItemDelegate) +8 QItemDelegate::metaObject +12 QItemDelegate::qt_metacast +16 QItemDelegate::qt_metacall +20 QItemDelegate::~QItemDelegate +24 QItemDelegate::~QItemDelegate +28 QObject::event +32 QItemDelegate::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QItemDelegate::paint +60 QItemDelegate::sizeHint +64 QItemDelegate::createEditor +68 QItemDelegate::setEditorData +72 QItemDelegate::setModelData +76 QItemDelegate::updateEditorGeometry +80 QItemDelegate::editorEvent +84 QItemDelegate::drawDisplay +88 QItemDelegate::drawDecoration +92 QItemDelegate::drawFocus +96 QItemDelegate::drawCheck + +Class QItemDelegate + size=8 align=4 + base size=8 base align=4 +QItemDelegate (0xb3d47780) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 8u) + QAbstractItemDelegate (0xb3d477c0) 0 + primary-for QItemDelegate (0xb3d47780) + QObject (0xb3d72d20) 0 + primary-for QAbstractItemDelegate (0xb3d477c0) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +8 QItemEditorCreatorBase::~QItemEditorCreatorBase +12 QItemEditorCreatorBase::~QItemEditorCreatorBase +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=4 align=4 + base size=4 base align=4 +QItemEditorCreatorBase (0xb3d898e8) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 8u) + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb3d98384) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb3d9830c) 0 + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QItemEditorFactory) +8 QItemEditorFactory::~QItemEditorFactory +12 QItemEditorFactory::~QItemEditorFactory +16 QItemEditorFactory::createEditor +20 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=8 align=4 + base size=8 base align=4 +QItemEditorFactory (0xb3d89e4c) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 8u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QListView) +8 QListView::metaObject +12 QListView::qt_metacast +16 QListView::qt_metacall +20 QListView::~QListView +24 QListView::~QListView +28 QListView::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI9QListView) +392 QListView::_ZThn8_N9QListViewD1Ev +396 QListView::_ZThn8_N9QListViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=20 align=4 + base size=20 base align=4 +QListView (0xb3d9a140) 0 + vptr=((& QListView::_ZTV9QListView) + 8u) + QAbstractItemView (0xb3d9a180) 0 + primary-for QListView (0xb3d9a140) + QAbstractScrollArea (0xb3d9a1c0) 0 + primary-for QAbstractItemView (0xb3d9a180) + QFrame (0xb3d9a200) 0 + primary-for QAbstractScrollArea (0xb3d9a1c0) + QWidget (0xb3da6d70) 0 + primary-for QFrame (0xb3d9a200) + QObject (0xb3d98654) 0 + primary-for QWidget (0xb3da6d70) + QPaintDevice (0xb3d98690) 8 + vptr=((& QListView::_ZTV9QListView) + 392u) + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb3dc0dd4) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3dc0d5c) 0 + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QListWidgetItem) +8 QListWidgetItem::~QListWidgetItem +12 QListWidgetItem::~QListWidgetItem +16 QListWidgetItem::clone +20 QListWidgetItem::setBackgroundColor +24 QListWidgetItem::data +28 QListWidgetItem::setData +32 QListWidgetItem::operator< +36 QListWidgetItem::read +40 QListWidgetItem::write + +Class QListWidgetItem + size=24 align=4 + base size=24 base align=4 +QListWidgetItem (0xb3dc08ac) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 8u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QListWidget) +8 QListWidget::metaObject +12 QListWidget::qt_metacast +16 QListWidget::qt_metacall +20 QListWidget::~QListWidget +24 QListWidget::~QListWidget +28 QListWidget::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QListWidget::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 QListWidget::mimeTypes +388 QListWidget::mimeData +392 QListWidget::dropMimeData +396 QListWidget::supportedDropActions +400 (int (*)(...))-0x000000008 +404 (int (*)(...))(& _ZTI11QListWidget) +408 QListWidget::_ZThn8_N11QListWidgetD1Ev +412 QListWidget::_ZThn8_N11QListWidgetD0Ev +416 QWidget::_ZThn8_NK7QWidget7devTypeEv +420 QWidget::_ZThn8_NK7QWidget11paintEngineEv +424 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=20 align=4 + base size=20 base align=4 +QListWidget (0xb3d9ad40) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 8u) + QListView (0xb3d9ad80) 0 + primary-for QListWidget (0xb3d9ad40) + QAbstractItemView (0xb3d9adc0) 0 + primary-for QListView (0xb3d9ad80) + QAbstractScrollArea (0xb3d9ae00) 0 + primary-for QAbstractItemView (0xb3d9adc0) + QFrame (0xb3d9ae40) 0 + primary-for QAbstractScrollArea (0xb3d9ae00) + QWidget (0xb3df9a50) 0 + primary-for QFrame (0xb3d9ae40) + QObject (0xb3e0221c) 0 + primary-for QWidget (0xb3df9a50) + QPaintDevice (0xb3e02258) 8 + vptr=((& QListWidget::_ZTV11QListWidget) + 408u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QProxyModel) +8 QProxyModel::metaObject +12 QProxyModel::qt_metacast +16 QProxyModel::qt_metacall +20 QProxyModel::~QProxyModel +24 QProxyModel::~QProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProxyModel::index +60 QProxyModel::parent +64 QProxyModel::rowCount +68 QProxyModel::columnCount +72 QProxyModel::hasChildren +76 QProxyModel::data +80 QProxyModel::setData +84 QProxyModel::headerData +88 QProxyModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QProxyModel::mimeTypes +104 QProxyModel::mimeData +108 QProxyModel::dropMimeData +112 QProxyModel::supportedDropActions +116 QProxyModel::insertRows +120 QProxyModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QProxyModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QProxyModel::flags +144 QProxyModel::sort +148 QAbstractItemModel::buddy +152 QProxyModel::match +156 QProxyModel::span +160 QProxyModel::submit +164 QProxyModel::revert +168 QProxyModel::setModel + +Class QProxyModel + size=8 align=4 + base size=8 base align=4 +QProxyModel (0xb3e19480) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 8u) + QAbstractItemModel (0xb3e194c0) 0 + primary-for QProxyModel (0xb3e19480) + QObject (0xb3e220b4) 0 + primary-for QAbstractItemModel (0xb3e194c0) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +8 QSortFilterProxyModel::metaObject +12 QSortFilterProxyModel::qt_metacast +16 QSortFilterProxyModel::qt_metacall +20 QSortFilterProxyModel::~QSortFilterProxyModel +24 QSortFilterProxyModel::~QSortFilterProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QSortFilterProxyModel::index +60 QSortFilterProxyModel::parent +64 QSortFilterProxyModel::rowCount +68 QSortFilterProxyModel::columnCount +72 QSortFilterProxyModel::hasChildren +76 QSortFilterProxyModel::data +80 QSortFilterProxyModel::setData +84 QSortFilterProxyModel::headerData +88 QSortFilterProxyModel::setHeaderData +92 QAbstractProxyModel::itemData +96 QAbstractItemModel::setItemData +100 QSortFilterProxyModel::mimeTypes +104 QSortFilterProxyModel::mimeData +108 QSortFilterProxyModel::dropMimeData +112 QSortFilterProxyModel::supportedDropActions +116 QSortFilterProxyModel::insertRows +120 QSortFilterProxyModel::insertColumns +124 QSortFilterProxyModel::removeRows +128 QSortFilterProxyModel::removeColumns +132 QSortFilterProxyModel::fetchMore +136 QSortFilterProxyModel::canFetchMore +140 QSortFilterProxyModel::flags +144 QSortFilterProxyModel::sort +148 QSortFilterProxyModel::buddy +152 QSortFilterProxyModel::match +156 QSortFilterProxyModel::span +160 QAbstractProxyModel::submit +164 QAbstractProxyModel::revert +168 QSortFilterProxyModel::setSourceModel +172 QSortFilterProxyModel::mapToSource +176 QSortFilterProxyModel::mapFromSource +180 QSortFilterProxyModel::mapSelectionToSource +184 QSortFilterProxyModel::mapSelectionFromSource +188 QSortFilterProxyModel::filterAcceptsRow +192 QSortFilterProxyModel::filterAcceptsColumn +196 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=8 align=4 + base size=8 base align=4 +QSortFilterProxyModel (0xb3e19780) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 8u) + QAbstractProxyModel (0xb3e197c0) 0 + primary-for QSortFilterProxyModel (0xb3e19780) + QAbstractItemModel (0xb3e19800) 0 + primary-for QAbstractProxyModel (0xb3e197c0) + QObject (0xb3e22f3c) 0 + primary-for QAbstractItemModel (0xb3e19800) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QStandardItem) +8 QStandardItem::~QStandardItem +12 QStandardItem::~QStandardItem +16 QStandardItem::data +20 QStandardItem::setData +24 QStandardItem::clone +28 QStandardItem::type +32 QStandardItem::read +36 QStandardItem::write +40 QStandardItem::operator< + +Class QStandardItem + size=8 align=4 + base size=8 base align=4 +QStandardItem (0xb3e37d98) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3cae780) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3cae708) 0 + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QStandardItemModel) +8 QStandardItemModel::metaObject +12 QStandardItemModel::qt_metacast +16 QStandardItemModel::qt_metacall +20 QStandardItemModel::~QStandardItemModel +24 QStandardItemModel::~QStandardItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStandardItemModel::index +60 QStandardItemModel::parent +64 QStandardItemModel::rowCount +68 QStandardItemModel::columnCount +72 QStandardItemModel::hasChildren +76 QStandardItemModel::data +80 QStandardItemModel::setData +84 QStandardItemModel::headerData +88 QStandardItemModel::setHeaderData +92 QStandardItemModel::itemData +96 QStandardItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QStandardItemModel::supportedDropActions +116 QStandardItemModel::insertRows +120 QStandardItemModel::insertColumns +124 QStandardItemModel::removeRows +128 QStandardItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QStandardItemModel::flags +144 QStandardItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QStandardItemModel + size=8 align=4 + base size=8 base align=4 +QStandardItemModel (0xb3ca0600) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 8u) + QAbstractItemModel (0xb3ca0640) 0 + primary-for QStandardItemModel (0xb3ca0600) + QObject (0xb3cc42d0) 0 + primary-for QAbstractItemModel (0xb3ca0640) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QStringListModel) +8 QStringListModel::metaObject +12 QStringListModel::qt_metacast +16 QStringListModel::qt_metacall +20 QStringListModel::~QStringListModel +24 QStringListModel::~QStringListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 QStringListModel::rowCount +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 QStringListModel::data +80 QStringListModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QStringListModel::supportedDropActions +116 QStringListModel::insertRows +120 QAbstractItemModel::insertColumns +124 QStringListModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QStringListModel::flags +144 QStringListModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QStringListModel + size=12 align=4 + base size=12 base align=4 +QStringListModel (0xb3ca0a40) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 8u) + QAbstractListModel (0xb3ca0a80) 0 + primary-for QStringListModel (0xb3ca0a40) + QAbstractItemModel (0xb3ca0ac0) 0 + primary-for QAbstractListModel (0xb3ca0a80) + QObject (0xb3ce1708) 0 + primary-for QAbstractItemModel (0xb3ca0ac0) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QStyledItemDelegate) +8 QStyledItemDelegate::metaObject +12 QStyledItemDelegate::qt_metacast +16 QStyledItemDelegate::qt_metacall +20 QStyledItemDelegate::~QStyledItemDelegate +24 QStyledItemDelegate::~QStyledItemDelegate +28 QObject::event +32 QStyledItemDelegate::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyledItemDelegate::paint +60 QStyledItemDelegate::sizeHint +64 QStyledItemDelegate::createEditor +68 QStyledItemDelegate::setEditorData +72 QStyledItemDelegate::setModelData +76 QStyledItemDelegate::updateEditorGeometry +80 QStyledItemDelegate::editorEvent +84 QStyledItemDelegate::displayText +88 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=8 align=4 + base size=8 base align=4 +QStyledItemDelegate (0xb3ca0d00) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 8u) + QAbstractItemDelegate (0xb3ca0d40) 0 + primary-for QStyledItemDelegate (0xb3ca0d00) + QObject (0xb3cfa1a4) 0 + primary-for QAbstractItemDelegate (0xb3ca0d40) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTableView) +8 QTableView::metaObject +12 QTableView::qt_metacast +16 QTableView::qt_metacall +20 QTableView::~QTableView +24 QTableView::~QTableView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QTableView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTableView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QTableView::scrollContentsBy +232 QTableView::setModel +236 QTableView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QTableView::visualRect +248 QTableView::scrollTo +252 QTableView::indexAt +256 QTableView::sizeHintForRow +260 QTableView::sizeHintForColumn +264 QAbstractItemView::reset +268 QTableView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QTableView::selectionChanged +296 QTableView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTableView::updateGeometries +312 QTableView::verticalScrollbarAction +316 QTableView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTableView::moveCursor +344 QTableView::horizontalOffset +348 QTableView::verticalOffset +352 QTableView::isIndexHidden +356 QTableView::setSelection +360 QTableView::visualRegionForSelection +364 QTableView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QTableView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI10QTableView) +392 QTableView::_ZThn8_N10QTableViewD1Ev +396 QTableView::_ZThn8_N10QTableViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=20 align=4 + base size=20 base align=4 +QTableView (0xb3d08000) 0 + vptr=((& QTableView::_ZTV10QTableView) + 8u) + QAbstractItemView (0xb3d08040) 0 + primary-for QTableView (0xb3d08000) + QAbstractScrollArea (0xb3d08080) 0 + primary-for QAbstractItemView (0xb3d08040) + QFrame (0xb3d080c0) 0 + primary-for QAbstractScrollArea (0xb3d08080) + QWidget (0xb3d042d0) 0 + primary-for QFrame (0xb3d080c0) + QObject (0xb3cfad98) 0 + primary-for QWidget (0xb3d042d0) + QPaintDevice (0xb3cfadd4) 8 + vptr=((& QTableView::_ZTV10QTableView) + 392u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0xb3d15b7c) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb3d268ac) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3d26834) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTableWidgetItem) +8 QTableWidgetItem::~QTableWidgetItem +12 QTableWidgetItem::~QTableWidgetItem +16 QTableWidgetItem::clone +20 QTableWidgetItem::data +24 QTableWidgetItem::setData +28 QTableWidgetItem::operator< +32 QTableWidgetItem::read +36 QTableWidgetItem::write + +Class QTableWidgetItem + size=24 align=4 + base size=24 base align=4 +QTableWidgetItem (0xb3d26384) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 8u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTableWidget) +8 QTableWidget::metaObject +12 QTableWidget::qt_metacast +16 QTableWidget::qt_metacall +20 QTableWidget::~QTableWidget +24 QTableWidget::~QTableWidget +28 QTableWidget::event +32 QObject::eventFilter +36 QTableView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTableView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QTableWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QTableView::scrollContentsBy +232 QTableWidget::setModel +236 QTableView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QTableView::visualRect +248 QTableView::scrollTo +252 QTableView::indexAt +256 QTableView::sizeHintForRow +260 QTableView::sizeHintForColumn +264 QAbstractItemView::reset +268 QTableView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QTableView::selectionChanged +296 QTableView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTableView::updateGeometries +312 QTableView::verticalScrollbarAction +316 QTableView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTableView::moveCursor +344 QTableView::horizontalOffset +348 QTableView::verticalOffset +352 QTableView::isIndexHidden +356 QTableView::setSelection +360 QTableView::visualRegionForSelection +364 QTableView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QTableView::viewOptions +384 QTableWidget::mimeTypes +388 QTableWidget::mimeData +392 QTableWidget::dropMimeData +396 QTableWidget::supportedDropActions +400 (int (*)(...))-0x000000008 +404 (int (*)(...))(& _ZTI12QTableWidget) +408 QTableWidget::_ZThn8_N12QTableWidgetD1Ev +412 QTableWidget::_ZThn8_N12QTableWidgetD0Ev +416 QWidget::_ZThn8_NK7QWidget7devTypeEv +420 QWidget::_ZThn8_NK7QWidget11paintEngineEv +424 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=20 align=4 + base size=20 base align=4 +QTableWidget (0xb3d08d80) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 8u) + QTableView (0xb3d08dc0) 0 + primary-for QTableWidget (0xb3d08d80) + QAbstractItemView (0xb3d08e00) 0 + primary-for QTableView (0xb3d08dc0) + QAbstractScrollArea (0xb3d08e40) 0 + primary-for QAbstractItemView (0xb3d08e00) + QFrame (0xb3d08e80) 0 + primary-for QAbstractScrollArea (0xb3d08e40) + QWidget (0xb3b4fdc0) 0 + primary-for QFrame (0xb3d08e80) + QObject (0xb3b5dc6c) 0 + primary-for QWidget (0xb3b4fdc0) + QPaintDevice (0xb3b5dca8) 8 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 408u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTreeView) +8 QTreeView::metaObject +12 QTreeView::qt_metacast +16 QTreeView::qt_metacall +20 QTreeView::~QTreeView +24 QTreeView::~QTreeView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QTreeView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTreeView::mousePressEvent +84 QTreeView::mouseReleaseEvent +88 QTreeView::mouseDoubleClickEvent +92 QTreeView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QTreeView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTreeView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QTreeView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTreeView::viewportEvent +228 QTreeView::scrollContentsBy +232 QTreeView::setModel +236 QTreeView::setSelectionModel +240 QTreeView::keyboardSearch +244 QTreeView::visualRect +248 QTreeView::scrollTo +252 QTreeView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QTreeView::sizeHintForColumn +264 QTreeView::reset +268 QTreeView::setRootIndex +272 QTreeView::doItemsLayout +276 QTreeView::selectAll +280 QTreeView::dataChanged +284 QTreeView::rowsInserted +288 QTreeView::rowsAboutToBeRemoved +292 QTreeView::selectionChanged +296 QTreeView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTreeView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QTreeView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTreeView::moveCursor +344 QTreeView::horizontalOffset +348 QTreeView::verticalOffset +352 QTreeView::isIndexHidden +356 QTreeView::setSelection +360 QTreeView::visualRegionForSelection +364 QTreeView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QTreeView::drawRow +388 QTreeView::drawBranches +392 (int (*)(...))-0x000000008 +396 (int (*)(...))(& _ZTI9QTreeView) +400 QTreeView::_ZThn8_N9QTreeViewD1Ev +404 QTreeView::_ZThn8_N9QTreeViewD0Ev +408 QWidget::_ZThn8_NK7QWidget7devTypeEv +412 QWidget::_ZThn8_NK7QWidget11paintEngineEv +416 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=20 align=4 + base size=20 base align=4 +QTreeView (0xb3b7c380) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 8u) + QAbstractItemView (0xb3b7c3c0) 0 + primary-for QTreeView (0xb3b7c380) + QAbstractScrollArea (0xb3b7c400) 0 + primary-for QAbstractItemView (0xb3b7c3c0) + QFrame (0xb3b7c440) 0 + primary-for QAbstractScrollArea (0xb3b7c400) + QWidget (0xb3b87050) 0 + primary-for QFrame (0xb3b7c440) + QObject (0xb3b80834) 0 + primary-for QWidget (0xb3b87050) + QPaintDevice (0xb3b80870) 8 + vptr=((& QTreeView::_ZTV9QTreeView) + 400u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3bab03c) 0 + +Class QTreeWidgetItemIterator + size=12 align=4 + base size=12 base align=4 +QTreeWidgetItemIterator (0xb3ba2618) 0 + +Class QVector >:: + size=4 align=4 + base size=4 base align=4 +QVector >:: (0xb3bd7a8c) 0 + +Class QVector > + size=4 align=4 + base size=4 base align=4 +QVector > (0xb3bd7a14) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3bd7ec4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3bd7e4c) 0 + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QTreeWidgetItem) +8 QTreeWidgetItem::~QTreeWidgetItem +12 QTreeWidgetItem::~QTreeWidgetItem +16 QTreeWidgetItem::clone +20 QTreeWidgetItem::data +24 QTreeWidgetItem::setData +28 QTreeWidgetItem::operator< +32 QTreeWidgetItem::read +36 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=32 align=4 + base size=32 base align=4 +QTreeWidgetItem (0xb3bb6708) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 8u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTreeWidget) +8 QTreeWidget::metaObject +12 QTreeWidget::qt_metacast +16 QTreeWidget::qt_metacall +20 QTreeWidget::~QTreeWidget +24 QTreeWidget::~QTreeWidget +28 QTreeWidget::event +32 QObject::eventFilter +36 QTreeView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTreeView::mousePressEvent +84 QTreeView::mouseReleaseEvent +88 QTreeView::mouseDoubleClickEvent +92 QTreeView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QTreeView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTreeView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QTreeView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QTreeWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTreeView::viewportEvent +228 QTreeView::scrollContentsBy +232 QTreeWidget::setModel +236 QTreeView::setSelectionModel +240 QTreeView::keyboardSearch +244 QTreeView::visualRect +248 QTreeView::scrollTo +252 QTreeView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QTreeView::sizeHintForColumn +264 QTreeView::reset +268 QTreeView::setRootIndex +272 QTreeView::doItemsLayout +276 QTreeView::selectAll +280 QTreeView::dataChanged +284 QTreeView::rowsInserted +288 QTreeView::rowsAboutToBeRemoved +292 QTreeView::selectionChanged +296 QTreeView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTreeView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QTreeView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTreeView::moveCursor +344 QTreeView::horizontalOffset +348 QTreeView::verticalOffset +352 QTreeView::isIndexHidden +356 QTreeView::setSelection +360 QTreeView::visualRegionForSelection +364 QTreeView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QTreeView::drawRow +388 QTreeView::drawBranches +392 QTreeWidget::mimeTypes +396 QTreeWidget::mimeData +400 QTreeWidget::dropMimeData +404 QTreeWidget::supportedDropActions +408 (int (*)(...))-0x000000008 +412 (int (*)(...))(& _ZTI11QTreeWidget) +416 QTreeWidget::_ZThn8_N11QTreeWidgetD1Ev +420 QTreeWidget::_ZThn8_N11QTreeWidgetD0Ev +424 QWidget::_ZThn8_NK7QWidget7devTypeEv +428 QWidget::_ZThn8_NK7QWidget11paintEngineEv +432 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=20 align=4 + base size=20 base align=4 +QTreeWidget (0xb3c175c0) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 8u) + QTreeView (0xb3c17600) 0 + primary-for QTreeWidget (0xb3c175c0) + QAbstractItemView (0xb3c17640) 0 + primary-for QTreeView (0xb3c17600) + QAbstractScrollArea (0xb3c17680) 0 + primary-for QAbstractItemView (0xb3c17640) + QFrame (0xb3c176c0) 0 + primary-for QAbstractScrollArea (0xb3c17680) + QWidget (0xb3c290f0) 0 + primary-for QFrame (0xb3c176c0) + QObject (0xb3c22ec4) 0 + primary-for QWidget (0xb3c290f0) + QPaintDevice (0xb3c22f00) 8 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 416u) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QApplication) +8 QApplication::metaObject +12 QApplication::qt_metacast +16 QApplication::qt_metacall +20 QApplication::~QApplication +24 QApplication::~QApplication +28 QApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QApplication::notify +60 QApplication::compressEvent +64 QApplication::x11EventFilter +68 QApplication::x11ClientMessage +72 QApplication::commitData +76 QApplication::saveState + +Class QApplication + size=8 align=4 + base size=8 base align=4 +QApplication (0xb3c17f00) 0 + vptr=((& QApplication::_ZTV12QApplication) + 8u) + QCoreApplication (0xb3c17f40) 0 + primary-for QApplication (0xb3c17f00) + QObject (0xb3a43a50) 0 + primary-for QCoreApplication (0xb3c17f40) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QLayoutItem) +8 QLayoutItem::~QLayoutItem +12 QLayoutItem::~QLayoutItem +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 QLayoutItem::hasHeightForWidth +48 QLayoutItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QLayoutItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QLayoutItem + size=8 align=4 + base size=8 base align=4 +QLayoutItem (0xb3a71bf4) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 8u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QSpacerItem) +8 QSpacerItem::~QSpacerItem +12 QSpacerItem::~QSpacerItem +16 QSpacerItem::sizeHint +20 QSpacerItem::minimumSize +24 QSpacerItem::maximumSize +28 QSpacerItem::expandingDirections +32 QSpacerItem::setGeometry +36 QSpacerItem::geometry +40 QSpacerItem::isEmpty +44 QLayoutItem::hasHeightForWidth +48 QLayoutItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QLayoutItem::widget +64 QLayoutItem::layout +68 QSpacerItem::spacerItem + +Class QSpacerItem + size=36 align=4 + base size=36 base align=4 +QSpacerItem (0xb3a67840) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 8u) + QLayoutItem (0xb3a810f0) 0 + primary-for QSpacerItem (0xb3a67840) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWidgetItem) +8 QWidgetItem::~QWidgetItem +12 QWidgetItem::~QWidgetItem +16 QWidgetItem::sizeHint +20 QWidgetItem::minimumSize +24 QWidgetItem::maximumSize +28 QWidgetItem::expandingDirections +32 QWidgetItem::setGeometry +36 QWidgetItem::geometry +40 QWidgetItem::isEmpty +44 QWidgetItem::hasHeightForWidth +48 QWidgetItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QWidgetItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QWidgetItem + size=12 align=4 + base size=12 base align=4 +QWidgetItem (0xb3a67980) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 8u) + QLayoutItem (0xb3a817bc) 0 + primary-for QWidgetItem (0xb3a67980) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWidgetItemV2) +8 QWidgetItemV2::~QWidgetItemV2 +12 QWidgetItemV2::~QWidgetItemV2 +16 QWidgetItemV2::sizeHint +20 QWidgetItemV2::minimumSize +24 QWidgetItemV2::maximumSize +28 QWidgetItem::expandingDirections +32 QWidgetItem::setGeometry +36 QWidgetItem::geometry +40 QWidgetItem::isEmpty +44 QWidgetItem::hasHeightForWidth +48 QWidgetItemV2::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QWidgetItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=68 align=4 + base size=68 base align=4 +QWidgetItemV2 (0xb3a67ac0) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 8u) + QWidgetItem (0xb3a67b00) 0 + primary-for QWidgetItemV2 (0xb3a67ac0) + QLayoutItem (0xb3a81ce4) 0 + primary-for QWidgetItem (0xb3a67b00) + +Class QLayoutIterator + size=8 align=4 + base size=8 base align=4 +QLayoutIterator (0xb3a933fc) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QLayout) +8 QLayout::metaObject +12 QLayout::qt_metacast +16 QLayout::qt_metacall +20 QLayout::~QLayout +24 QLayout::~QLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLayout::invalidate +60 QLayout::geometry +64 __cxa_pure_virtual +68 QLayout::expandingDirections +72 QLayout::minimumSize +76 QLayout::maximumSize +80 QLayout::setGeometry +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 QLayout::indexOf +96 __cxa_pure_virtual +100 QLayout::isEmpty +104 QLayout::layout +108 (int (*)(...))-0x000000008 +112 (int (*)(...))(& _ZTI7QLayout) +116 QLayout::_ZThn8_N7QLayoutD1Ev +120 QLayout::_ZThn8_N7QLayoutD0Ev +124 __cxa_pure_virtual +128 QLayout::_ZThn8_NK7QLayout11minimumSizeEv +132 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +136 QLayout::_ZThn8_NK7QLayout19expandingDirectionsEv +140 QLayout::_ZThn8_N7QLayout11setGeometryERK5QRect +144 QLayout::_ZThn8_NK7QLayout8geometryEv +148 QLayout::_ZThn8_NK7QLayout7isEmptyEv +152 QLayoutItem::hasHeightForWidth +156 QLayoutItem::heightForWidth +160 QLayoutItem::minimumHeightForWidth +164 QLayout::_ZThn8_N7QLayout10invalidateEv +168 QLayoutItem::widget +172 QLayout::_ZThn8_N7QLayout6layoutEv +176 QLayoutItem::spacerItem + +Class QLayout + size=16 align=4 + base size=16 base align=4 +QLayout (0xb3a9a1e0) 0 + vptr=((& QLayout::_ZTV7QLayout) + 8u) + QObject (0xb3a93ec4) 0 + primary-for QLayout (0xb3a9a1e0) + QLayoutItem (0xb3a93f00) 8 + vptr=((& QLayout::_ZTV7QLayout) + 116u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QGridLayout) +8 QGridLayout::metaObject +12 QGridLayout::qt_metacast +16 QGridLayout::qt_metacall +20 QGridLayout::~QGridLayout +24 QGridLayout::~QGridLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGridLayout::invalidate +60 QLayout::geometry +64 QGridLayout::addItem +68 QGridLayout::expandingDirections +72 QGridLayout::minimumSize +76 QGridLayout::maximumSize +80 QGridLayout::setGeometry +84 QGridLayout::itemAt +88 QGridLayout::takeAt +92 QLayout::indexOf +96 QGridLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QGridLayout::sizeHint +112 QGridLayout::hasHeightForWidth +116 QGridLayout::heightForWidth +120 QGridLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QGridLayout) +132 QGridLayout::_ZThn8_N11QGridLayoutD1Ev +136 QGridLayout::_ZThn8_N11QGridLayoutD0Ev +140 QGridLayout::_ZThn8_NK11QGridLayout8sizeHintEv +144 QGridLayout::_ZThn8_NK11QGridLayout11minimumSizeEv +148 QGridLayout::_ZThn8_NK11QGridLayout11maximumSizeEv +152 QGridLayout::_ZThn8_NK11QGridLayout19expandingDirectionsEv +156 QGridLayout::_ZThn8_N11QGridLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QGridLayout::_ZThn8_NK11QGridLayout17hasHeightForWidthEv +172 QGridLayout::_ZThn8_NK11QGridLayout14heightForWidthEi +176 QGridLayout::_ZThn8_NK11QGridLayout21minimumHeightForWidthEi +180 QGridLayout::_ZThn8_N11QGridLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QGridLayout + size=16 align=4 + base size=16 base align=4 +QGridLayout (0xb3ab2400) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 8u) + QLayout (0xb3aabaa0) 0 + primary-for QGridLayout (0xb3ab2400) + QObject (0xb3ab92d0) 0 + primary-for QLayout (0xb3aabaa0) + QLayoutItem (0xb3ab930c) 8 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 132u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QBoxLayout) +8 QBoxLayout::metaObject +12 QBoxLayout::qt_metacast +16 QBoxLayout::qt_metacall +20 QBoxLayout::~QBoxLayout +24 QBoxLayout::~QBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI10QBoxLayout) +132 QBoxLayout::_ZThn8_N10QBoxLayoutD1Ev +136 QBoxLayout::_ZThn8_N10QBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QBoxLayout + size=16 align=4 + base size=16 base align=4 +QBoxLayout (0xb3ab2b00) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 8u) + QLayout (0xb3adc910) 0 + primary-for QBoxLayout (0xb3ab2b00) + QObject (0xb3ae17f8) 0 + primary-for QLayout (0xb3adc910) + QLayoutItem (0xb3ae1834) 8 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 132u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHBoxLayout) +8 QHBoxLayout::metaObject +12 QHBoxLayout::qt_metacast +16 QHBoxLayout::qt_metacall +20 QHBoxLayout::~QHBoxLayout +24 QHBoxLayout::~QHBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QHBoxLayout) +132 QHBoxLayout::_ZThn8_N11QHBoxLayoutD1Ev +136 QHBoxLayout::_ZThn8_N11QHBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QHBoxLayout + size=16 align=4 + base size=16 base align=4 +QHBoxLayout (0xb3ab2e00) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 8u) + QBoxLayout (0xb3ab2e40) 0 + primary-for QHBoxLayout (0xb3ab2e00) + QLayout (0xb3af71e0) 0 + primary-for QBoxLayout (0xb3ab2e40) + QObject (0xb3aeee10) 0 + primary-for QLayout (0xb3af71e0) + QLayoutItem (0xb3aeee4c) 8 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 132u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QVBoxLayout) +8 QVBoxLayout::metaObject +12 QVBoxLayout::qt_metacast +16 QVBoxLayout::qt_metacall +20 QVBoxLayout::~QVBoxLayout +24 QVBoxLayout::~QVBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QVBoxLayout) +132 QVBoxLayout::_ZThn8_N11QVBoxLayoutD1Ev +136 QVBoxLayout::_ZThn8_N11QVBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QVBoxLayout + size=16 align=4 + base size=16 base align=4 +QVBoxLayout (0xb3b04080) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 8u) + QBoxLayout (0xb3b040c0) 0 + primary-for QVBoxLayout (0xb3b04080) + QLayout (0xb3afef50) 0 + primary-for QBoxLayout (0xb3b040c0) + QObject (0xb3afc960) 0 + primary-for QLayout (0xb3afef50) + QLayoutItem (0xb3afc99c) 8 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 132u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QClipboard) +8 QClipboard::metaObject +12 QClipboard::qt_metacast +16 QClipboard::qt_metacall +20 QClipboard::~QClipboard +24 QClipboard::~QClipboard +28 QClipboard::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QClipboard::connectNotify +52 QObject::disconnectNotify + +Class QClipboard + size=8 align=4 + base size=8 base align=4 +QClipboard (0xb3b04300) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 8u) + QObject (0xb3b12474) 0 + primary-for QClipboard (0xb3b04300) + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDesktopWidget) +8 QDesktopWidget::metaObject +12 QDesktopWidget::qt_metacast +16 QDesktopWidget::qt_metacall +20 QDesktopWidget::~QDesktopWidget +24 QDesktopWidget::~QDesktopWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDesktopWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI14QDesktopWidget) +232 QDesktopWidget::_ZThn8_N14QDesktopWidgetD1Ev +236 QDesktopWidget::_ZThn8_N14QDesktopWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=20 align=4 + base size=20 base align=4 +QDesktopWidget (0xb3b045c0) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 8u) + QWidget (0xb3b1cf50) 0 + primary-for QDesktopWidget (0xb3b045c0) + QObject (0xb3b1eac8) 0 + primary-for QWidget (0xb3b1cf50) + QPaintDevice (0xb3b1eb04) 8 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 232u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFormLayout) +8 QFormLayout::metaObject +12 QFormLayout::qt_metacast +16 QFormLayout::qt_metacall +20 QFormLayout::~QFormLayout +24 QFormLayout::~QFormLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFormLayout::invalidate +60 QLayout::geometry +64 QFormLayout::addItem +68 QFormLayout::expandingDirections +72 QFormLayout::minimumSize +76 QLayout::maximumSize +80 QFormLayout::setGeometry +84 QFormLayout::itemAt +88 QFormLayout::takeAt +92 QLayout::indexOf +96 QFormLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QFormLayout::sizeHint +112 QFormLayout::hasHeightForWidth +116 QFormLayout::heightForWidth +120 (int (*)(...))-0x000000008 +124 (int (*)(...))(& _ZTI11QFormLayout) +128 QFormLayout::_ZThn8_N11QFormLayoutD1Ev +132 QFormLayout::_ZThn8_N11QFormLayoutD0Ev +136 QFormLayout::_ZThn8_NK11QFormLayout8sizeHintEv +140 QFormLayout::_ZThn8_NK11QFormLayout11minimumSizeEv +144 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +148 QFormLayout::_ZThn8_NK11QFormLayout19expandingDirectionsEv +152 QFormLayout::_ZThn8_N11QFormLayout11setGeometryERK5QRect +156 QLayout::_ZThn8_NK7QLayout8geometryEv +160 QLayout::_ZThn8_NK7QLayout7isEmptyEv +164 QFormLayout::_ZThn8_NK11QFormLayout17hasHeightForWidthEv +168 QFormLayout::_ZThn8_NK11QFormLayout14heightForWidthEi +172 QLayoutItem::minimumHeightForWidth +176 QFormLayout::_ZThn8_N11QFormLayout10invalidateEv +180 QLayoutItem::widget +184 QLayout::_ZThn8_N7QLayout6layoutEv +188 QLayoutItem::spacerItem + +Class QFormLayout + size=16 align=4 + base size=16 base align=4 +QFormLayout (0xb3b04980) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 8u) + QLayout (0xb3b2bb90) 0 + primary-for QFormLayout (0xb3b04980) + QObject (0xb3b29ac8) 0 + primary-for QLayout (0xb3b2bb90) + QLayoutItem (0xb3b29b04) 8 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 128u) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSessionManager) +8 QSessionManager::metaObject +12 QSessionManager::qt_metacast +16 QSessionManager::qt_metacall +20 QSessionManager::~QSessionManager +24 QSessionManager::~QSessionManager +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSessionManager + size=8 align=4 + base size=8 base align=4 +QSessionManager (0xb3b04c80) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 8u) + QObject (0xb3940e88) 0 + primary-for QSessionManager (0xb3b04c80) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QShortcut) +8 QShortcut::metaObject +12 QShortcut::qt_metacast +16 QShortcut::qt_metacall +20 QShortcut::~QShortcut +24 QShortcut::~QShortcut +28 QShortcut::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QShortcut + size=8 align=4 + base size=8 base align=4 +QShortcut (0xb3b04f40) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 8u) + QObject (0xb394f834) 0 + primary-for QShortcut (0xb3b04f40) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QSound) +8 QSound::metaObject +12 QSound::qt_metacast +16 QSound::qt_metacall +20 QSound::~QSound +24 QSound::~QSound +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSound + size=8 align=4 + base size=8 base align=4 +QSound (0xb395f240) 0 + vptr=((& QSound::_ZTV6QSound) + 8u) + QObject (0xb3964258) 0 + primary-for QSound (0xb395f240) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QStackedLayout) +8 QStackedLayout::metaObject +12 QStackedLayout::qt_metacast +16 QStackedLayout::qt_metacall +20 QStackedLayout::~QStackedLayout +24 QStackedLayout::~QStackedLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLayout::invalidate +60 QLayout::geometry +64 QStackedLayout::addItem +68 QLayout::expandingDirections +72 QStackedLayout::minimumSize +76 QLayout::maximumSize +80 QStackedLayout::setGeometry +84 QStackedLayout::itemAt +88 QStackedLayout::takeAt +92 QLayout::indexOf +96 QStackedLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QStackedLayout::sizeHint +112 (int (*)(...))-0x000000008 +116 (int (*)(...))(& _ZTI14QStackedLayout) +120 QStackedLayout::_ZThn8_N14QStackedLayoutD1Ev +124 QStackedLayout::_ZThn8_N14QStackedLayoutD0Ev +128 QStackedLayout::_ZThn8_NK14QStackedLayout8sizeHintEv +132 QStackedLayout::_ZThn8_NK14QStackedLayout11minimumSizeEv +136 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +140 QLayout::_ZThn8_NK7QLayout19expandingDirectionsEv +144 QStackedLayout::_ZThn8_N14QStackedLayout11setGeometryERK5QRect +148 QLayout::_ZThn8_NK7QLayout8geometryEv +152 QLayout::_ZThn8_NK7QLayout7isEmptyEv +156 QLayoutItem::hasHeightForWidth +160 QLayoutItem::heightForWidth +164 QLayoutItem::minimumHeightForWidth +168 QLayout::_ZThn8_N7QLayout10invalidateEv +172 QLayoutItem::widget +176 QLayout::_ZThn8_N7QLayout6layoutEv +180 QLayoutItem::spacerItem + +Class QStackedLayout + size=16 align=4 + base size=16 base align=4 +QStackedLayout (0xb395f540) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 8u) + QLayout (0xb396ad70) 0 + primary-for QStackedLayout (0xb395f540) + QObject (0xb3964ce4) 0 + primary-for QLayout (0xb396ad70) + QLayoutItem (0xb3964d20) 8 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 120u) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0xb3977d5c) 0 empty + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0xb398503c) 0 empty + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWidgetAction) +8 QWidgetAction::metaObject +12 QWidgetAction::qt_metacast +16 QWidgetAction::qt_metacall +20 QWidgetAction::~QWidgetAction +24 QWidgetAction::~QWidgetAction +28 QWidgetAction::event +32 QWidgetAction::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidgetAction::createWidget +60 QWidgetAction::deleteWidget + +Class QWidgetAction + size=8 align=4 + base size=8 base align=4 +QWidgetAction (0xb395f940) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 8u) + QAction (0xb395f980) 0 + primary-for QWidgetAction (0xb395f940) + QObject (0xb39850b4) 0 + primary-for QAction (0xb395f980) + +Class QColormap + size=4 align=4 + base size=4 base align=4 +QColormap (0xb3985ca8) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0xb39960b4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb399630c) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3996b7c) 0 + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPaintEngine) +8 QPaintEngine::~QPaintEngine +12 QPaintEngine::~QPaintEngine +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QPaintEngine::drawRects +32 QPaintEngine::drawRects +36 QPaintEngine::drawLines +40 QPaintEngine::drawLines +44 QPaintEngine::drawEllipse +48 QPaintEngine::drawEllipse +52 QPaintEngine::drawPath +56 QPaintEngine::drawPoints +60 QPaintEngine::drawPoints +64 QPaintEngine::drawPolygon +68 QPaintEngine::drawPolygon +72 __cxa_pure_virtual +76 QPaintEngine::drawTextItem +80 QPaintEngine::drawTiledPixmap +84 QPaintEngine::drawImage +88 QPaintEngine::coordinateOffset +92 __cxa_pure_virtual + +Class QPaintEngine + size=20 align=4 + base size=20 base align=4 +QPaintEngine (0xb39963fc) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb39b1d5c) 0 + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0xb39b1a14) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb39c4a50) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QPrinter) +8 QPrinter::~QPrinter +12 QPrinter::~QPrinter +16 QPrinter::devType +20 QPrinter::paintEngine +24 QPrinter::metric + +Class QPrinter + size=12 align=4 + base size=12 base align=4 +QPrinter (0xb39b94c0) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 8u) + QPaintDevice (0xb39f7e10) 0 + primary-for QPrinter (0xb39b94c0) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPrintEngine) +8 QPrintEngine::~QPrintEngine +12 QPrintEngine::~QPrintEngine +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual + +Class QPrintEngine + size=4 align=4 + base size=4 base align=4 +QPrintEngine (0xb3a2c5dc) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 8u) + +Class QPrinterInfo + size=4 align=4 + base size=4 base align=4 +QPrinterInfo (0xb3a2cb04) 0 + +Class QStylePainter + size=12 align=4 + base size=12 base align=4 +QStylePainter (0xb39b9a40) 0 + QPainter (0xb3a3b564) 0 + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCommonStyle) +8 QCommonStyle::metaObject +12 QCommonStyle::qt_metacast +16 QCommonStyle::qt_metacall +20 QCommonStyle::~QCommonStyle +24 QCommonStyle::~QCommonStyle +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyle::polish +60 QStyle::unpolish +64 QStyle::polish +68 QStyle::unpolish +72 QStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 QCommonStyle::drawPrimitive +100 QCommonStyle::drawControl +104 QCommonStyle::subElementRect +108 QCommonStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QCommonStyle::subControlRect +120 QCommonStyle::pixelMetric +124 QCommonStyle::sizeFromContents +128 QCommonStyle::styleHint +132 QCommonStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=8 align=4 + base size=8 base align=4 +QCommonStyle (0xb39b9f00) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 8u) + QStyle (0xb39b9f40) 0 + primary-for QCommonStyle (0xb39b9f00) + QObject (0xb38500f0) 0 + primary-for QStyle (0xb39b9f40) + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb38643c0) 0 + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMotifStyle) +8 QMotifStyle::metaObject +12 QMotifStyle::qt_metacast +16 QMotifStyle::qt_metacall +20 QMotifStyle::~QMotifStyle +24 QMotifStyle::~QMotifStyle +28 QMotifStyle::event +32 QMotifStyle::eventFilter +36 QMotifStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMotifStyle::polish +60 QMotifStyle::unpolish +64 QMotifStyle::polish +68 QMotifStyle::unpolish +72 QMotifStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QMotifStyle::standardPalette +96 QMotifStyle::drawPrimitive +100 QMotifStyle::drawControl +104 QMotifStyle::subElementRect +108 QMotifStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QMotifStyle::subControlRect +120 QMotifStyle::pixelMetric +124 QMotifStyle::sizeFromContents +128 QMotifStyle::styleHint +132 QMotifStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=16 align=4 + base size=13 base align=4 +QMotifStyle (0xb385d200) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 8u) + QCommonStyle (0xb385d240) 0 + primary-for QMotifStyle (0xb385d200) + QStyle (0xb385d280) 0 + primary-for QCommonStyle (0xb385d240) + QObject (0xb3864000) 0 + primary-for QStyle (0xb385d280) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QCDEStyle) +8 QCDEStyle::metaObject +12 QCDEStyle::qt_metacast +16 QCDEStyle::qt_metacall +20 QCDEStyle::~QCDEStyle +24 QCDEStyle::~QCDEStyle +28 QMotifStyle::event +32 QMotifStyle::eventFilter +36 QMotifStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMotifStyle::polish +60 QMotifStyle::unpolish +64 QMotifStyle::polish +68 QMotifStyle::unpolish +72 QMotifStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QCDEStyle::standardPalette +96 QCDEStyle::drawPrimitive +100 QCDEStyle::drawControl +104 QMotifStyle::subElementRect +108 QMotifStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QMotifStyle::subControlRect +120 QCDEStyle::pixelMetric +124 QMotifStyle::sizeFromContents +128 QMotifStyle::styleHint +132 QMotifStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=16 align=4 + base size=13 base align=4 +QCDEStyle (0xb385d580) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 8u) + QMotifStyle (0xb385d5c0) 0 + primary-for QCDEStyle (0xb385d580) + QCommonStyle (0xb385d600) 0 + primary-for QMotifStyle (0xb385d5c0) + QStyle (0xb385d640) 0 + primary-for QCommonStyle (0xb385d600) + QObject (0xb3864f00) 0 + primary-for QStyle (0xb385d640) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWindowsStyle) +8 QWindowsStyle::metaObject +12 QWindowsStyle::qt_metacast +16 QWindowsStyle::qt_metacall +20 QWindowsStyle::~QWindowsStyle +24 QWindowsStyle::~QWindowsStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 QWindowsStyle::drawPrimitive +100 QWindowsStyle::drawControl +104 QWindowsStyle::subElementRect +108 QWindowsStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QCommonStyle::subControlRect +120 QWindowsStyle::pixelMetric +124 QWindowsStyle::sizeFromContents +128 QWindowsStyle::styleHint +132 QWindowsStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=12 align=4 + base size=12 base align=4 +QWindowsStyle (0xb385d880) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 8u) + QCommonStyle (0xb385d8c0) 0 + primary-for QWindowsStyle (0xb385d880) + QStyle (0xb385d900) 0 + primary-for QCommonStyle (0xb385d8c0) + QObject (0xb387d690) 0 + primary-for QStyle (0xb385d900) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCleanlooksStyle) +8 QCleanlooksStyle::metaObject +12 QCleanlooksStyle::qt_metacast +16 QCleanlooksStyle::qt_metacall +20 QCleanlooksStyle::~QCleanlooksStyle +24 QCleanlooksStyle::~QCleanlooksStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCleanlooksStyle::polish +60 QCleanlooksStyle::unpolish +64 QCleanlooksStyle::polish +68 QCleanlooksStyle::unpolish +72 QCleanlooksStyle::polish +76 QStyle::itemTextRect +80 QCleanlooksStyle::itemPixmapRect +84 QCleanlooksStyle::drawItemText +88 QCleanlooksStyle::drawItemPixmap +92 QCleanlooksStyle::standardPalette +96 QCleanlooksStyle::drawPrimitive +100 QCleanlooksStyle::drawControl +104 QCleanlooksStyle::subElementRect +108 QCleanlooksStyle::drawComplexControl +112 QCleanlooksStyle::hitTestComplexControl +116 QCleanlooksStyle::subControlRect +120 QCleanlooksStyle::pixelMetric +124 QCleanlooksStyle::sizeFromContents +128 QCleanlooksStyle::styleHint +132 QCleanlooksStyle::standardPixmap +136 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=12 align=4 + base size=12 base align=4 +QCleanlooksStyle (0xb385dbc0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 8u) + QWindowsStyle (0xb385dc00) 0 + primary-for QCleanlooksStyle (0xb385dbc0) + QCommonStyle (0xb385dc40) 0 + primary-for QWindowsStyle (0xb385dc00) + QStyle (0xb385dc80) 0 + primary-for QCommonStyle (0xb385dc40) + QObject (0xb38953fc) 0 + primary-for QStyle (0xb385dc80) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QPlastiqueStyle) +8 QPlastiqueStyle::metaObject +12 QPlastiqueStyle::qt_metacast +16 QPlastiqueStyle::qt_metacall +20 QPlastiqueStyle::~QPlastiqueStyle +24 QPlastiqueStyle::~QPlastiqueStyle +28 QObject::event +32 QPlastiqueStyle::eventFilter +36 QPlastiqueStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QPlastiqueStyle::polish +60 QPlastiqueStyle::unpolish +64 QPlastiqueStyle::polish +68 QPlastiqueStyle::unpolish +72 QPlastiqueStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QPlastiqueStyle::standardPalette +96 QPlastiqueStyle::drawPrimitive +100 QPlastiqueStyle::drawControl +104 QPlastiqueStyle::subElementRect +108 QPlastiqueStyle::drawComplexControl +112 QPlastiqueStyle::hitTestComplexControl +116 QPlastiqueStyle::subControlRect +120 QPlastiqueStyle::pixelMetric +124 QPlastiqueStyle::sizeFromContents +128 QPlastiqueStyle::styleHint +132 QPlastiqueStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=16 align=4 + base size=16 base align=4 +QPlastiqueStyle (0xb385df40) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 8u) + QWindowsStyle (0xb385df80) 0 + primary-for QPlastiqueStyle (0xb385df40) + QCommonStyle (0xb385dfc0) 0 + primary-for QWindowsStyle (0xb385df80) + QStyle (0xb38a6000) 0 + primary-for QCommonStyle (0xb385dfc0) + QObject (0xb38a412c) 0 + primary-for QStyle (0xb38a6000) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0xb38b6078) 0 empty + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +8 QStyleFactoryInterface::~QStyleFactoryInterface +12 QStyleFactoryInterface::~QStyleFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=4 align=4 + base size=4 base align=4 +QStyleFactoryInterface (0xb38a62c0) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 8u) + QFactoryInterface (0xb38b60b4) 0 nearly-empty + primary-for QStyleFactoryInterface (0xb38a62c0) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QStylePlugin) +8 QStylePlugin::metaObject +12 QStylePlugin::qt_metacast +16 QStylePlugin::qt_metacall +20 QStylePlugin::~QStylePlugin +24 QStylePlugin::~QStylePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI12QStylePlugin) +72 QStylePlugin::_ZThn8_N12QStylePluginD1Ev +76 QStylePlugin::_ZThn8_N12QStylePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QStylePlugin + size=12 align=4 + base size=12 base align=4 +QStylePlugin (0xb38b0c80) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 8u) + QObject (0xb38b63fc) 0 + primary-for QStylePlugin (0xb38b0c80) + QStyleFactoryInterface (0xb38a6480) 8 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 72u) + QFactoryInterface (0xb38b6438) 8 nearly-empty + primary-for QStyleFactoryInterface (0xb38a6480) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QWindowsCEStyle) +8 QWindowsCEStyle::metaObject +12 QWindowsCEStyle::qt_metacast +16 QWindowsCEStyle::qt_metacall +20 QWindowsCEStyle::~QWindowsCEStyle +24 QWindowsCEStyle::~QWindowsCEStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsCEStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsCEStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsCEStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QWindowsCEStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsCEStyle::standardPalette +96 QWindowsCEStyle::drawPrimitive +100 QWindowsCEStyle::drawControl +104 QWindowsCEStyle::subElementRect +108 QWindowsCEStyle::drawComplexControl +112 QWindowsCEStyle::hitTestComplexControl +116 QWindowsCEStyle::subControlRect +120 QWindowsCEStyle::pixelMetric +124 QWindowsCEStyle::sizeFromContents +128 QWindowsCEStyle::styleHint +132 QWindowsCEStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=12 align=4 + base size=12 base align=4 +QWindowsCEStyle (0xb38a66c0) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 8u) + QWindowsStyle (0xb38a6700) 0 + primary-for QWindowsCEStyle (0xb38a66c0) + QCommonStyle (0xb38a6740) 0 + primary-for QWindowsStyle (0xb38a6700) + QStyle (0xb38a6780) 0 + primary-for QCommonStyle (0xb38a6740) + QObject (0xb38b6c30) 0 + primary-for QStyle (0xb38a6780) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +8 QWindowsMobileStyle::metaObject +12 QWindowsMobileStyle::qt_metacast +16 QWindowsMobileStyle::qt_metacall +20 QWindowsMobileStyle::~QWindowsMobileStyle +24 QWindowsMobileStyle::~QWindowsMobileStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsMobileStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsMobileStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsMobileStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsMobileStyle::standardPalette +96 QWindowsMobileStyle::drawPrimitive +100 QWindowsMobileStyle::drawControl +104 QWindowsMobileStyle::subElementRect +108 QWindowsMobileStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QWindowsMobileStyle::subControlRect +120 QWindowsMobileStyle::pixelMetric +124 QWindowsMobileStyle::sizeFromContents +128 QWindowsMobileStyle::styleHint +132 QWindowsMobileStyle::standardPixmap +136 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=12 align=4 + base size=12 base align=4 +QWindowsMobileStyle (0xb38a69c0) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 8u) + QWindowsStyle (0xb38a6a00) 0 + primary-for QWindowsMobileStyle (0xb38a69c0) + QCommonStyle (0xb38a6a40) 0 + primary-for QWindowsStyle (0xb38a6a00) + QStyle (0xb38a6a80) 0 + primary-for QCommonStyle (0xb38a6a40) + QObject (0xb38cb690) 0 + primary-for QStyle (0xb38a6a80) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QWindowsXPStyle) +8 QWindowsXPStyle::metaObject +12 QWindowsXPStyle::qt_metacast +16 QWindowsXPStyle::qt_metacall +20 QWindowsXPStyle::~QWindowsXPStyle +24 QWindowsXPStyle::~QWindowsXPStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsXPStyle::polish +60 QWindowsXPStyle::unpolish +64 QWindowsXPStyle::polish +68 QWindowsXPStyle::unpolish +72 QWindowsXPStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsXPStyle::standardPalette +96 QWindowsXPStyle::drawPrimitive +100 QWindowsXPStyle::drawControl +104 QWindowsXPStyle::subElementRect +108 QWindowsXPStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QWindowsXPStyle::subControlRect +120 QWindowsXPStyle::pixelMetric +124 QWindowsXPStyle::sizeFromContents +128 QWindowsXPStyle::styleHint +132 QWindowsXPStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=16 align=4 + base size=16 base align=4 +QWindowsXPStyle (0xb38a6d40) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 8u) + QWindowsStyle (0xb38a6d80) 0 + primary-for QWindowsXPStyle (0xb38a6d40) + QCommonStyle (0xb38a6dc0) 0 + primary-for QWindowsStyle (0xb38a6d80) + QStyle (0xb38a6e00) 0 + primary-for QCommonStyle (0xb38a6dc0) + QObject (0xb38e11a4) 0 + primary-for QStyle (0xb38a6e00) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +8 QWindowsVistaStyle::metaObject +12 QWindowsVistaStyle::qt_metacast +16 QWindowsVistaStyle::qt_metacall +20 QWindowsVistaStyle::~QWindowsVistaStyle +24 QWindowsVistaStyle::~QWindowsVistaStyle +28 QWindowsVistaStyle::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsVistaStyle::polish +60 QWindowsVistaStyle::unpolish +64 QWindowsVistaStyle::polish +68 QWindowsVistaStyle::unpolish +72 QWindowsVistaStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsVistaStyle::standardPalette +96 QWindowsVistaStyle::drawPrimitive +100 QWindowsVistaStyle::drawControl +104 QWindowsVistaStyle::subElementRect +108 QWindowsVistaStyle::drawComplexControl +112 QWindowsVistaStyle::hitTestComplexControl +116 QWindowsVistaStyle::subControlRect +120 QWindowsVistaStyle::pixelMetric +124 QWindowsVistaStyle::sizeFromContents +128 QWindowsVistaStyle::styleHint +132 QWindowsVistaStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=16 align=4 + base size=16 base align=4 +QWindowsVistaStyle (0xb38f10c0) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 8u) + QWindowsXPStyle (0xb38f1100) 0 + primary-for QWindowsVistaStyle (0xb38f10c0) + QWindowsStyle (0xb38f1140) 0 + primary-for QWindowsXPStyle (0xb38f1100) + QCommonStyle (0xb38f1180) 0 + primary-for QWindowsStyle (0xb38f1140) + QStyle (0xb38f11c0) 0 + primary-for QCommonStyle (0xb38f1180) + QObject (0xb38e1fb4) 0 + primary-for QStyle (0xb38f11c0) + +Class QTextLength + size=12 align=4 + base size=12 base align=4 +QTextLength (0xb38f4e10) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb390c870) 0 + +Class QTextFormat + size=8 align=4 + base size=8 base align=4 +QTextFormat (0xb390c0f0) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb392fd20) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb392fca8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3755a50) 0 + +Class QTextCharFormat + size=8 align=4 + base size=8 base align=4 +QTextCharFormat (0xb38f1ec0) 0 + QTextFormat (0xb3763618) 0 + +Class QTextBlockFormat + size=8 align=4 + base size=8 base align=4 +QTextBlockFormat (0xb3782c80) 0 + QTextFormat (0xb3799f00) 0 + +Class QTextListFormat + size=8 align=4 + base size=8 base align=4 +QTextListFormat (0xb37b2240) 0 + QTextFormat (0xb37b0ca8) 0 + +Class QTextImageFormat + size=8 align=4 + base size=8 base align=4 +QTextImageFormat (0xb37b2400) 0 + QTextCharFormat (0xb37b2440) 0 + QTextFormat (0xb37bc564) 0 + +Class QTextFrameFormat + size=8 align=4 + base size=8 base align=4 +QTextFrameFormat (0xb37b2680) 0 + QTextFormat (0xb37bce88) 0 + +Class QTextTableFormat + size=8 align=4 + base size=8 base align=4 +QTextTableFormat (0xb37b2d00) 0 + QTextFrameFormat (0xb37b2d40) 0 + QTextFormat (0xb37e10b4) 0 + +Class QTextTableCellFormat + size=8 align=4 + base size=8 base align=4 +QTextTableCellFormat (0xb37ea240) 0 + QTextCharFormat (0xb37ea280) 0 + QTextFormat (0xb37ee384) 0 + +Class QTextInlineObject + size=8 align=4 + base size=8 base align=4 +QTextInlineObject (0xb37fd348) 0 + +Class QTextLayout::FormatRange + size=16 align=4 + base size=16 base align=4 +QTextLayout::FormatRange (0xb37fda14) 0 + +Class QTextLayout + size=4 align=4 + base size=4 base align=4 +QTextLayout (0xb37fd8ac) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb380a5dc) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb380a564) 0 + +Class QTextLine + size=8 align=4 + base size=8 base align=4 +QTextLine (0xb380a8e8) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAbstractUndoItem) +8 __cxa_pure_virtual +12 __cxa_pure_virtual +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAbstractUndoItem + size=4 align=4 + base size=4 base align=4 +QAbstractUndoItem (0xb382721c) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 8u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QTextDocument) +8 QTextDocument::metaObject +12 QTextDocument::qt_metacast +16 QTextDocument::qt_metacall +20 QTextDocument::~QTextDocument +24 QTextDocument::~QTextDocument +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextDocument::clear +60 QTextDocument::createObject +64 QTextDocument::loadResource + +Class QTextDocument + size=8 align=4 + base size=8 base align=4 +QTextDocument (0xb37ead40) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 8u) + QObject (0xb38275a0) 0 + primary-for QTextDocument (0xb37ead40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3827f3c) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb3658c30) 0 + +Class QTextCursor + size=4 align=4 + base size=4 base align=4 +QTextCursor (0xb3658294) 0 + +Class QAbstractTextDocumentLayout::Selection + size=12 align=4 + base size=12 base align=4 +QAbstractTextDocumentLayout::Selection (0xb3658ec4) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb367c294) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb367c21c) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=48 align=4 + base size=48 base align=4 +QAbstractTextDocumentLayout::PaintContext (0xb3658f00) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +8 QAbstractTextDocumentLayout::metaObject +12 QAbstractTextDocumentLayout::qt_metacast +16 QAbstractTextDocumentLayout::qt_metacall +20 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +24 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 QAbstractTextDocumentLayout::resizeInlineObject +88 QAbstractTextDocumentLayout::positionInlineObject +92 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=8 align=4 + base size=8 base align=4 +QAbstractTextDocumentLayout (0xb364d100) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 8u) + QObject (0xb3658dd4) 0 + primary-for QAbstractTextDocumentLayout (0xb364d100) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QTextObjectInterface) +8 QTextObjectInterface::~QTextObjectInterface +12 QTextObjectInterface::~QTextObjectInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextObjectInterface + size=4 align=4 + base size=4 base align=4 +QTextObjectInterface (0xb367ce10) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 8u) + +Class QFontDatabase + size=4 align=4 + base size=4 base align=4 +QFontDatabase (0xb369f30c) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextObject) +8 QTextObject::metaObject +12 QTextObject::qt_metacast +16 QTextObject::qt_metacall +20 QTextObject::~QTextObject +24 QTextObject::~QTextObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextObject + size=8 align=4 + base size=8 base align=4 +QTextObject (0xb364d940) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 8u) + QObject (0xb369fb7c) 0 + primary-for QTextObject (0xb364d940) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QTextBlockGroup) +8 QTextBlockGroup::metaObject +12 QTextBlockGroup::qt_metacast +16 QTextBlockGroup::qt_metacall +20 QTextBlockGroup::~QTextBlockGroup +24 QTextBlockGroup::~QTextBlockGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextBlockGroup::blockInserted +60 QTextBlockGroup::blockRemoved +64 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=8 align=4 + base size=8 base align=4 +QTextBlockGroup (0xb364dc40) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 8u) + QTextObject (0xb364dc80) 0 + primary-for QTextBlockGroup (0xb364dc40) + QObject (0xb36b06cc) 0 + primary-for QTextObject (0xb364dc80) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +8 QTextFrameLayoutData::~QTextFrameLayoutData +12 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=4 align=4 + base size=4 base align=4 +QTextFrameLayoutData (0xb36c121c) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 8u) + +Class QTextFrame::iterator + size=20 align=4 + base size=20 base align=4 +QTextFrame::iterator (0xb36c17bc) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextFrame) +8 QTextFrame::metaObject +12 QTextFrame::qt_metacast +16 QTextFrame::qt_metacall +20 QTextFrame::~QTextFrame +24 QTextFrame::~QTextFrame +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextFrame + size=8 align=4 + base size=8 base align=4 +QTextFrame (0xb364df40) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 8u) + QTextObject (0xb364df80) 0 + primary-for QTextFrame (0xb364df40) + QObject (0xb36c1384) 0 + primary-for QTextObject (0xb364df80) + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb36d9d5c) 0 empty + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QTextBlockUserData) +8 QTextBlockUserData::~QTextBlockUserData +12 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=4 align=4 + base size=4 base align=4 +QTextBlockUserData (0xb36e30f0) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 8u) + +Class QTextBlock::iterator + size=16 align=4 + base size=16 base align=4 +QTextBlock::iterator (0xb36e3690) 0 + +Class QTextBlock + size=8 align=4 + base size=8 base align=4 +QTextBlock (0xb36e3258) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb36f6d5c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb36f6e4c) 0 empty + +Class QTextFragment + size=12 align=4 + base size=12 base align=4 +QTextFragment (0xb3703000) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb370d3c0) 0 empty + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +8 QSyntaxHighlighter::metaObject +12 QSyntaxHighlighter::qt_metacast +16 QSyntaxHighlighter::qt_metacall +20 QSyntaxHighlighter::~QSyntaxHighlighter +24 QSyntaxHighlighter::~QSyntaxHighlighter +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=8 align=4 + base size=8 base align=4 +QSyntaxHighlighter (0xb36f7b80) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 8u) + QObject (0xb370d4b0) 0 + primary-for QSyntaxHighlighter (0xb36f7b80) + +Class QTextDocumentFragment + size=4 align=4 + base size=4 base align=4 +QTextDocumentFragment (0xb371e0b4) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTextList) +8 QTextList::metaObject +12 QTextList::qt_metacast +16 QTextList::qt_metacall +20 QTextList::~QTextList +24 QTextList::~QTextList +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextBlockGroup::blockInserted +60 QTextBlockGroup::blockRemoved +64 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=8 align=4 + base size=8 base align=4 +QTextList (0xb36f7e40) 0 + vptr=((& QTextList::_ZTV9QTextList) + 8u) + QTextBlockGroup (0xb36f7e80) 0 + primary-for QTextList (0xb36f7e40) + QTextObject (0xb36f7ec0) 0 + primary-for QTextBlockGroup (0xb36f7e80) + QObject (0xb371e618) 0 + primary-for QTextObject (0xb36f7ec0) + +Class QTextTableCell + size=8 align=4 + base size=8 base align=4 +QTextTableCell (0xb372d8ac) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextTable) +8 QTextTable::metaObject +12 QTextTable::qt_metacast +16 QTextTable::qt_metacall +20 QTextTable::~QTextTable +24 QTextTable::~QTextTable +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextTable + size=8 align=4 + base size=8 base align=4 +QTextTable (0xb3729980) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 8u) + QTextFrame (0xb37299c0) 0 + primary-for QTextTable (0xb3729980) + QTextObject (0xb3729a00) 0 + primary-for QTextFrame (0xb37299c0) + QObject (0xb373ca8c) 0 + primary-for QTextObject (0xb3729a00) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QCompleter) +8 QCompleter::metaObject +12 QCompleter::qt_metacast +16 QCompleter::qt_metacall +20 QCompleter::~QCompleter +24 QCompleter::~QCompleter +28 QCompleter::event +32 QCompleter::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCompleter::pathFromIndex +60 QCompleter::splitPath + +Class QCompleter + size=8 align=4 + base size=8 base align=4 +QCompleter (0xb3729fc0) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 8u) + QObject (0xb354aa50) 0 + primary-for QCompleter (0xb3729fc0) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0xb355e960) 0 empty + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSystemTrayIcon) +8 QSystemTrayIcon::metaObject +12 QSystemTrayIcon::qt_metacast +16 QSystemTrayIcon::qt_metacall +20 QSystemTrayIcon::~QSystemTrayIcon +24 QSystemTrayIcon::~QSystemTrayIcon +28 QSystemTrayIcon::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSystemTrayIcon + size=8 align=4 + base size=8 base align=4 +QSystemTrayIcon (0xb3555280) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 8u) + QObject (0xb355ea50) 0 + primary-for QSystemTrayIcon (0xb3555280) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUndoGroup) +8 QUndoGroup::metaObject +12 QUndoGroup::qt_metacast +16 QUndoGroup::qt_metacall +20 QUndoGroup::~QUndoGroup +24 QUndoGroup::~QUndoGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QUndoGroup + size=8 align=4 + base size=8 base align=4 +QUndoGroup (0xb3555640) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 8u) + QObject (0xb356eac8) 0 + primary-for QUndoGroup (0xb3555640) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QUndoCommand) +8 QUndoCommand::~QUndoCommand +12 QUndoCommand::~QUndoCommand +16 QUndoCommand::undo +20 QUndoCommand::redo +24 QUndoCommand::id +28 QUndoCommand::mergeWith + +Class QUndoCommand + size=8 align=4 + base size=8 base align=4 +QUndoCommand (0xb357f744) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 8u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUndoStack) +8 QUndoStack::metaObject +12 QUndoStack::qt_metacast +16 QUndoStack::qt_metacall +20 QUndoStack::~QUndoStack +24 QUndoStack::~QUndoStack +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QUndoStack + size=8 align=4 + base size=8 base align=4 +QUndoStack (0xb3555900) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 8u) + QObject (0xb357fce4) 0 + primary-for QUndoStack (0xb3555900) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QUndoView) +8 QUndoView::metaObject +12 QUndoView::qt_metacast +16 QUndoView::qt_metacall +20 QUndoView::~QUndoView +24 QUndoView::~QUndoView +28 QListView::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI9QUndoView) +392 QUndoView::_ZThn8_N9QUndoViewD1Ev +396 QUndoView::_ZThn8_N9QUndoViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=20 align=4 + base size=20 base align=4 +QUndoView (0xb3555c00) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 8u) + QListView (0xb3555c40) 0 + primary-for QUndoView (0xb3555c00) + QAbstractItemView (0xb3555c80) 0 + primary-for QListView (0xb3555c40) + QAbstractScrollArea (0xb3555cc0) 0 + primary-for QAbstractItemView (0xb3555c80) + QFrame (0xb3555d00) 0 + primary-for QAbstractScrollArea (0xb3555cc0) + QWidget (0xb358eb90) 0 + primary-for QFrame (0xb3555d00) + QObject (0xb35919d8) 0 + primary-for QWidget (0xb358eb90) + QPaintDevice (0xb3591a14) 8 + vptr=((& QUndoView::_ZTV9QUndoView) + 392u) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractButton) +8 QAbstractButton::metaObject +12 QAbstractButton::qt_metacast +16 QAbstractButton::qt_metacall +20 QAbstractButton::~QAbstractButton +24 QAbstractButton::~QAbstractButton +28 QAbstractButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 __cxa_pure_virtual +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI15QAbstractButton) +244 QAbstractButton::_ZThn8_N15QAbstractButtonD1Ev +248 QAbstractButton::_ZThn8_N15QAbstractButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=20 align=4 + base size=20 base align=4 +QAbstractButton (0xb3555fc0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 8u) + QWidget (0xb359fb90) 0 + primary-for QAbstractButton (0xb3555fc0) + QObject (0xb35a46cc) 0 + primary-for QWidget (0xb359fb90) + QPaintDevice (0xb35a4708) 8 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 244u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QButtonGroup) +8 QButtonGroup::metaObject +12 QButtonGroup::qt_metacast +16 QButtonGroup::qt_metacall +20 QButtonGroup::~QButtonGroup +24 QButtonGroup::~QButtonGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QButtonGroup + size=8 align=4 + base size=8 base align=4 +QButtonGroup (0xb35aa4c0) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 8u) + QObject (0xb35bcfb4) 0 + primary-for QButtonGroup (0xb35aa4c0) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QCalendarWidget) +8 QCalendarWidget::metaObject +12 QCalendarWidget::qt_metacast +16 QCalendarWidget::qt_metacall +20 QCalendarWidget::~QCalendarWidget +24 QCalendarWidget::~QCalendarWidget +28 QCalendarWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCalendarWidget::sizeHint +68 QCalendarWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QCalendarWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QCalendarWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QCalendarWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QCalendarWidget::paintCell +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI15QCalendarWidget) +236 QCalendarWidget::_ZThn8_N15QCalendarWidgetD1Ev +240 QCalendarWidget::_ZThn8_N15QCalendarWidgetD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=20 align=4 + base size=20 base align=4 +QCalendarWidget (0xb35aa800) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 8u) + QWidget (0xb35caaf0) 0 + primary-for QCalendarWidget (0xb35aa800) + QObject (0xb35c6d5c) 0 + primary-for QWidget (0xb35caaf0) + QPaintDevice (0xb35c6d98) 8 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 236u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QCheckBox) +8 QCheckBox::metaObject +12 QCheckBox::qt_metacast +16 QCheckBox::qt_metacall +20 QCheckBox::~QCheckBox +24 QCheckBox::~QCheckBox +28 QCheckBox::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCheckBox::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QCheckBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QCheckBox::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QCheckBox::hitButton +228 QCheckBox::checkStateSet +232 QCheckBox::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI9QCheckBox) +244 QCheckBox::_ZThn8_N9QCheckBoxD1Ev +248 QCheckBox::_ZThn8_N9QCheckBoxD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=20 align=4 + base size=20 base align=4 +QCheckBox (0xb35aab40) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 8u) + QAbstractButton (0xb35aab80) 0 + primary-for QCheckBox (0xb35aab40) + QWidget (0xb35e80f0) 0 + primary-for QAbstractButton (0xb35aab80) + QObject (0xb35d9d5c) 0 + primary-for QWidget (0xb35e80f0) + QPaintDevice (0xb35d9d98) 8 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 244u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QComboBox) +8 QComboBox::metaObject +12 QComboBox::qt_metacast +16 QComboBox::qt_metacall +20 QComboBox::~QComboBox +24 QComboBox::~QComboBox +28 QComboBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QComboBox::sizeHint +68 QComboBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QComboBox::mousePressEvent +84 QComboBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QComboBox::wheelEvent +100 QComboBox::keyPressEvent +104 QComboBox::keyReleaseEvent +108 QComboBox::focusInEvent +112 QComboBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QComboBox::paintEvent +128 QWidget::moveEvent +132 QComboBox::resizeEvent +136 QWidget::closeEvent +140 QComboBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QComboBox::showEvent +172 QComboBox::hideEvent +176 QWidget::x11Event +180 QComboBox::changeEvent +184 QWidget::metric +188 QComboBox::inputMethodEvent +192 QComboBox::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QComboBox::showPopup +228 QComboBox::hidePopup +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI9QComboBox) +240 QComboBox::_ZThn8_N9QComboBoxD1Ev +244 QComboBox::_ZThn8_N9QComboBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=20 align=4 + base size=20 base align=4 +QComboBox (0xb35aaf00) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 8u) + QWidget (0xb35f2690) 0 + primary-for QComboBox (0xb35aaf00) + QObject (0xb35fc0b4) 0 + primary-for QWidget (0xb35f2690) + QPaintDevice (0xb35fc0f0) 8 + vptr=((& QComboBox::_ZTV9QComboBox) + 240u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QPushButton) +8 QPushButton::metaObject +12 QPushButton::qt_metacast +16 QPushButton::qt_metacall +20 QPushButton::~QPushButton +24 QPushButton::~QPushButton +28 QPushButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QPushButton::sizeHint +68 QPushButton::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QPushButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QPushButton::focusInEvent +112 QPushButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QPushButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QPushButton) +244 QPushButton::_ZThn8_N11QPushButtonD1Ev +248 QPushButton::_ZThn8_N11QPushButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=20 align=4 + base size=20 base align=4 +QPushButton (0xb3619880) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 8u) + QAbstractButton (0xb36198c0) 0 + primary-for QPushButton (0xb3619880) + QWidget (0xb3632370) 0 + primary-for QAbstractButton (0xb36198c0) + QObject (0xb362dd20) 0 + primary-for QWidget (0xb3632370) + QPaintDevice (0xb362dd5c) 8 + vptr=((& QPushButton::_ZTV11QPushButton) + 244u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QCommandLinkButton) +8 QCommandLinkButton::metaObject +12 QCommandLinkButton::qt_metacast +16 QCommandLinkButton::qt_metacall +20 QCommandLinkButton::~QCommandLinkButton +24 QCommandLinkButton::~QCommandLinkButton +28 QCommandLinkButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCommandLinkButton::sizeHint +68 QCommandLinkButton::minimumSizeHint +72 QCommandLinkButton::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QPushButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QPushButton::focusInEvent +112 QPushButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QCommandLinkButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI18QCommandLinkButton) +244 QCommandLinkButton::_ZThn8_N18QCommandLinkButtonD1Ev +248 QCommandLinkButton::_ZThn8_N18QCommandLinkButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=20 align=4 + base size=20 base align=4 +QCommandLinkButton (0xb3619c80) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 8u) + QPushButton (0xb3619cc0) 0 + primary-for QCommandLinkButton (0xb3619c80) + QAbstractButton (0xb3619d00) 0 + primary-for QPushButton (0xb3619cc0) + QWidget (0xb363d5f0) 0 + primary-for QAbstractButton (0xb3619d00) + QObject (0xb344b12c) 0 + primary-for QWidget (0xb363d5f0) + QPaintDevice (0xb344b168) 8 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 244u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QDateTimeEdit) +8 QDateTimeEdit::metaObject +12 QDateTimeEdit::qt_metacast +16 QDateTimeEdit::qt_metacall +20 QDateTimeEdit::~QDateTimeEdit +24 QDateTimeEdit::~QDateTimeEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI13QDateTimeEdit) +260 QDateTimeEdit::_ZThn8_N13QDateTimeEditD1Ev +264 QDateTimeEdit::_ZThn8_N13QDateTimeEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=20 align=4 + base size=20 base align=4 +QDateTimeEdit (0xb3619fc0) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 8u) + QAbstractSpinBox (0xb3458000) 0 + primary-for QDateTimeEdit (0xb3619fc0) + QWidget (0xb3455190) 0 + primary-for QAbstractSpinBox (0xb3458000) + QObject (0xb344be4c) 0 + primary-for QWidget (0xb3455190) + QPaintDevice (0xb344be88) 8 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 260u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeEdit) +8 QTimeEdit::metaObject +12 QTimeEdit::qt_metacast +16 QTimeEdit::qt_metacall +20 QTimeEdit::~QTimeEdit +24 QTimeEdit::~QTimeEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI9QTimeEdit) +260 QTimeEdit::_ZThn8_N9QTimeEditD1Ev +264 QTimeEdit::_ZThn8_N9QTimeEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=20 align=4 + base size=20 base align=4 +QTimeEdit (0xb34582c0) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 8u) + QDateTimeEdit (0xb3458300) 0 + primary-for QTimeEdit (0xb34582c0) + QAbstractSpinBox (0xb3458340) 0 + primary-for QDateTimeEdit (0xb3458300) + QWidget (0xb34694b0) 0 + primary-for QAbstractSpinBox (0xb3458340) + QObject (0xb346f5a0) 0 + primary-for QWidget (0xb34694b0) + QPaintDevice (0xb346f5dc) 8 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 260u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QDateEdit) +8 QDateEdit::metaObject +12 QDateEdit::qt_metacast +16 QDateEdit::qt_metacall +20 QDateEdit::~QDateEdit +24 QDateEdit::~QDateEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI9QDateEdit) +260 QDateEdit::_ZThn8_N9QDateEditD1Ev +264 QDateEdit::_ZThn8_N9QDateEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=20 align=4 + base size=20 base align=4 +QDateEdit (0xb3458580) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 8u) + QDateTimeEdit (0xb34585c0) 0 + primary-for QDateEdit (0xb3458580) + QAbstractSpinBox (0xb3458600) 0 + primary-for QDateTimeEdit (0xb34585c0) + QWidget (0xb34765f0) 0 + primary-for QAbstractSpinBox (0xb3458600) + QObject (0xb346fe10) 0 + primary-for QWidget (0xb34765f0) + QPaintDevice (0xb346fe4c) 8 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 260u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb34826cc) 0 + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QDial) +8 QDial::metaObject +12 QDial::qt_metacast +16 QDial::qt_metacall +20 QDial::~QDial +24 QDial::~QDial +28 QDial::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDial::sizeHint +68 QDial::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDial::mousePressEvent +84 QDial::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QDial::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDial::paintEvent +128 QWidget::moveEvent +132 QDial::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDial::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI5QDial) +236 QDial::_ZThn8_N5QDialD1Ev +240 QDial::_ZThn8_N5QDialD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=20 align=4 + base size=20 base align=4 +QDial (0xb3458900) 0 + vptr=((& QDial::_ZTV5QDial) + 8u) + QAbstractSlider (0xb3458940) 0 + primary-for QDial (0xb3458900) + QWidget (0xb348cc30) 0 + primary-for QAbstractSlider (0xb3458940) + QObject (0xb349a258) 0 + primary-for QWidget (0xb348cc30) + QPaintDevice (0xb349a294) 8 + vptr=((& QDial::_ZTV5QDial) + 236u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QDialogButtonBox) +8 QDialogButtonBox::metaObject +12 QDialogButtonBox::qt_metacast +16 QDialogButtonBox::qt_metacall +20 QDialogButtonBox::~QDialogButtonBox +24 QDialogButtonBox::~QDialogButtonBox +28 QDialogButtonBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QDialogButtonBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI16QDialogButtonBox) +232 QDialogButtonBox::_ZThn8_N16QDialogButtonBoxD1Ev +236 QDialogButtonBox::_ZThn8_N16QDialogButtonBoxD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=20 align=4 + base size=20 base align=4 +QDialogButtonBox (0xb3458c00) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 8u) + QWidget (0xb34b31e0) 0 + primary-for QDialogButtonBox (0xb3458c00) + QObject (0xb34b5000) 0 + primary-for QWidget (0xb34b31e0) + QPaintDevice (0xb34b503c) 8 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb34c7474) 0 + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDockWidget) +8 QDockWidget::metaObject +12 QDockWidget::qt_metacast +16 QDockWidget::qt_metacall +20 QDockWidget::~QDockWidget +24 QDockWidget::~QDockWidget +28 QDockWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDockWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QDockWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QDockWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QDockWidget) +232 QDockWidget::_ZThn8_N11QDockWidgetD1Ev +236 QDockWidget::_ZThn8_N11QDockWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=20 align=4 + base size=20 base align=4 +QDockWidget (0xb3458f80) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 8u) + QWidget (0xb34d1730) 0 + primary-for QDockWidget (0xb3458f80) + QObject (0xb34e803c) 0 + primary-for QWidget (0xb34d1730) + QPaintDevice (0xb34e8078) 8 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb34f9708) 0 + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFocusFrame) +8 QFocusFrame::metaObject +12 QFocusFrame::qt_metacast +16 QFocusFrame::qt_metacall +20 QFocusFrame::~QFocusFrame +24 QFocusFrame::~QFocusFrame +28 QFocusFrame::event +32 QFocusFrame::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFocusFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QFocusFrame) +232 QFocusFrame::_ZThn8_N11QFocusFrameD1Ev +236 QFocusFrame::_ZThn8_N11QFocusFrameD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=20 align=4 + base size=20 base align=4 +QFocusFrame (0xb34eb380) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 8u) + QWidget (0xb3506370) 0 + primary-for QFocusFrame (0xb34eb380) + QObject (0xb35132d0) 0 + primary-for QWidget (0xb3506370) + QPaintDevice (0xb351330c) 8 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 232u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFontComboBox) +8 QFontComboBox::metaObject +12 QFontComboBox::qt_metacast +16 QFontComboBox::qt_metacall +20 QFontComboBox::~QFontComboBox +24 QFontComboBox::~QFontComboBox +28 QFontComboBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFontComboBox::sizeHint +68 QComboBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QComboBox::mousePressEvent +84 QComboBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QComboBox::wheelEvent +100 QComboBox::keyPressEvent +104 QComboBox::keyReleaseEvent +108 QComboBox::focusInEvent +112 QComboBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QComboBox::paintEvent +128 QWidget::moveEvent +132 QComboBox::resizeEvent +136 QWidget::closeEvent +140 QComboBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QComboBox::showEvent +172 QComboBox::hideEvent +176 QWidget::x11Event +180 QComboBox::changeEvent +184 QWidget::metric +188 QComboBox::inputMethodEvent +192 QComboBox::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QComboBox::showPopup +228 QComboBox::hidePopup +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI13QFontComboBox) +240 QFontComboBox::_ZThn8_N13QFontComboBoxD1Ev +244 QFontComboBox::_ZThn8_N13QFontComboBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=20 align=4 + base size=20 base align=4 +QFontComboBox (0xb34eb640) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 8u) + QComboBox (0xb34eb680) 0 + primary-for QFontComboBox (0xb34eb640) + QWidget (0xb3523a00) 0 + primary-for QComboBox (0xb34eb680) + QObject (0xb352e03c) 0 + primary-for QWidget (0xb3523a00) + QPaintDevice (0xb352e078) 8 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 240u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb353e03c) 0 + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QGroupBox) +8 QGroupBox::metaObject +12 QGroupBox::qt_metacast +16 QGroupBox::qt_metacall +20 QGroupBox::~QGroupBox +24 QGroupBox::~QGroupBox +28 QGroupBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QGroupBox::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QGroupBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGroupBox::mousePressEvent +84 QGroupBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QGroupBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QGroupBox::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGroupBox::paintEvent +128 QWidget::moveEvent +132 QGroupBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QGroupBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QGroupBox) +232 QGroupBox::_ZThn8_N9QGroupBoxD1Ev +236 QGroupBox::_ZThn8_N9QGroupBoxD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=20 align=4 + base size=20 base align=4 +QGroupBox (0xb34eba00) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 8u) + QWidget (0xb33446e0) 0 + primary-for QGroupBox (0xb34eba00) + QObject (0xb353ebf4) 0 + primary-for QWidget (0xb33446e0) + QPaintDevice (0xb353ec30) 8 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 232u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QLabel) +8 QLabel::metaObject +12 QLabel::qt_metacast +16 QLabel::qt_metacall +20 QLabel::~QLabel +24 QLabel::~QLabel +28 QLabel::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLabel::sizeHint +68 QLabel::minimumSizeHint +72 QLabel::heightForWidth +76 QWidget::paintEngine +80 QLabel::mousePressEvent +84 QLabel::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QLabel::mouseMoveEvent +96 QWidget::wheelEvent +100 QLabel::keyPressEvent +104 QWidget::keyReleaseEvent +108 QLabel::focusInEvent +112 QLabel::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLabel::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QLabel::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QLabel::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QLabel::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI6QLabel) +232 QLabel::_ZThn8_N6QLabelD1Ev +236 QLabel::_ZThn8_N6QLabelD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=20 align=4 + base size=20 base align=4 +QLabel (0xb34ebcc0) 0 + vptr=((& QLabel::_ZTV6QLabel) + 8u) + QFrame (0xb34ebd00) 0 + primary-for QLabel (0xb34ebcc0) + QWidget (0xb3364f00) 0 + primary-for QFrame (0xb34ebd00) + QObject (0xb3363a14) 0 + primary-for QWidget (0xb3364f00) + QPaintDevice (0xb3363a50) 8 + vptr=((& QLabel::_ZTV6QLabel) + 232u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QLCDNumber) +8 QLCDNumber::metaObject +12 QLCDNumber::qt_metacast +16 QLCDNumber::qt_metacall +20 QLCDNumber::~QLCDNumber +24 QLCDNumber::~QLCDNumber +28 QLCDNumber::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLCDNumber::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLCDNumber::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QLCDNumber) +232 QLCDNumber::_ZThn8_N10QLCDNumberD1Ev +236 QLCDNumber::_ZThn8_N10QLCDNumberD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=20 align=4 + base size=20 base align=4 +QLCDNumber (0xb3385000) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 8u) + QFrame (0xb3385040) 0 + primary-for QLCDNumber (0xb3385000) + QWidget (0xb337bd20) 0 + primary-for QFrame (0xb3385040) + QObject (0xb337aa50) 0 + primary-for QWidget (0xb337bd20) + QPaintDevice (0xb337aa8c) 8 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 232u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMainWindow) +8 QMainWindow::metaObject +12 QMainWindow::qt_metacast +16 QMainWindow::qt_metacall +20 QMainWindow::~QMainWindow +24 QMainWindow::~QMainWindow +28 QMainWindow::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QMainWindow::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QMainWindow::createPopupMenu +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI11QMainWindow) +236 QMainWindow::_ZThn8_N11QMainWindowD1Ev +240 QMainWindow::_ZThn8_N11QMainWindowD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=20 align=4 + base size=20 base align=4 +QMainWindow (0xb3385380) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 8u) + QWidget (0xb338e8c0) 0 + primary-for QMainWindow (0xb3385380) + QObject (0xb338cf3c) 0 + primary-for QWidget (0xb338e8c0) + QPaintDevice (0xb338cf78) 8 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 236u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb33af0b4) 0 + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QMdiArea) +8 QMdiArea::metaObject +12 QMdiArea::qt_metacast +16 QMdiArea::qt_metacall +20 QMdiArea::~QMdiArea +24 QMdiArea::~QMdiArea +28 QMdiArea::event +32 QMdiArea::eventFilter +36 QMdiArea::timerEvent +40 QMdiArea::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMdiArea::sizeHint +68 QMdiArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QMdiArea::paintEvent +128 QWidget::moveEvent +132 QMdiArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QMdiArea::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QMdiArea::viewportEvent +228 QMdiArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI8QMdiArea) +240 QMdiArea::_ZThn8_N8QMdiAreaD1Ev +244 QMdiArea::_ZThn8_N8QMdiAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=20 align=4 + base size=20 base align=4 +QMdiArea (0xb3385700) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 8u) + QAbstractScrollArea (0xb3385740) 0 + primary-for QMdiArea (0xb3385700) + QFrame (0xb3385780) 0 + primary-for QAbstractScrollArea (0xb3385740) + QWidget (0xb33b53c0) 0 + primary-for QFrame (0xb3385780) + QObject (0xb33afc6c) 0 + primary-for QWidget (0xb33b53c0) + QPaintDevice (0xb33afca8) 8 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 240u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb33e20f0) 0 + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QMdiSubWindow) +8 QMdiSubWindow::metaObject +12 QMdiSubWindow::qt_metacast +16 QMdiSubWindow::qt_metacall +20 QMdiSubWindow::~QMdiSubWindow +24 QMdiSubWindow::~QMdiSubWindow +28 QMdiSubWindow::event +32 QMdiSubWindow::eventFilter +36 QMdiSubWindow::timerEvent +40 QMdiSubWindow::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMdiSubWindow::sizeHint +68 QMdiSubWindow::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QMdiSubWindow::mousePressEvent +84 QMdiSubWindow::mouseReleaseEvent +88 QMdiSubWindow::mouseDoubleClickEvent +92 QMdiSubWindow::mouseMoveEvent +96 QWidget::wheelEvent +100 QMdiSubWindow::keyPressEvent +104 QWidget::keyReleaseEvent +108 QMdiSubWindow::focusInEvent +112 QMdiSubWindow::focusOutEvent +116 QWidget::enterEvent +120 QMdiSubWindow::leaveEvent +124 QMdiSubWindow::paintEvent +128 QMdiSubWindow::moveEvent +132 QMdiSubWindow::resizeEvent +136 QMdiSubWindow::closeEvent +140 QMdiSubWindow::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QMdiSubWindow::showEvent +172 QMdiSubWindow::hideEvent +176 QWidget::x11Event +180 QMdiSubWindow::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI13QMdiSubWindow) +232 QMdiSubWindow::_ZThn8_N13QMdiSubWindowD1Ev +236 QMdiSubWindow::_ZThn8_N13QMdiSubWindowD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=20 align=4 + base size=20 base align=4 +QMdiSubWindow (0xb3385b00) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 8u) + QWidget (0xb33f5140) 0 + primary-for QMdiSubWindow (0xb3385b00) + QObject (0xb33e2ca8) 0 + primary-for QWidget (0xb33f5140) + QPaintDevice (0xb33e2ce4) 8 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3404e10) 0 + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QMenu) +8 QMenu::metaObject +12 QMenu::qt_metacast +16 QMenu::qt_metacall +20 QMenu::~QMenu +24 QMenu::~QMenu +28 QMenu::event +32 QObject::eventFilter +36 QMenu::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMenu::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QMenu::mousePressEvent +84 QMenu::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QMenu::mouseMoveEvent +96 QMenu::wheelEvent +100 QMenu::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QMenu::enterEvent +120 QMenu::leaveEvent +124 QMenu::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QMenu::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QMenu::hideEvent +176 QWidget::x11Event +180 QMenu::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QMenu::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI5QMenu) +232 QMenu::_ZThn8_N5QMenuD1Ev +236 QMenu::_ZThn8_N5QMenuD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=20 align=4 + base size=20 base align=4 +QMenu (0xb3385ec0) 0 + vptr=((& QMenu::_ZTV5QMenu) + 8u) + QWidget (0xb34240a0) 0 + primary-for QMenu (0xb3385ec0) + QObject (0xb341899c) 0 + primary-for QWidget (0xb34240a0) + QPaintDevice (0xb34189d8) 8 + vptr=((& QMenu::_ZTV5QMenu) + 232u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QMenuBar) +8 QMenuBar::metaObject +12 QMenuBar::qt_metacast +16 QMenuBar::qt_metacall +20 QMenuBar::~QMenuBar +24 QMenuBar::~QMenuBar +28 QMenuBar::event +32 QMenuBar::eventFilter +36 QMenuBar::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QMenuBar::setVisible +64 QMenuBar::sizeHint +68 QMenuBar::minimumSizeHint +72 QMenuBar::heightForWidth +76 QWidget::paintEngine +80 QMenuBar::mousePressEvent +84 QMenuBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QMenuBar::mouseMoveEvent +96 QWidget::wheelEvent +100 QMenuBar::keyPressEvent +104 QWidget::keyReleaseEvent +108 QMenuBar::focusInEvent +112 QMenuBar::focusOutEvent +116 QWidget::enterEvent +120 QMenuBar::leaveEvent +124 QMenuBar::paintEvent +128 QWidget::moveEvent +132 QMenuBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QMenuBar::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QMenuBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI8QMenuBar) +232 QMenuBar::_ZThn8_N8QMenuBarD1Ev +236 QMenuBar::_ZThn8_N8QMenuBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=20 align=4 + base size=20 base align=4 +QMenuBar (0xb3276a00) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 8u) + QWidget (0xb32719b0) 0 + primary-for QMenuBar (0xb3276a00) + QObject (0xb327fe4c) 0 + primary-for QWidget (0xb32719b0) + QPaintDevice (0xb327fe88) 8 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 232u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMenuItem) +8 QMenuItem::metaObject +12 QMenuItem::qt_metacast +16 QMenuItem::qt_metacall +20 QMenuItem::~QMenuItem +24 QMenuItem::~QMenuItem +28 QAction::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QMenuItem + size=8 align=4 + base size=8 base align=4 +QMenuItem (0xb32d0540) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 8u) + QAction (0xb32d0580) 0 + primary-for QMenuItem (0xb32d0540) + QObject (0xb32d6348) 0 + primary-for QAction (0xb32d0580) + +Class QTextEdit::ExtraSelection + size=12 align=4 + base size=12 base align=4 +QTextEdit::ExtraSelection (0xb32ec168) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTextEdit) +8 QTextEdit::metaObject +12 QTextEdit::qt_metacast +16 QTextEdit::qt_metacall +20 QTextEdit::~QTextEdit +24 QTextEdit::~QTextEdit +28 QTextEdit::event +32 QObject::eventFilter +36 QTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTextEdit::mousePressEvent +84 QTextEdit::mouseReleaseEvent +88 QTextEdit::mouseDoubleClickEvent +92 QTextEdit::mouseMoveEvent +96 QTextEdit::wheelEvent +100 QTextEdit::keyPressEvent +104 QTextEdit::keyReleaseEvent +108 QTextEdit::focusInEvent +112 QTextEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTextEdit::paintEvent +128 QWidget::moveEvent +132 QTextEdit::resizeEvent +136 QWidget::closeEvent +140 QTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QTextEdit::dragEnterEvent +156 QTextEdit::dragMoveEvent +160 QTextEdit::dragLeaveEvent +164 QTextEdit::dropEvent +168 QTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTextEdit::changeEvent +184 QWidget::metric +188 QTextEdit::inputMethodEvent +192 QTextEdit::inputMethodQuery +196 QTextEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QTextEdit::scrollContentsBy +232 QTextEdit::loadResource +236 QTextEdit::createMimeDataFromSelection +240 QTextEdit::canInsertFromMimeData +244 QTextEdit::insertFromMimeData +248 (int (*)(...))-0x000000008 +252 (int (*)(...))(& _ZTI9QTextEdit) +256 QTextEdit::_ZThn8_N9QTextEditD1Ev +260 QTextEdit::_ZThn8_N9QTextEditD0Ev +264 QWidget::_ZThn8_NK7QWidget7devTypeEv +268 QWidget::_ZThn8_NK7QWidget11paintEngineEv +272 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=20 align=4 + base size=20 base align=4 +QTextEdit (0xb32d07c0) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 8u) + QAbstractScrollArea (0xb32d0800) 0 + primary-for QTextEdit (0xb32d07c0) + QFrame (0xb32d0840) 0 + primary-for QAbstractScrollArea (0xb32d0800) + QWidget (0xb32daaf0) 0 + primary-for QFrame (0xb32d0840) + QObject (0xb32d6a14) 0 + primary-for QWidget (0xb32daaf0) + QPaintDevice (0xb32d6a50) 8 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 256u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb331a99c) 0 + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QPlainTextEdit) +8 QPlainTextEdit::metaObject +12 QPlainTextEdit::qt_metacast +16 QPlainTextEdit::qt_metacall +20 QPlainTextEdit::~QPlainTextEdit +24 QPlainTextEdit::~QPlainTextEdit +28 QPlainTextEdit::event +32 QObject::eventFilter +36 QPlainTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QPlainTextEdit::mousePressEvent +84 QPlainTextEdit::mouseReleaseEvent +88 QPlainTextEdit::mouseDoubleClickEvent +92 QPlainTextEdit::mouseMoveEvent +96 QPlainTextEdit::wheelEvent +100 QPlainTextEdit::keyPressEvent +104 QPlainTextEdit::keyReleaseEvent +108 QPlainTextEdit::focusInEvent +112 QPlainTextEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QPlainTextEdit::paintEvent +128 QWidget::moveEvent +132 QPlainTextEdit::resizeEvent +136 QWidget::closeEvent +140 QPlainTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QPlainTextEdit::dragEnterEvent +156 QPlainTextEdit::dragMoveEvent +160 QPlainTextEdit::dragLeaveEvent +164 QPlainTextEdit::dropEvent +168 QPlainTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QPlainTextEdit::changeEvent +184 QWidget::metric +188 QPlainTextEdit::inputMethodEvent +192 QPlainTextEdit::inputMethodQuery +196 QPlainTextEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QPlainTextEdit::scrollContentsBy +232 QPlainTextEdit::loadResource +236 QPlainTextEdit::createMimeDataFromSelection +240 QPlainTextEdit::canInsertFromMimeData +244 QPlainTextEdit::insertFromMimeData +248 (int (*)(...))-0x000000008 +252 (int (*)(...))(& _ZTI14QPlainTextEdit) +256 QPlainTextEdit::_ZThn8_N14QPlainTextEditD1Ev +260 QPlainTextEdit::_ZThn8_N14QPlainTextEditD0Ev +264 QWidget::_ZThn8_NK7QWidget7devTypeEv +268 QWidget::_ZThn8_NK7QWidget11paintEngineEv +272 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=20 align=4 + base size=20 base align=4 +QPlainTextEdit (0xb3315440) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 8u) + QAbstractScrollArea (0xb3315480) 0 + primary-for QPlainTextEdit (0xb3315440) + QFrame (0xb33154c0) 0 + primary-for QAbstractScrollArea (0xb3315480) + QWidget (0xb3322be0) 0 + primary-for QFrame (0xb33154c0) + QObject (0xb3330564) 0 + primary-for QWidget (0xb3322be0) + QPaintDevice (0xb33305a0) 8 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 256u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +8 QPlainTextDocumentLayout::metaObject +12 QPlainTextDocumentLayout::qt_metacast +16 QPlainTextDocumentLayout::qt_metacall +20 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +24 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QPlainTextDocumentLayout::draw +60 QPlainTextDocumentLayout::hitTest +64 QPlainTextDocumentLayout::pageCount +68 QPlainTextDocumentLayout::documentSize +72 QPlainTextDocumentLayout::frameBoundingRect +76 QPlainTextDocumentLayout::blockBoundingRect +80 QPlainTextDocumentLayout::documentChanged +84 QAbstractTextDocumentLayout::resizeInlineObject +88 QAbstractTextDocumentLayout::positionInlineObject +92 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=8 align=4 + base size=8 base align=4 +QPlainTextDocumentLayout (0xb3315940) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 8u) + QAbstractTextDocumentLayout (0xb3315980) 0 + primary-for QPlainTextDocumentLayout (0xb3315940) + QObject (0xb3162348) 0 + primary-for QAbstractTextDocumentLayout (0xb3315980) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +8 QPrintPreviewWidget::metaObject +12 QPrintPreviewWidget::qt_metacast +16 QPrintPreviewWidget::qt_metacall +20 QPrintPreviewWidget::~QPrintPreviewWidget +24 QPrintPreviewWidget::~QPrintPreviewWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QPrintPreviewWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +232 QPrintPreviewWidget::_ZThn8_N19QPrintPreviewWidgetD1Ev +236 QPrintPreviewWidget::_ZThn8_N19QPrintPreviewWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=24 align=4 + base size=24 base align=4 +QPrintPreviewWidget (0xb3315c40) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 8u) + QWidget (0xb316a4b0) 0 + primary-for QPrintPreviewWidget (0xb3315c40) + QObject (0xb3162ca8) 0 + primary-for QWidget (0xb316a4b0) + QPaintDevice (0xb3162ce4) 8 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 232u) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QProgressBar) +8 QProgressBar::metaObject +12 QProgressBar::qt_metacast +16 QProgressBar::qt_metacall +20 QProgressBar::~QProgressBar +24 QProgressBar::~QProgressBar +28 QProgressBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QProgressBar::sizeHint +68 QProgressBar::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QProgressBar::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QProgressBar::text +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI12QProgressBar) +236 QProgressBar::_ZThn8_N12QProgressBarD1Ev +240 QProgressBar::_ZThn8_N12QProgressBarD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=20 align=4 + base size=20 base align=4 +QProgressBar (0xb3315f00) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 8u) + QWidget (0xb3179550) 0 + primary-for QProgressBar (0xb3315f00) + QObject (0xb3175a14) 0 + primary-for QWidget (0xb3179550) + QPaintDevice (0xb3175a50) 8 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 236u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QRadioButton) +8 QRadioButton::metaObject +12 QRadioButton::qt_metacast +16 QRadioButton::qt_metacall +20 QRadioButton::~QRadioButton +24 QRadioButton::~QRadioButton +28 QRadioButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QRadioButton::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QRadioButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QRadioButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QRadioButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QRadioButton) +244 QRadioButton::_ZThn8_N12QRadioButtonD1Ev +248 QRadioButton::_ZThn8_N12QRadioButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=20 align=4 + base size=20 base align=4 +QRadioButton (0xb318c1c0) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 8u) + QAbstractButton (0xb318c200) 0 + primary-for QRadioButton (0xb318c1c0) + QWidget (0xb3189550) 0 + primary-for QAbstractButton (0xb318c200) + QObject (0xb31888e8) 0 + primary-for QWidget (0xb3189550) + QPaintDevice (0xb3188924) 8 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 244u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QScrollBar) +8 QScrollBar::metaObject +12 QScrollBar::qt_metacast +16 QScrollBar::qt_metacall +20 QScrollBar::~QScrollBar +24 QScrollBar::~QScrollBar +28 QScrollBar::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QScrollBar::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QScrollBar::mousePressEvent +84 QScrollBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QScrollBar::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QScrollBar::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QScrollBar::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QScrollBar::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QScrollBar::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI10QScrollBar) +236 QScrollBar::_ZThn8_N10QScrollBarD1Ev +240 QScrollBar::_ZThn8_N10QScrollBarD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=20 align=4 + base size=20 base align=4 +QScrollBar (0xb318c4c0) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 8u) + QAbstractSlider (0xb318c500) 0 + primary-for QScrollBar (0xb318c4c0) + QWidget (0xb3199410) 0 + primary-for QAbstractSlider (0xb318c500) + QObject (0xb319e654) 0 + primary-for QWidget (0xb3199410) + QPaintDevice (0xb319e690) 8 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 236u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSizeGrip) +8 QSizeGrip::metaObject +12 QSizeGrip::qt_metacast +16 QSizeGrip::qt_metacall +20 QSizeGrip::~QSizeGrip +24 QSizeGrip::~QSizeGrip +28 QSizeGrip::event +32 QSizeGrip::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QSizeGrip::setVisible +64 QSizeGrip::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSizeGrip::mousePressEvent +84 QSizeGrip::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSizeGrip::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSizeGrip::paintEvent +128 QSizeGrip::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QSizeGrip::showEvent +172 QSizeGrip::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QSizeGrip) +232 QSizeGrip::_ZThn8_N9QSizeGripD1Ev +236 QSizeGrip::_ZThn8_N9QSizeGripD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=20 align=4 + base size=20 base align=4 +QSizeGrip (0xb318c800) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 8u) + QWidget (0xb31a7f50) 0 + primary-for QSizeGrip (0xb318c800) + QObject (0xb31b0618) 0 + primary-for QWidget (0xb31a7f50) + QPaintDevice (0xb31b0654) 8 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 232u) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QSpinBox) +8 QSpinBox::metaObject +12 QSpinBox::qt_metacast +16 QSpinBox::qt_metacall +20 QSpinBox::~QSpinBox +24 QSpinBox::~QSpinBox +28 QSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSpinBox::validate +228 QSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 QSpinBox::valueFromText +248 QSpinBox::textFromValue +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI8QSpinBox) +260 QSpinBox::_ZThn8_N8QSpinBoxD1Ev +264 QSpinBox::_ZThn8_N8QSpinBoxD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=20 align=4 + base size=20 base align=4 +QSpinBox (0xb318cac0) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 8u) + QAbstractSpinBox (0xb318cb00) 0 + primary-for QSpinBox (0xb318cac0) + QWidget (0xb31b9b40) 0 + primary-for QAbstractSpinBox (0xb318cb00) + QObject (0xb31bf348) 0 + primary-for QWidget (0xb31b9b40) + QPaintDevice (0xb31bf384) 8 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 260u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDoubleSpinBox) +8 QDoubleSpinBox::metaObject +12 QDoubleSpinBox::qt_metacast +16 QDoubleSpinBox::qt_metacall +20 QDoubleSpinBox::~QDoubleSpinBox +24 QDoubleSpinBox::~QDoubleSpinBox +28 QAbstractSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDoubleSpinBox::validate +228 QDoubleSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 QDoubleSpinBox::valueFromText +248 QDoubleSpinBox::textFromValue +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI14QDoubleSpinBox) +260 QDoubleSpinBox::_ZThn8_N14QDoubleSpinBoxD1Ev +264 QDoubleSpinBox::_ZThn8_N14QDoubleSpinBoxD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=20 align=4 + base size=20 base align=4 +QDoubleSpinBox (0xb318cf00) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 8u) + QAbstractSpinBox (0xb318cf40) 0 + primary-for QDoubleSpinBox (0xb318cf00) + QWidget (0xb31cf550) 0 + primary-for QAbstractSpinBox (0xb318cf40) + QObject (0xb31d5744) 0 + primary-for QWidget (0xb31cf550) + QPaintDevice (0xb31d5780) 8 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 260u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSplashScreen) +8 QSplashScreen::metaObject +12 QSplashScreen::qt_metacast +16 QSplashScreen::qt_metacall +20 QSplashScreen::~QSplashScreen +24 QSplashScreen::~QSplashScreen +28 QSplashScreen::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSplashScreen::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSplashScreen::drawContents +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI13QSplashScreen) +236 QSplashScreen::_ZThn8_N13QSplashScreenD1Ev +240 QSplashScreen::_ZThn8_N13QSplashScreenD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=20 align=4 + base size=20 base align=4 +QSplashScreen (0xb31e0200) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 8u) + QWidget (0xb31e1370) 0 + primary-for QSplashScreen (0xb31e0200) + QObject (0xb31e53fc) 0 + primary-for QWidget (0xb31e1370) + QPaintDevice (0xb31e5438) 8 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 236u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSplitter) +8 QSplitter::metaObject +12 QSplitter::qt_metacast +16 QSplitter::qt_metacall +20 QSplitter::~QSplitter +24 QSplitter::~QSplitter +28 QSplitter::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QSplitter::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSplitter::sizeHint +68 QSplitter::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QSplitter::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QSplitter::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSplitter::createHandle +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI9QSplitter) +236 QSplitter::_ZThn8_N9QSplitterD1Ev +240 QSplitter::_ZThn8_N9QSplitterD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=20 align=4 + base size=20 base align=4 +QSplitter (0xb31e0540) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 8u) + QFrame (0xb31e0580) 0 + primary-for QSplitter (0xb31e0540) + QWidget (0xb31f62d0) 0 + primary-for QFrame (0xb31e0580) + QObject (0xb31f7438) 0 + primary-for QWidget (0xb31f62d0) + QPaintDevice (0xb31f7474) 8 + vptr=((& QSplitter::_ZTV9QSplitter) + 236u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSplitterHandle) +8 QSplitterHandle::metaObject +12 QSplitterHandle::qt_metacast +16 QSplitterHandle::qt_metacall +20 QSplitterHandle::~QSplitterHandle +24 QSplitterHandle::~QSplitterHandle +28 QSplitterHandle::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSplitterHandle::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSplitterHandle::mousePressEvent +84 QSplitterHandle::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSplitterHandle::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSplitterHandle::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI15QSplitterHandle) +232 QSplitterHandle::_ZThn8_N15QSplitterHandleD1Ev +236 QSplitterHandle::_ZThn8_N15QSplitterHandleD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=20 align=4 + base size=20 base align=4 +QSplitterHandle (0xb31e0980) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 8u) + QWidget (0xb3204af0) 0 + primary-for QSplitterHandle (0xb31e0980) + QObject (0xb320abb8) 0 + primary-for QWidget (0xb3204af0) + QPaintDevice (0xb320abf4) 8 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 232u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QStackedWidget) +8 QStackedWidget::metaObject +12 QStackedWidget::qt_metacast +16 QStackedWidget::qt_metacall +20 QStackedWidget::~QStackedWidget +24 QStackedWidget::~QStackedWidget +28 QStackedWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI14QStackedWidget) +232 QStackedWidget::_ZThn8_N14QStackedWidgetD1Ev +236 QStackedWidget::_ZThn8_N14QStackedWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=20 align=4 + base size=20 base align=4 +QStackedWidget (0xb31e0c40) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 8u) + QFrame (0xb31e0c80) 0 + primary-for QStackedWidget (0xb31e0c40) + QWidget (0xb3217460) 0 + primary-for QFrame (0xb31e0c80) + QObject (0xb321b744) 0 + primary-for QWidget (0xb3217460) + QPaintDevice (0xb321b780) 8 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 232u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QStatusBar) +8 QStatusBar::metaObject +12 QStatusBar::qt_metacast +16 QStatusBar::qt_metacall +20 QStatusBar::~QStatusBar +24 QStatusBar::~QStatusBar +28 QStatusBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QStatusBar::paintEvent +128 QWidget::moveEvent +132 QStatusBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QStatusBar::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QStatusBar) +232 QStatusBar::_ZThn8_N10QStatusBarD1Ev +236 QStatusBar::_ZThn8_N10QStatusBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=20 align=4 + base size=20 base align=4 +QStatusBar (0xb31e0f40) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 8u) + QWidget (0xb3222e10) 0 + primary-for QStatusBar (0xb31e0f40) + QObject (0xb322a618) 0 + primary-for QWidget (0xb3222e10) + QPaintDevice (0xb322a654) 8 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 232u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextBrowser) +8 QTextBrowser::metaObject +12 QTextBrowser::qt_metacast +16 QTextBrowser::qt_metacall +20 QTextBrowser::~QTextBrowser +24 QTextBrowser::~QTextBrowser +28 QTextBrowser::event +32 QObject::eventFilter +36 QTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTextBrowser::mousePressEvent +84 QTextBrowser::mouseReleaseEvent +88 QTextEdit::mouseDoubleClickEvent +92 QTextBrowser::mouseMoveEvent +96 QTextEdit::wheelEvent +100 QTextBrowser::keyPressEvent +104 QTextEdit::keyReleaseEvent +108 QTextEdit::focusInEvent +112 QTextBrowser::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTextBrowser::paintEvent +128 QWidget::moveEvent +132 QTextEdit::resizeEvent +136 QWidget::closeEvent +140 QTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QTextEdit::dragEnterEvent +156 QTextEdit::dragMoveEvent +160 QTextEdit::dragLeaveEvent +164 QTextEdit::dropEvent +168 QTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTextEdit::changeEvent +184 QWidget::metric +188 QTextEdit::inputMethodEvent +192 QTextEdit::inputMethodQuery +196 QTextBrowser::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QTextEdit::scrollContentsBy +232 QTextBrowser::loadResource +236 QTextEdit::createMimeDataFromSelection +240 QTextEdit::canInsertFromMimeData +244 QTextEdit::insertFromMimeData +248 QTextBrowser::setSource +252 QTextBrowser::backward +256 QTextBrowser::forward +260 QTextBrowser::home +264 QTextBrowser::reload +268 (int (*)(...))-0x000000008 +272 (int (*)(...))(& _ZTI12QTextBrowser) +276 QTextBrowser::_ZThn8_N12QTextBrowserD1Ev +280 QTextBrowser::_ZThn8_N12QTextBrowserD0Ev +284 QWidget::_ZThn8_NK7QWidget7devTypeEv +288 QWidget::_ZThn8_NK7QWidget11paintEngineEv +292 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=20 align=4 + base size=20 base align=4 +QTextBrowser (0xb3237340) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 8u) + QTextEdit (0xb3237380) 0 + primary-for QTextBrowser (0xb3237340) + QAbstractScrollArea (0xb32373c0) 0 + primary-for QTextEdit (0xb3237380) + QFrame (0xb3237400) 0 + primary-for QAbstractScrollArea (0xb32373c0) + QWidget (0xb323e140) 0 + primary-for QFrame (0xb3237400) + QObject (0xb323a8ac) 0 + primary-for QWidget (0xb323e140) + QPaintDevice (0xb323a8e8) 8 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 276u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QToolBar) +8 QToolBar::metaObject +12 QToolBar::qt_metacast +16 QToolBar::qt_metacall +20 QToolBar::~QToolBar +24 QToolBar::~QToolBar +28 QToolBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QToolBar::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QToolBar::paintEvent +128 QWidget::moveEvent +132 QToolBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QToolBar::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI8QToolBar) +232 QToolBar::_ZThn8_N8QToolBarD1Ev +236 QToolBar::_ZThn8_N8QToolBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=20 align=4 + base size=20 base align=4 +QToolBar (0xb32376c0) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 8u) + QWidget (0xb3047820) 0 + primary-for QToolBar (0xb32376c0) + QObject (0xb304f5a0) 0 + primary-for QWidget (0xb3047820) + QPaintDevice (0xb304f5dc) 8 + vptr=((& QToolBar::_ZTV8QToolBar) + 232u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QToolBox) +8 QToolBox::metaObject +12 QToolBox::qt_metacast +16 QToolBox::qt_metacall +20 QToolBox::~QToolBox +24 QToolBox::~QToolBox +28 QToolBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QToolBox::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QToolBox::itemInserted +228 QToolBox::itemRemoved +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI8QToolBox) +240 QToolBox::_ZThn8_N8QToolBoxD1Ev +244 QToolBox::_ZThn8_N8QToolBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=20 align=4 + base size=20 base align=4 +QToolBox (0xb3237a80) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 8u) + QFrame (0xb3237ac0) 0 + primary-for QToolBox (0xb3237a80) + QWidget (0xb305cd20) 0 + primary-for QFrame (0xb3237ac0) + QObject (0xb3060bb8) 0 + primary-for QWidget (0xb305cd20) + QPaintDevice (0xb3060bf4) 8 + vptr=((& QToolBox::_ZTV8QToolBox) + 240u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QToolButton) +8 QToolButton::metaObject +12 QToolButton::qt_metacast +16 QToolButton::qt_metacall +20 QToolButton::~QToolButton +24 QToolButton::~QToolButton +28 QToolButton::event +32 QObject::eventFilter +36 QToolButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QToolButton::sizeHint +68 QToolButton::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QToolButton::mousePressEvent +84 QToolButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QToolButton::enterEvent +120 QToolButton::leaveEvent +124 QToolButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QToolButton::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QToolButton::hitButton +228 QAbstractButton::checkStateSet +232 QToolButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QToolButton) +244 QToolButton::_ZThn8_N11QToolButtonD1Ev +248 QToolButton::_ZThn8_N11QToolButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=20 align=4 + base size=20 base align=4 +QToolButton (0xb308c0c0) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 8u) + QAbstractButton (0xb308c100) 0 + primary-for QToolButton (0xb308c0c0) + QWidget (0xb308b4b0) 0 + primary-for QAbstractButton (0xb308c100) + QObject (0xb308e03c) 0 + primary-for QWidget (0xb308b4b0) + QPaintDevice (0xb308e078) 8 + vptr=((& QToolButton::_ZTV11QToolButton) + 244u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QWorkspace) +8 QWorkspace::metaObject +12 QWorkspace::qt_metacast +16 QWorkspace::qt_metacall +20 QWorkspace::~QWorkspace +24 QWorkspace::~QWorkspace +28 QWorkspace::event +32 QWorkspace::eventFilter +36 QObject::timerEvent +40 QWorkspace::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWorkspace::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWorkspace::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWorkspace::paintEvent +128 QWidget::moveEvent +132 QWorkspace::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWorkspace::showEvent +172 QWorkspace::hideEvent +176 QWidget::x11Event +180 QWorkspace::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QWorkspace) +232 QWorkspace::_ZThn8_N10QWorkspaceD1Ev +236 QWorkspace::_ZThn8_N10QWorkspaceD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=20 align=4 + base size=20 base align=4 +QWorkspace (0xb308c7c0) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 8u) + QWidget (0xb30a0910) 0 + primary-for QWorkspace (0xb308c7c0) + QObject (0xb30ad6cc) 0 + primary-for QWidget (0xb30a0910) + QPaintDevice (0xb30ad708) 8 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 232u) + +Class QGLColormap::QGLColormapData + size=12 align=4 + base size=12 base align=4 +QGLColormap::QGLColormapData (0xb30bc9d8) 0 + +Class QGLColormap + size=4 align=4 + base size=4 base align=4 +QGLColormap (0xb30bc708) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb30cf0f0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb30cf1a4) 0 + +Class QGLFormat + size=4 align=4 + base size=4 base align=4 +QGLFormat (0xb30cfac8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb2e92528) 0 + +Vtable for QGLContext +QGLContext::_ZTV10QGLContext: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QGLContext) +8 QGLContext::~QGLContext +12 QGLContext::~QGLContext +16 QGLContext::create +20 QGLContext::makeCurrent +24 QGLContext::doneCurrent +28 QGLContext::swapBuffers +32 QGLContext::chooseContext +36 QGLContext::tryVisual +40 QGLContext::chooseVisual + +Class QGLContext + size=8 align=4 + base size=8 base align=4 +QGLContext (0xb2ea9078) 0 + vptr=((& QGLContext::_ZTV10QGLContext) + 8u) + +Vtable for QGLWidget +QGLWidget::_ZTV9QGLWidget: 73u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QGLWidget) +8 QGLWidget::metaObject +12 QGLWidget::qt_metacast +16 QGLWidget::qt_metacall +20 QGLWidget::~QGLWidget +24 QGLWidget::~QGLWidget +28 QGLWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QGLWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGLWidget::paintEvent +128 QWidget::moveEvent +132 QGLWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QGLWidget::updateGL +228 QGLWidget::updateOverlayGL +232 QGLWidget::initializeGL +236 QGLWidget::resizeGL +240 QGLWidget::paintGL +244 QGLWidget::initializeOverlayGL +248 QGLWidget::resizeOverlayGL +252 QGLWidget::paintOverlayGL +256 QGLWidget::glInit +260 QGLWidget::glDraw +264 (int (*)(...))-0x000000008 +268 (int (*)(...))(& _ZTI9QGLWidget) +272 QGLWidget::_ZThn8_N9QGLWidgetD1Ev +276 QGLWidget::_ZThn8_N9QGLWidgetD0Ev +280 QWidget::_ZThn8_NK7QWidget7devTypeEv +284 QGLWidget::_ZThn8_NK9QGLWidget11paintEngineEv +288 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGLWidget + size=20 align=4 + base size=20 base align=4 +QGLWidget (0xb308cf80) 0 + vptr=((& QGLWidget::_ZTV9QGLWidget) + 8u) + QWidget (0xb2ebeaf0) 0 + primary-for QGLWidget (0xb308cf80) + QObject (0xb2ea9870) 0 + primary-for QWidget (0xb2ebeaf0) + QPaintDevice (0xb2ea98ac) 8 + vptr=((& QGLWidget::_ZTV9QGLWidget) + 272u) + +Vtable for QGLFramebufferObject +QGLFramebufferObject::_ZTV20QGLFramebufferObject: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGLFramebufferObject) +8 QGLFramebufferObject::~QGLFramebufferObject +12 QGLFramebufferObject::~QGLFramebufferObject +16 QGLFramebufferObject::devType +20 QGLFramebufferObject::paintEngine +24 QGLFramebufferObject::metric + +Class QGLFramebufferObject + size=12 align=4 + base size=12 base align=4 +QGLFramebufferObject (0xb2ec5500) 0 + vptr=((& QGLFramebufferObject::_ZTV20QGLFramebufferObject) + 8u) + QPaintDevice (0xb2ee23fc) 0 + primary-for QGLFramebufferObject (0xb2ec5500) + +Vtable for QGLPixelBuffer +QGLPixelBuffer::_ZTV14QGLPixelBuffer: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QGLPixelBuffer) +8 QGLPixelBuffer::~QGLPixelBuffer +12 QGLPixelBuffer::~QGLPixelBuffer +16 QGLPixelBuffer::devType +20 QGLPixelBuffer::paintEngine +24 QGLPixelBuffer::metric + +Class QGLPixelBuffer + size=12 align=4 + base size=12 base align=4 +QGLPixelBuffer (0xb2ec5680) 0 + vptr=((& QGLPixelBuffer::_ZTV14QGLPixelBuffer) + 8u) + QPaintDevice (0xb2ee2ca8) 0 + primary-for QGLPixelBuffer (0xb2ec5680) + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2d447bc) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2d5cd5c) 0 + +Class QVectorTypedData + size=24 align=4 + base size=24 base align=4 +QVectorTypedData (0xb2e2a078) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2e2ab7c) 0 + +Class QVectorTypedData + size=36 align=4 + base size=36 base align=4 +QVectorTypedData (0xb2c49654) 0 + +Class QVectorTypedData + size=48 align=4 + base size=48 base align=4 +QVectorTypedData (0xb2cbee88) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2cd303c) 0 + +Class QVectorTypedData + size=48 align=4 + base size=48 base align=4 +QVectorTypedData (0xb2cd321c) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2cd33fc) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2b94bb8) 0 + +Class QVectorTypedData > + size=20 align=4 + base size=20 base align=4 +QVectorTypedData > (0xb2b94d98) 0 + +Class QVectorTypedData + size=28 align=4 + base size=28 base align=4 +QVectorTypedData (0xb2bbff3c) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2bd83c0) 0 + +Class QVectorTypedData + size=28 align=4 + base size=28 base align=4 +QVectorTypedData (0xb2bd8d98) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2c1dac8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2a67a50) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb2a67ac8) 0 + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb2a8d9d8) 0 empty + +Class QHashNode + size=16 align=4 + base size=13 base align=4 +QHashNode (0xb2a8dce4) 0 + +Class QHashNode + size=16 align=4 + base size=16 base align=4 +QHashNode (0xb2add8e8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2addec4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2b041e0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2b04a8c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2b04ec4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2b10474) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2b1e528) 0 empty + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb2b1ef3c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2b2c078) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2b2c2d0) 0 + +Class QVector::realloc(int, int) [with T = QPoint]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPoint]:: (0xb2b2ca8c) 0 + +Class QVector::realloc(int, int) [with T = QPointF]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPointF]:: (0xb29601e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2960960) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb29609d8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2960e88) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2960f00) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb299e348) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb299e780) 0 + +Class QVector::realloc(int, int) [with T = QTextLength]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QTextLength]:: (0xb299eb04) 0 + +Class QHashDummyNode + size=12 align=4 + base size=12 base align=4 +QHashDummyNode (0xb29d40b4) 0 + +Class QVector::realloc(int, int) [with T = QPainterPath::Element]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPainterPath::Element]:: (0xb29d4744) 0 + diff --git a/tests/auto/bic/data/QtScript.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtScript.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..fb70146 --- /dev/null +++ b/tests/auto/bic/data/QtScript.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,4710 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb782b03c) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb782b078) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7c89b40) 0 empty + QUintForSize<4> (0xb782b0f0) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb782b21c) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb782b258) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7c89d00) 0 empty + QIntForSize<4> (0xb782b2d0) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb782b654) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb782bc6c) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb783f618) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb783f6cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb783f8ac) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb783f99c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb783fa8c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb783fb7c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb783fc6c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb783fd5c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb783fe4c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb783ff3c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb785a03c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb785a12c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb785a21c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb785a30c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb785a3fc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb785a4ec) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb785a5dc) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb785a6cc) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb7876168) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb78765dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb789c294) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb6a99d5c) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6acb240) 0 + QBasicAtomicInt (0xb6abbd20) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6ad1c6c) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6b0ee4c) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6af0258) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb6b3ae4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b7bf3c) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b941e0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b94b04) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69d8438) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69d8d5c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69eb690) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69ebfb4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69fe8e8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a0d21c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a0db40) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a21474) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a21d98) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a356cc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a46000) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb6a46924) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb6a8ac30) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb6898168) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb6a46a8c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6898d20) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb68fad98) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb6958654) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb67c3b00) 0 + QString (0xb68110f0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb68113fc) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb681f294) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb687a000) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb687b100) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb687a30c) 0 nearly-empty + primary-for std::bad_exception (0xb687b100) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb687b240) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb687a5dc) 0 nearly-empty + primary-for std::bad_alloc (0xb687b240) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb687a8ac) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb687ab04) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb687aac8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6721d5c) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb6721b40) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb67210b4) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb673d3c0) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb673d348) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb6758654) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb6758bb8) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb67621a4) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb6769000) 0 + QGenericArgument (0xb67625dc) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb6762ac8) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb67628e8) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6779c30) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6779bb8) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb6779b04) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb6779d5c) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb65bc2d0) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb65bae80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb65bcc30) 0 + primary-for QIODevice (0xb65bae80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb65d7f3c) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb6601dd4) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb661de4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6651654) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb6651744) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6651ca8) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6651c30) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb662cf80) 0 + QList (0xb6651ce4) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb667da50) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb667dc6c) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb6495ce4) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb6672f40) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb64a8294) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb6672f40) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb64a5a00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb64a85dc) 0 + primary-for QTextCodecPlugin (0xb64a5a00) + QTextCodecFactoryInterface (0xb64ab0c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb64a8618) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb64ab0c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb64a8f3c) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb64bba8c) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb64bb780) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb64ab980) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb64c6c6c) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb64ab980) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb64aba40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb64aba80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb64aba40) + std::exception (0xb64c6e10) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb64aba80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb64c6fb4) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb64ca12c) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb64ca1a4) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb64ca168) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb6572ac8) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb6572a8c) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb638e3c0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb638e474) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb64253fc) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb64254ec) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6425474) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb6425564) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb64255dc) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb6425618) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb6425654) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb64256cc) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb6425708) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6465e88) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb6474b04) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb642be00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb6480b7c) 0 + primary-for QTextIStream (0xb642be00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb62930c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb628f5dc) 0 + primary-for QTextOStream (0xb62930c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb62a1078) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb62a10f0) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb62a1000) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62a1168) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62a11e0) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb62a1258) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb62a12d0) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb62a130c) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb62a1348) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb62a13c0) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb62a1438) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb62a1474) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb62a15a0) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb62a1528) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb62a14ec) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb62a1618) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb62a1708) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb62a1690) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb62a1780) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb62a1870) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb62a17f8) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62a1924) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb62a199c) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb62a1a14) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb62a1a50) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb62a1a8c) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb62a1ac8) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb635ea14) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb635e9d8) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb61be7bc) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb61d53fc) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb61d5384) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb61d5744) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb61d5294) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb61d5870) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb61d5f78) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb61d5708) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb6219780) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb620bac8) 0 + primary-for QFutureInterface (0xb6219780) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb6256258) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb62726c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb62718e8) 0 + primary-for QFutureWatcherBase (0xb62726c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb6272dc0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb6272e00) 0 + primary-for QFutureWatcher (0xb6272dc0) + QObject (0xb608b3fc) 0 + primary-for QFutureWatcherBase (0xb6272e00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb60a130c) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb60958c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb60a1c30) 0 + primary-for QThread (0xb60958c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb6095c00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb60b6a50) 0 + primary-for QThreadPool (0xb6095c00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb60c43fc) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb60c46cc) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb60cd2c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb60d33fc) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb60cd2c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb60d3bf4) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb60cdc40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb60d3c6c) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb60cde00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb60cde40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb60e80f0) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb60cde40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb60e8708) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb60e8744) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb60ef140) 0 empty + std::input_iterator_tag (0xb60e8780) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb60ef1c0) 0 empty + std::forward_iterator_tag (0xb60ef200) 0 empty + std::input_iterator_tag (0xb60e87bc) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb60ef280) 0 empty + std::bidirectional_iterator_tag (0xb60ef2c0) 0 empty + std::forward_iterator_tag (0xb60ef300) 0 empty + std::input_iterator_tag (0xb60e87f8) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb60e8b04) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb60e8b40) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb60e8bb8) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb60e8dd4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60e8ec4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60e8f3c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60e8fb4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60e8258) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb610903c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61090b4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb610912c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61091a4) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb610921c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6109294) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb610930c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6109384) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61093fc) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb61094ec) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb6109564) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb61095dc) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb6109960) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb61099d8) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb6109ac8) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb6109b40) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb6109bb8) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6109dd4) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6109e10) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6109e4c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6109e88) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6109ec4) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6109f00) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6109f78) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6109fb4) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb611e000) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb611e03c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb611e078) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb611e0b4) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb611ea8c) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb5f99078) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb5f994b0) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb5f996cc) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb5f99ac8) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb5f99c30) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb5f99d98) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5fd7474) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5febec4) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb5ff77f8) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb5ff7a50) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb5ff7a8c) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb5ff7b04) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb5ff7b40) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb5ff7bb8) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb5ff7dd4) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb5ff7f3c) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb5ff7ec4) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb5ff7f78) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb5ff7fb4) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb60814ec) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb60817bc) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5e7b7c0) 0 empty + __gnu_cxx::new_allocator (0xb60817f8) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb6081834) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5e7b880) 0 empty + __gnu_cxx::new_allocator (0xb6081870) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb6081a8c) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5f24384) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5f243c0) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5f20b40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5f243fc) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5dbb078) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5db9100) 0 + std::allocator (0xb5db9140) 0 empty + __gnu_cxx::new_allocator (0xb5dbb0f0) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5dbb000) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5dbb12c) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5db92c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5dbb168) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5dbb21c) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5db94c0) 0 + std::allocator (0xb5db9500) 0 empty + __gnu_cxx::new_allocator (0xb5dbb294) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5dbb1a4) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5dbb2d0) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5dbb384) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5db9680) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5dbb30c) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5dbb3c0) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5e52834) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5e5d1e0) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5e5d528) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5e68640) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5e64ec4) 0 + primary-for std::collate (0xb5e68640) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5e68740) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5e64fb4) 0 + primary-for std::collate (0xb5e68740) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5c7c3fc) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5c7c438) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5c896c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5c7c474) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5c89800) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5c89840) 0 + primary-for std::collate_byname (0xb5c89800) + std::locale::facet (0xb5c7c4ec) 0 + primary-for std::collate (0xb5c89840) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5c898c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5c89900) 0 + primary-for std::collate_byname (0xb5c898c0) + std::locale::facet (0xb5c7c5dc) 0 + primary-for std::collate (0xb5c89900) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5c89f40) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5ca33fc) 0 nearly-empty + primary-for std::ios_base::failure (0xb5c89f40) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5cad690) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5cadc30) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5cb103c) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5ca33c0) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5ce2a50) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5ce2ce4) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5ce2f78) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5d58050) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5d28ec4) 0 + primary-for std::ctype (0xb5d58050) + std::ctype_base (0xb5d28f00) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5d61910) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5d71a8c) 0 + primary-for std::__ctype_abstract_base (0xb5d61910) + std::ctype_base (0xb5d71ac8) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5d66800) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5b7d780) 0 + primary-for std::ctype (0xb5d66800) + std::locale::facet (0xb5d71bb8) 0 + primary-for std::__ctype_abstract_base (0xb5b7d780) + std::ctype_base (0xb5d71bf4) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5d669c0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5b84f00) 0 + primary-for std::ctype_byname (0xb5d669c0) + std::locale::facet (0xb5b83f00) 0 + primary-for std::ctype (0xb5b84f00) + std::ctype_base (0xb5b83f3c) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5d66a40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5d66a80) 0 + primary-for std::ctype_byname (0xb5d66a40) + std::__ctype_abstract_base (0xb5b88550) 0 + primary-for std::ctype (0xb5d66a80) + std::locale::facet (0xb5b8a078) 0 + primary-for std::__ctype_abstract_base (0xb5b88550) + std::ctype_base (0xb5b8a0b4) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5b8aac8) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5b96480) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5b9c2d0) 0 + primary-for std::numpunct (0xb5b96480) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5b96540) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5b9c3c0) 0 + primary-for std::numpunct (0xb5b96540) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5bd2a14) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5c1aa80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5c1aac0) 0 + primary-for std::numpunct_byname (0xb5c1aa80) + std::locale::facet (0xb5c3103c) 0 + primary-for std::numpunct (0xb5c1aac0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5c1ab00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5c3112c) 0 + primary-for std::num_get > > (0xb5c1ab00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5c1ab80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5c3121c) 0 + primary-for std::num_put > > (0xb5c1ab80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5c1ac00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5c1ac40) 0 + primary-for std::numpunct_byname (0xb5c1ac00) + std::locale::facet (0xb5c3130c) 0 + primary-for std::numpunct (0xb5c1ac40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5c1acc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5c313fc) 0 + primary-for std::num_get > > (0xb5c1acc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5c1ad40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5c314ec) 0 + primary-for std::num_put > > (0xb5c1ad40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5c6fd80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5c31ce4) 0 + primary-for std::basic_ios > (0xb5c6fd80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5c6fdc0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5c31dd4) 0 + primary-for std::basic_ios > (0xb5c6fdc0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5ab7a40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5ab7a80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb5a9a8e8) 4 + primary-for std::basic_ios > (0xb5ab7a80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5a9aac8) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5ab7bc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5ab7c00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5a9ab04) 4 + primary-for std::basic_ios > (0xb5ab7c00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5a9aca8) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5af8480) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5af84c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5af91a4) 8 + primary-for std::basic_ios > (0xb5af84c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5af8580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5af85c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5af9528) 8 + primary-for std::basic_ios > (0xb5af85c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5af9c30) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5af9c6c) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5b25480) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5af9ca8) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5b54168) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb5b61380 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb5b61400 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5b69be0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb5b61380) 0 + primary-for std::basic_iostream > (0xb5b69be0) + subvttidx=4u + std::basic_ios > (0xb5b613c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5b541a4) 12 + primary-for std::basic_ios > (0xb5b613c0) + std::basic_ostream > (0xb5b61400) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb5b613c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5b54438) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb5b61700 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb5b61780 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5b77c80) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb5b61700) 0 + primary-for std::basic_iostream > (0xb5b77c80) + subvttidx=4u + std::basic_ios > (0xb5b61740) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb5b54474) 12 + primary-for std::basic_ios > (0xb5b61740) + std::basic_ostream > (0xb5b61780) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb5b61740) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb5b54d5c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb5b54ce4) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb5b54c6c) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb5b54bb8) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb59a003c) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb59a08ac) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb588bd20) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb58aa410) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb589ba00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb58aa410) + QFutureInterfaceBase (0xb588bf00) 0 + primary-for QFutureInterface (0xb589ba00) + QRunnable (0xb588bf3c) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb589ba80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb58aa820) 0 + primary-for QtConcurrent::RunFunctionTask (0xb589ba80) + QFutureInterface (0xb589bac0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb58aa820) + QFutureInterfaceBase (0xb58b00f0) 0 + primary-for QFutureInterface (0xb589bac0) + QRunnable (0xb58b012c) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb5815384) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb57fee00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb57fee40) 0 + primary-for QFile (0xb57fee00) + QObject (0xb5815474) 0 + primary-for QIODevice (0xb57fee40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb582de10) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb584199c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb585f03c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb585f348) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb58720b4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb587203c) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb58721a4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5691708) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56917f8) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb56d4384) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb56d43c0) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb56b9240) 0 + QAbstractFileEngine::ExtensionOption (0xb56d43fc) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb56b92c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb56d44ec) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb56b9340) 0 + QAbstractFileEngine::ExtensionOption (0xb56d4528) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb56c3ac8) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56d4bb8) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb56e1a14) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb56e1bb8) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb56b9580) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb56b95c0) 0 + primary-for QBuffer (0xb56b9580) + QObject (0xb56f00b4) 0 + primary-for QIODevice (0xb56b95c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb56f0dd4) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5702564) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb56b9a00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb5710348) 0 + primary-for QFileSystemWatcher (0xb56b9a00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb56b9cc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb5710d20) 0 + primary-for QFSFileEngine (0xb56b9cc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb56b9dc0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb56b9e00) 0 + primary-for QProcess (0xb56b9dc0) + QObject (0xb57286cc) 0 + primary-for QIODevice (0xb56b9e00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb57450f0) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb5766528) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb57665a0) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb574530c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5766d98) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5766f00) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb558130c) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb55817f8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5581c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5581e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb559f000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb559f1e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb559f3c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb559f5a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb559f780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb559f960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb559fb40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb559fd20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb559ff00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a90f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a92d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a94b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a9690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a9870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a9a50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a9c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a9e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae1e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae3c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae5a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55aeb40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55aed20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55aef00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b90f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b92d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b94b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9a50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c0000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c01e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c03c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c05a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c0780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c0960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c0b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c0d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c0f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c70f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c72d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c74b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c7690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c7870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c7a50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c7c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c7e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ce000) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb55dae88) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb55e8078) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb55daf3c) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb55e8744) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb55ce1e0) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb5600c6c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb5600bf4) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb5600d5c) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb5600ce4) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb563f0f0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb563f708) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb563f8e8) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb563fac8) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb564a2c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb563fca8) 0 + primary-for QSettings (0xb564a2c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb564aec0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb564af00) 0 + primary-for QTemporaryFile (0xb564aec0) + QIODevice (0xb564af40) 0 + primary-for QFile (0xb564af00) + QObject (0xb5481a14) 0 + primary-for QIODevice (0xb564af40) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb548eb7c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5499a8c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54c5528) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb5492ac0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb54d4384) 0 + primary-for QEventLoop (0xb5492ac0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb54d499c) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb5492e40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb54ead5c) 0 + primary-for QAbstractEventDispatcher (0xb5492e40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb54f9c30) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5518000) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb55180f0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5518834) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb5500a00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb5518924) 0 + primary-for QAbstractItemModel (0xb5500a00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb5500ec0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb5500f00) 0 + primary-for QAbstractTableModel (0xb5500ec0) + QObject (0xb55464b0) 0 + primary-for QAbstractItemModel (0xb5500f00) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb5551140) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb5551180) 0 + primary-for QAbstractListModel (0xb5551140) + QObject (0xb5546f3c) 0 + primary-for QAbstractItemModel (0xb5551180) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb556599c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb536f12c) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb536f21c) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb5551b80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb536ff3c) 0 + primary-for QTimerEvent (0xb5551b80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb5551c40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb5380168) 0 + primary-for QChildEvent (0xb5551c40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb5551e00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb53809d8) 0 + primary-for QCustomEvent (0xb5551e00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb5551f00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb5380dd4) 0 + primary-for QDynamicPropertyChangeEvent (0xb5551f00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb5551fc0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb538030c) 0 + primary-for QCoreApplication (0xb5551fc0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb53a89d8) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb53a8d5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53dc21c) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb53dc30c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53dc744) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb53dc834) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb53dcb40) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53dce88) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb53eb240) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb53dcf78) 0 + primary-for QMimeData (0xb53eb240) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb53eb500) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb53f2b04) 0 + primary-for QObjectCleanupHandler (0xb53eb500) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb53eb740) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb5404348) 0 + primary-for QSharedMemory (0xb53eb740) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb53eba00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb5412168) 0 + primary-for QSignalMapper (0xb53eba00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb53ebcc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb54202d0) 0 + primary-for QSocketNotifier (0xb53ebcc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb542c348) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb542e040) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb542c870) 0 + primary-for QTimer (0xb542e040) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb542e4c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb543e99c) 0 + primary-for QTranslator (0xb542e4c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb542e7c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb544c7bc) 0 + primary-for QLibrary (0xb542e7c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb545b708) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb542eb40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb526d2d0) 0 + primary-for QPluginLoader (0xb542eb40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb526dec4) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb5288ce4) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb5295384) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb5295078) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb529d870) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb529d564) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb52a4a50) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb52a4d20) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb52b512c) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb52d5e4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52e5b40) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb52e5dd4) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb52f57bc) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb52f5b40) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53234ec) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb53235dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb532db40) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb532dc30) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53412d0) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb53414b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53542d0) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb5366528) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51513c0) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb51684ec) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51688ac) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb5187a14) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5194438) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb51bd078) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb5226384) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb522f3c0) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb504f000) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb504fe88) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb506ce4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5087d5c) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb50ce924) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50e9e4c) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb51284ec) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb5144708) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb514a7c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb4f590b4) 0 + primary-for QTimeLine (0xb514a7c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb4f6e474) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb4f8e618) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f97b7c) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4f97ce4) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4f97c6c) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb4f98240) 0 + QVector (0xb4f97d20) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb4f97d5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fba780) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb4fba8ac) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fc9474) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb4fc95a0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fdc528) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb4fdc654) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb4fdc7f8) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb4ff8dd4) 0 + +Class QScriptable + size=4 align=4 + base size=4 base align=4 +QScriptable (0xb50103c0) 0 + +Class QScriptValue + size=4 align=4 + base size=4 base align=4 +QScriptValue (0xb5010870) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb50237f8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb50238e8) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb5023d20) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb5023ca8) 0 + +Vtable for QScriptClass +QScriptClass::_ZTV12QScriptClass: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QScriptClass) +8 QScriptClass::~QScriptClass +12 QScriptClass::~QScriptClass +16 QScriptClass::queryProperty +20 QScriptClass::property +24 QScriptClass::setProperty +28 QScriptClass::propertyFlags +32 QScriptClass::newIterator +36 QScriptClass::prototype +40 QScriptClass::name +44 QScriptClass::supportsExtension +48 QScriptClass::extension + +Class QScriptClass + size=8 align=4 + base size=8 base align=4 +QScriptClass (0xb4e507bc) 0 + vptr=((& QScriptClass::_ZTV12QScriptClass) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4e631a4) 0 + +Vtable for QScriptClassPropertyIterator +QScriptClassPropertyIterator::_ZTV28QScriptClassPropertyIterator: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI28QScriptClassPropertyIterator) +8 QScriptClassPropertyIterator::~QScriptClassPropertyIterator +12 QScriptClassPropertyIterator::~QScriptClassPropertyIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 QScriptClassPropertyIterator::id +48 QScriptClassPropertyIterator::flags + +Class QScriptClassPropertyIterator + size=8 align=4 + base size=8 base align=4 +QScriptClassPropertyIterator (0xb4e63d5c) 0 + vptr=((& QScriptClassPropertyIterator::_ZTV28QScriptClassPropertyIterator) + 8u) + +Class QScriptContext + size=4 align=4 + base size=4 base align=4 +QScriptContext (0xb4e7b3fc) 0 + +Class QScriptContextInfo + size=4 align=4 + base size=4 base align=4 +QScriptContextInfo (0xb4e7ba8c) 0 + +Class QScriptString + size=4 align=4 + base size=4 base align=4 +QScriptString (0xb4e88294) 0 + +Vtable for QScriptEngine +QScriptEngine::_ZTV13QScriptEngine: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QScriptEngine) +8 QScriptEngine::metaObject +12 QScriptEngine::qt_metacast +16 QScriptEngine::qt_metacall +20 QScriptEngine::~QScriptEngine +24 QScriptEngine::~QScriptEngine +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QScriptEngine + size=8 align=4 + base size=8 base align=4 +QScriptEngine (0xb5035700) 0 + vptr=((& QScriptEngine::_ZTV13QScriptEngine) + 8u) + QObject (0xb4e88870) 0 + primary-for QScriptEngine (0xb5035700) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4e9e5dc) 0 + +Vtable for QScriptEngineAgent +QScriptEngineAgent::_ZTV18QScriptEngineAgent: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QScriptEngineAgent) +8 QScriptEngineAgent::~QScriptEngineAgent +12 QScriptEngineAgent::~QScriptEngineAgent +16 QScriptEngineAgent::scriptLoad +20 QScriptEngineAgent::scriptUnload +24 QScriptEngineAgent::contextPush +28 QScriptEngineAgent::contextPop +32 QScriptEngineAgent::functionEntry +36 QScriptEngineAgent::functionExit +40 QScriptEngineAgent::positionChange +44 QScriptEngineAgent::exceptionThrow +48 QScriptEngineAgent::exceptionCatch +52 QScriptEngineAgent::supportsExtension +56 QScriptEngineAgent::extension + +Class QScriptEngineAgent + size=8 align=4 + base size=8 base align=4 +QScriptEngineAgent (0xb4ec21a4) 0 + vptr=((& QScriptEngineAgent::_ZTV18QScriptEngineAgent) + 8u) + +Vtable for QScriptExtensionInterface +QScriptExtensionInterface::_ZTV25QScriptExtensionInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QScriptExtensionInterface) +8 QScriptExtensionInterface::~QScriptExtensionInterface +12 QScriptExtensionInterface::~QScriptExtensionInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QScriptExtensionInterface + size=4 align=4 + base size=4 base align=4 +QScriptExtensionInterface (0xb4eb5600) 0 nearly-empty + vptr=((& QScriptExtensionInterface::_ZTV25QScriptExtensionInterface) + 8u) + QFactoryInterface (0xb4ec2834) 0 nearly-empty + primary-for QScriptExtensionInterface (0xb4eb5600) + +Vtable for QScriptExtensionPlugin +QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QScriptExtensionPlugin) +8 QScriptExtensionPlugin::metaObject +12 QScriptExtensionPlugin::qt_metacast +16 QScriptExtensionPlugin::qt_metacall +20 QScriptExtensionPlugin::~QScriptExtensionPlugin +24 QScriptExtensionPlugin::~QScriptExtensionPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI22QScriptExtensionPlugin) +72 QScriptExtensionPlugin::_ZThn8_N22QScriptExtensionPluginD1Ev +76 QScriptExtensionPlugin::_ZThn8_N22QScriptExtensionPluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QScriptExtensionPlugin + size=12 align=4 + base size=12 base align=4 +QScriptExtensionPlugin (0xb4ed27d0) 0 + vptr=((& QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin) + 8u) + QObject (0xb4ec2b7c) 0 + primary-for QScriptExtensionPlugin (0xb4ed27d0) + QScriptExtensionInterface (0xb4eb5780) 8 nearly-empty + vptr=((& QScriptExtensionPlugin::_ZTV22QScriptExtensionPlugin) + 72u) + QFactoryInterface (0xb4ec2bb8) 8 nearly-empty + primary-for QScriptExtensionInterface (0xb4eb5780) + +Class QScriptValueIterator + size=4 align=4 + base size=4 base align=4 +QScriptValueIterator (0xb4edd30c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4f21dd4) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4d4d384) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4df3ec4) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb4df3f3c) 0 + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb4e373fc) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4e37528) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4e37780) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4e377f8) 0 + diff --git a/tests/auto/bic/data/QtSql.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtSql.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..fe662bf --- /dev/null +++ b/tests/auto/bic/data/QtSql.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,4900 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb78223fc) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb7822438) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7c81b40) 0 empty + QUintForSize<4> (0xb78224b0) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb78225dc) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb7822618) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7c81d00) 0 empty + QIntForSize<4> (0xb7822690) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb7822a14) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb783603c) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb78369d8) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb7836a8c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7836c6c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7836d5c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7836e4c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7836f3c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b03c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b12c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b21c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b30c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b3fc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b4ec) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b5dc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b6cc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b7bc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b8ac) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb784b99c) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb784ba8c) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb7868528) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb786899c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7894654) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb6a9b12c) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6ac4240) 0 + QBasicAtomicInt (0xb6ac70f0) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6ad603c) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6b0b21c) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6ad6618) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb6b3921c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6b8430c) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b845a0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b84ec4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69cf7f8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69db12c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69dba50) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69ee384) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69eeca8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a015dc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a01f00) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a16834) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a24168) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a24a8c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a3c3c0) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb6a3cce4) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb6a88000) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb688e528) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb6a3ce4c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb689e078) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb6902168) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb6950a14) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb67beb00) 0 + QString (0xb68054b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb68057bc) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb6815654) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb686a3c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb6874100) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb686a6cc) 0 nearly-empty + primary-for std::bad_exception (0xb6874100) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb6874240) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb686a99c) 0 nearly-empty + primary-for std::bad_alloc (0xb6874240) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb686ac6c) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb686aec4) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb686ae88) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb672212c) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb6716f00) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb6716474) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6735780) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6735708) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb674fa14) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb674ff78) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb6759564) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb6763000) 0 + QGenericArgument (0xb675999c) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb6759e88) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb6759ca8) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb677e000) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6770f78) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb6770ec4) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb677e12c) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb65b1690) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb65b4e80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb65cb000) 0 + primary-for QIODevice (0xb65b4e80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb65e72d0) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb66021a4) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb662521c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6648a14) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb6648b04) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6656078) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6656000) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb6626f80) 0 + QList (0xb66560b4) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb6671e10) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb668903c) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb64990b4) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb666bf40) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb6499690) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb666bf40) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb649ea00) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb64999d8) 0 + primary-for QTextCodecPlugin (0xb649ea00) + QTextCodecFactoryInterface (0xb64a30c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb6499a14) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb64a30c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb64af258) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb64afe4c) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb64afb40) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb64a3980) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb64c103c) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb64a3980) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb64a3a40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb64a3a80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb64a3a40) + std::exception (0xb64c11e0) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb64a3a80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb64c1384) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb64c1564) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb64c15dc) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb64c15a0) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb6561e88) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb6561e4c) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb6386780) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6386834) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb64167bc) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb64168ac) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6416834) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb6416924) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb641699c) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb64169d8) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb6416a14) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6416a8c) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb6416ac8) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6466258) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb6466ec4) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb6424e00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb6477f3c) 0 + primary-for QTextIStream (0xb6424e00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb628c0c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb62859d8) 0 + primary-for QTextOStream (0xb628c0c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb6295438) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb62954b0) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb62953c0) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6295528) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62955a0) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6295618) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb6295690) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb62956cc) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb6295708) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb6295780) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb62957f8) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb6295834) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb6295960) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb62958e8) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb62958ac) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb62959d8) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb6295ac8) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb6295a50) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb6295b40) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb6295c30) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb6295bb8) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6295ce4) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb6295d5c) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb6295dd4) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb6295e10) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb6295e4c) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb6295e88) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb6351dd4) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb6351d98) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb61b4b7c) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb61cd7bc) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb61cd744) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb61cdb04) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb61cd654) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb61cdc30) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb61f62d0) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb61f6348) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb6212780) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb61f6e88) 0 + primary-for QFutureInterface (0xb6212780) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb6247618) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb626b6c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb6269ca8) 0 + primary-for QFutureWatcherBase (0xb626b6c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb626bdc0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb626be00) 0 + primary-for QFutureWatcher (0xb626bdc0) + QObject (0xb62817bc) 0 + primary-for QFutureWatcherBase (0xb626be00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb60976cc) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb608e8c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb6097834) 0 + primary-for QThread (0xb608e8c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb608ec00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb60a7e10) 0 + primary-for QThreadPool (0xb608ec00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb60ba7f8) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb60baac8) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb60c72c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb60c97bc) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb60c72c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb60c9fb4) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb60c7c40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb60df000) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb60c7e00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb60c7e40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb60df4b0) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb60c7e40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb60dfac8) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb60dfb04) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb60e9140) 0 empty + std::input_iterator_tag (0xb60dfb40) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb60e91c0) 0 empty + std::forward_iterator_tag (0xb60e9200) 0 empty + std::input_iterator_tag (0xb60dfb7c) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb60e9280) 0 empty + std::bidirectional_iterator_tag (0xb60e92c0) 0 empty + std::forward_iterator_tag (0xb60e9300) 0 empty + std::input_iterator_tag (0xb60dfbb8) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb60dfec4) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb60dff00) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb60dff78) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb60fd12c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd21c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd294) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd30c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd384) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd3fc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd474) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd4ec) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd564) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd5dc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd654) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd6cc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd744) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fd7bc) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb60fd8ac) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb60fd924) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb60fd99c) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb60fdd20) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb60fdd98) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb60fde88) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb60fdf00) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb60fdf78) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb61101a4) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb61101e0) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb611021c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6110258) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6110294) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb61102d0) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6110348) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6110384) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb61103c0) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb61103fc) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6110438) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6110474) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb6110e4c) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb6178438) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb6178870) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb6178a8c) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb6178e88) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb5fc1000) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb5fc1168) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5fc1870) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5fec294) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb5feebb8) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb5feee10) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb5feee4c) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb5feeec4) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb5feef00) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb5feef78) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb60181a4) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb601830c) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb6018294) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb6018348) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb6018384) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb60738ac) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb6073b7c) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5e747c0) 0 empty + __gnu_cxx::new_allocator (0xb6073bb8) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb6073bf4) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5e74880) 0 empty + __gnu_cxx::new_allocator (0xb6073c30) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb6073e4c) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5f16744) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5f16780) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5f19b40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5f167bc) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5d94438) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5db2100) 0 + std::allocator (0xb5db2140) 0 empty + __gnu_cxx::new_allocator (0xb5d944b0) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5d943c0) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5d944ec) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5db22c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5d94528) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5d945dc) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5db24c0) 0 + std::allocator (0xb5db2500) 0 empty + __gnu_cxx::new_allocator (0xb5d94654) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5d94564) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5d94690) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5d94744) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5db2680) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5d946cc) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5d94780) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5e47bf4) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5e525a0) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5e528e8) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5e60640) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5e64294) 0 + primary-for std::collate (0xb5e60640) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5e60740) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5e64384) 0 + primary-for std::collate (0xb5e60740) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5e647f8) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5e64834) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5c816c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5e64870) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5c81800) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5c81840) 0 + primary-for std::collate_byname (0xb5c81800) + std::locale::facet (0xb5e648e8) 0 + primary-for std::collate (0xb5c81840) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5c818c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5c81900) 0 + primary-for std::collate_byname (0xb5c818c0) + std::locale::facet (0xb5e649d8) 0 + primary-for std::collate (0xb5c81900) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5c81f40) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5c967bc) 0 nearly-empty + primary-for std::ios_base::failure (0xb5c81f40) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5ca5a50) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5ca8000) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5ca83fc) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5c96780) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5cc9e10) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5cc9ec4) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5cc9f3c) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5d52050) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5d4c294) 0 + primary-for std::ctype (0xb5d52050) + std::ctype_base (0xb5d4c2d0) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5d5a910) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5d6ae4c) 0 + primary-for std::__ctype_abstract_base (0xb5d5a910) + std::ctype_base (0xb5d6ae88) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5d5f800) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5b76780) 0 + primary-for std::ctype (0xb5d5f800) + std::locale::facet (0xb5d6af78) 0 + primary-for std::__ctype_abstract_base (0xb5b76780) + std::ctype_base (0xb5d6afb4) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5d5f9c0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5b7df00) 0 + primary-for std::ctype_byname (0xb5d5f9c0) + std::locale::facet (0xb5b7e2d0) 0 + primary-for std::ctype (0xb5b7df00) + std::ctype_base (0xb5b7e30c) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5d5fa40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5d5fa80) 0 + primary-for std::ctype_byname (0xb5d5fa40) + std::__ctype_abstract_base (0xb5b82550) 0 + primary-for std::ctype (0xb5d5fa80) + std::locale::facet (0xb5b7e474) 0 + primary-for std::__ctype_abstract_base (0xb5b82550) + std::ctype_base (0xb5b7e4b0) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5b7eec4) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5b90480) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5b8d690) 0 + primary-for std::numpunct (0xb5b90480) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5b90540) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5b8d780) 0 + primary-for std::numpunct (0xb5b90540) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5bc5dd4) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5c13a80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5c13ac0) 0 + primary-for std::numpunct_byname (0xb5c13a80) + std::locale::facet (0xb5c183fc) 0 + primary-for std::numpunct (0xb5c13ac0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5c13b00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5c184ec) 0 + primary-for std::num_get > > (0xb5c13b00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5c13b80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5c185dc) 0 + primary-for std::num_put > > (0xb5c13b80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5c13c00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5c13c40) 0 + primary-for std::numpunct_byname (0xb5c13c00) + std::locale::facet (0xb5c186cc) 0 + primary-for std::numpunct (0xb5c13c40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5c13cc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5c187bc) 0 + primary-for std::num_get > > (0xb5c13cc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5c13d40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5c188ac) 0 + primary-for std::num_put > > (0xb5c13d40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5c68d80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5c18780) 0 + primary-for std::basic_ios > (0xb5c68d80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5c68dc0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5a7d03c) 0 + primary-for std::basic_ios > (0xb5c68dc0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5ab0a40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5ab0a80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb5a7dd20) 4 + primary-for std::basic_ios > (0xb5ab0a80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5a7df00) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5ab0bc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5ab0c00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5a7df3c) 4 + primary-for std::basic_ios > (0xb5ab0c00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5ad7000) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5af2480) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5af24c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5ad7564) 8 + primary-for std::basic_ios > (0xb5af24c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5af2580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5af25c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5ad78e8) 8 + primary-for std::basic_ios > (0xb5af25c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5ad7654) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5ad799c) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5b1e480) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5ad7fb4) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5b235a0) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb5b5a380 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb5b5a400 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5b62be0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb5b5a380) 0 + primary-for std::basic_iostream > (0xb5b62be0) + subvttidx=4u + std::basic_ios > (0xb5b5a3c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5b235dc) 12 + primary-for std::basic_ios > (0xb5b5a3c0) + std::basic_ostream > (0xb5b5a400) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb5b5a3c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5b23870) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb5b5a700 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb5b5a780 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5b70c80) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb5b5a700) 0 + primary-for std::basic_iostream > (0xb5b70c80) + subvttidx=4u + std::basic_ios > (0xb5b5a740) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb5b238ac) 12 + primary-for std::basic_ios > (0xb5b5a740) + std::basic_ostream > (0xb5b5a780) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb5b5a740) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb598503c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb5b23960) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb5b23690) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb5b23000) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb59853fc) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5985c6c) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb58a10f0) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb58a5410) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb5894a00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb58a5410) + QFutureInterfaceBase (0xb58a12d0) 0 + primary-for QFutureInterface (0xb5894a00) + QRunnable (0xb58a130c) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb5894a80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb58a5820) 0 + primary-for QtConcurrent::RunFunctionTask (0xb5894a80) + QFutureInterface (0xb5894ac0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb58a5820) + QFutureInterfaceBase (0xb58a14b0) 0 + primary-for QFutureInterface (0xb5894ac0) + QRunnable (0xb58a14ec) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb5805744) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb57f7e00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb57f7e40) 0 + primary-for QFile (0xb57f7e00) + QObject (0xb5805834) 0 + primary-for QIODevice (0xb57f7e40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb58341a4) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb5834d5c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb58563fc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5856708) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb5866474) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb58663fc) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb5866564) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5687ac8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5687bb8) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb56c8744) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb56c8780) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb56b2240) 0 + QAbstractFileEngine::ExtensionOption (0xb56c87bc) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb56b22c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb56c88ac) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb56b2340) 0 + QAbstractFileEngine::ExtensionOption (0xb56c88e8) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb56b8e88) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56c8f78) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb56dadd4) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb56daf78) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb56b2580) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb56b25c0) 0 + primary-for QBuffer (0xb56b2580) + QObject (0xb56e6474) 0 + primary-for QIODevice (0xb56b25c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb56f712c) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56f7924) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb56b2a00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb5705708) 0 + primary-for QFileSystemWatcher (0xb56b2a00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb56b2cc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb571b0b4) 0 + primary-for QFSFileEngine (0xb56b2cc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb56b2dc0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb56b2e00) 0 + primary-for QProcess (0xb56b2dc0) + QObject (0xb571ba8c) 0 + primary-for QIODevice (0xb56b2e00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb573d4b0) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb575e8e8) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb575e960) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb573d6cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5764168) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57642d0) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb55726cc) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb5572bb8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5597000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55971e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55973c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55975a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5597780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5597960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5597b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5597d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5597f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a10f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a12d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a14b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a1690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a1870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a1a50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a1c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a1e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a6000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a61e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a63c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a65a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a6780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a6960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a6b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a6d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a6f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae0f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae2d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae4b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55aea50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55aec30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55aee10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b91e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b93c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b95a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b9f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bd0f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bd2d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bd4b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bd690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bd870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bda50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bdc30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bde10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c6000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c61e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c63c0) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb55dd258) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb55dd438) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb55dd30c) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb55ddb04) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb55c65a0) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb560203c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb55f6fb4) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb560212c) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb56020b4) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb56354b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5635ac8) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5635ca8) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5635e88) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb56432c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb5649078) 0 + primary-for QSettings (0xb56432c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb5643ec0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb5643f00) 0 + primary-for QTemporaryFile (0xb5643ec0) + QIODevice (0xb5643f40) 0 + primary-for QFile (0xb5643f00) + QObject (0xb5477dd4) 0 + primary-for QIODevice (0xb5643f40) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb5486f3c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5490e4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54b98e8) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb548bac0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb54c7744) 0 + primary-for QEventLoop (0xb548bac0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb54c7d5c) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb548be40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb54e912c) 0 + primary-for QAbstractEventDispatcher (0xb548be40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb54e9870) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55103c0) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb55104b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5510bf4) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb54f9a00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb5510ce4) 0 + primary-for QAbstractItemModel (0xb54f9a00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb54f9ec0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb54f9f00) 0 + primary-for QAbstractTableModel (0xb54f9ec0) + QObject (0xb553b870) 0 + primary-for QAbstractItemModel (0xb54f9f00) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb554a140) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb554a180) 0 + primary-for QAbstractListModel (0xb554a140) + QObject (0xb554d2d0) 0 + primary-for QAbstractItemModel (0xb554a180) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb555ed5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53674ec) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb53675dc) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb554ab80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb53782d0) 0 + primary-for QTimerEvent (0xb554ab80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb554ac40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb5378528) 0 + primary-for QChildEvent (0xb554ac40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb554ae00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb5378d98) 0 + primary-for QCustomEvent (0xb554ae00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb554af00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb53870f0) 0 + primary-for QDynamicPropertyChangeEvent (0xb554af00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb554afc0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb5387348) 0 + primary-for QCoreApplication (0xb554afc0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb539ed98) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb53d012c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53d05dc) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb53d06cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53d0b04) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb53d0bf4) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb53d0f00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53e6258) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb53e4240) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb53e6348) 0 + primary-for QMimeData (0xb53e4240) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb53e4500) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb53e6ec4) 0 + primary-for QObjectCleanupHandler (0xb53e4500) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb53e4740) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb53f7744) 0 + primary-for QSharedMemory (0xb53e4740) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb53e4a00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb540a528) 0 + primary-for QSignalMapper (0xb53e4a00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb53e4cc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb5416690) 0 + primary-for QSocketNotifier (0xb53e4cc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb5423708) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb5426040) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb5423c30) 0 + primary-for QTimer (0xb5426040) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb54264c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb542ed98) 0 + primary-for QTranslator (0xb54264c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb54267c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb5441bb8) 0 + primary-for QLibrary (0xb54267c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5450b04) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb5426b40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb5461690) 0 + primary-for QPluginLoader (0xb5426b40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb5273258) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb52870b4) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb5287744) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb5287438) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb5294c30) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb5294924) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb529ce10) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb52a30f0) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb52a34ec) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb52dc21c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52dcf00) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb52e81a4) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb52e8b7c) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb52e8f00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb531b8ac) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb531b99c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5322f78) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb532e000) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5335708) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb53358e8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb534d744) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb535b8e8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5149834) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb515c8ac) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb515cc6c) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb517cdd4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb518a7f8) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb51b2438) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb5216744) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5228834) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb50453c0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb504e438) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb506d21c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50890f0) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb50c3ce4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50e71e0) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb51208ac) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb5133ac8) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb4f437c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb4f4f474) 0 + primary-for QTimeLine (0xb4f437c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb4f61834) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb4f859d8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f8ef78) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4f9d0b4) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4f9d03c) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb4f90240) 0 + QVector (0xb4f9d0f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb4f9d12c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f9db40) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb4f9dc6c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fbe834) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb4fbe960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fd08e8) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb4fd0a14) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb4fd0bb8) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb50021a4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5002780) 0 + +Class QSqlRecord + size=4 align=4 + base size=4 base align=4 +QSqlRecord (0xb501a0b4) 0 + +Vtable for QSqlDriverCreatorBase +QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QSqlDriverCreatorBase) +8 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +12 QSqlDriverCreatorBase::~QSqlDriverCreatorBase +16 __cxa_pure_virtual + +Class QSqlDriverCreatorBase + size=4 align=4 + base size=4 base align=4 +QSqlDriverCreatorBase (0xb501a6cc) 0 nearly-empty + vptr=((& QSqlDriverCreatorBase::_ZTV21QSqlDriverCreatorBase) + 8u) + +Class QSqlDatabase + size=4 align=4 + base size=4 base align=4 +QSqlDatabase (0xb501aa8c) 0 + +Class QSqlQuery + size=4 align=4 + base size=4 base align=4 +QSqlQuery (0xb50324b0) 0 + +Vtable for QSqlDriver +QSqlDriver::_ZTV10QSqlDriver: 32u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QSqlDriver) +8 QSqlDriver::metaObject +12 QSqlDriver::qt_metacast +16 QSqlDriver::qt_metacall +20 QSqlDriver::~QSqlDriver +24 QSqlDriver::~QSqlDriver +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QSqlDriver::isOpen +60 QSqlDriver::beginTransaction +64 QSqlDriver::commitTransaction +68 QSqlDriver::rollbackTransaction +72 QSqlDriver::tables +76 QSqlDriver::primaryIndex +80 QSqlDriver::record +84 QSqlDriver::formatValue +88 QSqlDriver::escapeIdentifier +92 QSqlDriver::sqlStatement +96 QSqlDriver::handle +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 QSqlDriver::setOpen +120 QSqlDriver::setOpenError +124 QSqlDriver::setLastError + +Class QSqlDriver + size=8 align=4 + base size=8 base align=4 +QSqlDriver (0xb5029300) 0 + vptr=((& QSqlDriver::_ZTV10QSqlDriver) + 8u) + QObject (0xb5032a14) 0 + primary-for QSqlDriver (0xb5029300) + +Vtable for QSqlDriverFactoryInterface +QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QSqlDriverFactoryInterface) +8 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +12 QSqlDriverFactoryInterface::~QSqlDriverFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QSqlDriverFactoryInterface + size=4 align=4 + base size=4 base align=4 +QSqlDriverFactoryInterface (0xb5029700) 0 nearly-empty + vptr=((& QSqlDriverFactoryInterface::_ZTV26QSqlDriverFactoryInterface) + 8u) + QFactoryInterface (0xb4e4ba14) 0 nearly-empty + primary-for QSqlDriverFactoryInterface (0xb5029700) + +Vtable for QSqlDriverPlugin +QSqlDriverPlugin::_ZTV16QSqlDriverPlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +8 QSqlDriverPlugin::metaObject +12 QSqlDriverPlugin::qt_metacast +16 QSqlDriverPlugin::qt_metacall +20 QSqlDriverPlugin::~QSqlDriverPlugin +24 QSqlDriverPlugin::~QSqlDriverPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI16QSqlDriverPlugin) +72 QSqlDriverPlugin::_ZThn8_N16QSqlDriverPluginD1Ev +76 QSqlDriverPlugin::_ZThn8_N16QSqlDriverPluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QSqlDriverPlugin + size=12 align=4 + base size=12 base align=4 +QSqlDriverPlugin (0xb4e52910) 0 + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 8u) + QObject (0xb4e4bd5c) 0 + primary-for QSqlDriverPlugin (0xb4e52910) + QSqlDriverFactoryInterface (0xb5029880) 8 nearly-empty + vptr=((& QSqlDriverPlugin::_ZTV16QSqlDriverPlugin) + 72u) + QFactoryInterface (0xb4e4bd98) 8 nearly-empty + primary-for QSqlDriverFactoryInterface (0xb5029880) + +Class QSqlError + size=16 align=4 + base size=16 base align=4 +QSqlError (0xb4e5f528) 0 + +Class QSqlField + size=16 align=4 + base size=16 base align=4 +QSqlField (0xb4e5fd20) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4e68d20) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4e68ca8) 0 + +Class QSqlIndex + size=16 align=4 + base size=16 base align=4 +QSqlIndex (0xb5029c40) 0 + QSqlRecord (0xb4e68960) 0 + +Vtable for QSqlResult +QSqlResult::_ZTV10QSqlResult: 29u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QSqlResult) +8 QSqlResult::~QSqlResult +12 QSqlResult::~QSqlResult +16 QSqlResult::handle +20 QSqlResult::setAt +24 QSqlResult::setActive +28 QSqlResult::setLastError +32 QSqlResult::setQuery +36 QSqlResult::setSelect +40 QSqlResult::setForwardOnly +44 QSqlResult::exec +48 QSqlResult::prepare +52 QSqlResult::savePrepare +56 QSqlResult::bindValue +60 QSqlResult::bindValue +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 QSqlResult::fetchNext +84 QSqlResult::fetchPrevious +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 QSqlResult::record +108 QSqlResult::lastInsertId +112 QSqlResult::virtual_hook + +Class QSqlResult + size=8 align=4 + base size=8 base align=4 +QSqlResult (0xb4e8c03c) 0 + vptr=((& QSqlResult::_ZTV10QSqlResult) + 8u) + +Vtable for QSqlQueryModel +QSqlQueryModel::_ZTV14QSqlQueryModel: 44u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QSqlQueryModel) +8 QSqlQueryModel::metaObject +12 QSqlQueryModel::qt_metacast +16 QSqlQueryModel::qt_metacall +20 QSqlQueryModel::~QSqlQueryModel +24 QSqlQueryModel::~QSqlQueryModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 QSqlQueryModel::rowCount +68 QSqlQueryModel::columnCount +72 QAbstractTableModel::hasChildren +76 QSqlQueryModel::data +80 QAbstractItemModel::setData +84 QSqlQueryModel::headerData +88 QSqlQueryModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QSqlQueryModel::insertColumns +124 QAbstractItemModel::removeRows +128 QSqlQueryModel::removeColumns +132 QSqlQueryModel::fetchMore +136 QSqlQueryModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert +168 QSqlQueryModel::clear +172 QSqlQueryModel::queryChange + +Class QSqlQueryModel + size=8 align=4 + base size=8 base align=4 +QSqlQueryModel (0xb5029e00) 0 + vptr=((& QSqlQueryModel::_ZTV14QSqlQueryModel) + 8u) + QAbstractTableModel (0xb5029e40) 0 + primary-for QSqlQueryModel (0xb5029e00) + QAbstractItemModel (0xb5029e80) 0 + primary-for QAbstractTableModel (0xb5029e40) + QObject (0xb4e8c5dc) 0 + primary-for QAbstractItemModel (0xb5029e80) + +Vtable for QSqlTableModel +QSqlTableModel::_ZTV14QSqlTableModel: 55u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QSqlTableModel) +8 QSqlTableModel::metaObject +12 QSqlTableModel::qt_metacast +16 QSqlTableModel::qt_metacall +20 QSqlTableModel::~QSqlTableModel +24 QSqlTableModel::~QSqlTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 QSqlTableModel::rowCount +68 QSqlQueryModel::columnCount +72 QAbstractTableModel::hasChildren +76 QSqlTableModel::data +80 QSqlTableModel::setData +84 QSqlTableModel::headerData +88 QSqlQueryModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QSqlTableModel::insertRows +120 QSqlQueryModel::insertColumns +124 QSqlTableModel::removeRows +128 QSqlTableModel::removeColumns +132 QSqlQueryModel::fetchMore +136 QSqlQueryModel::canFetchMore +140 QSqlTableModel::flags +144 QSqlTableModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QSqlTableModel::submit +164 QSqlTableModel::revert +168 QSqlTableModel::clear +172 QSqlQueryModel::queryChange +176 QSqlTableModel::select +180 QSqlTableModel::setTable +184 QSqlTableModel::setEditStrategy +188 QSqlTableModel::setSort +192 QSqlTableModel::setFilter +196 QSqlTableModel::revertRow +200 QSqlTableModel::updateRowInTable +204 QSqlTableModel::insertRowIntoTable +208 QSqlTableModel::deleteRowFromTable +212 QSqlTableModel::orderByClause +216 QSqlTableModel::selectStatement + +Class QSqlTableModel + size=8 align=4 + base size=8 base align=4 +QSqlTableModel (0xb4ea2180) 0 + vptr=((& QSqlTableModel::_ZTV14QSqlTableModel) + 8u) + QSqlQueryModel (0xb4ea21c0) 0 + primary-for QSqlTableModel (0xb4ea2180) + QAbstractTableModel (0xb4ea2200) 0 + primary-for QSqlQueryModel (0xb4ea21c0) + QAbstractItemModel (0xb4ea2240) 0 + primary-for QAbstractTableModel (0xb4ea2200) + QObject (0xb4ea80f0) 0 + primary-for QAbstractItemModel (0xb4ea2240) + +Class QSqlRelation + size=12 align=4 + base size=12 base align=4 +QSqlRelation (0xb4ea8d20) 0 + +Vtable for QSqlRelationalTableModel +QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel: 57u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QSqlRelationalTableModel) +8 QSqlRelationalTableModel::metaObject +12 QSqlRelationalTableModel::qt_metacast +16 QSqlRelationalTableModel::qt_metacall +20 QSqlRelationalTableModel::~QSqlRelationalTableModel +24 QSqlRelationalTableModel::~QSqlRelationalTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 QSqlTableModel::rowCount +68 QSqlQueryModel::columnCount +72 QAbstractTableModel::hasChildren +76 QSqlRelationalTableModel::data +80 QSqlRelationalTableModel::setData +84 QSqlTableModel::headerData +88 QSqlQueryModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QSqlTableModel::insertRows +120 QSqlQueryModel::insertColumns +124 QSqlTableModel::removeRows +128 QSqlRelationalTableModel::removeColumns +132 QSqlQueryModel::fetchMore +136 QSqlQueryModel::canFetchMore +140 QSqlTableModel::flags +144 QSqlTableModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QSqlTableModel::submit +164 QSqlTableModel::revert +168 QSqlRelationalTableModel::clear +172 QSqlQueryModel::queryChange +176 QSqlRelationalTableModel::select +180 QSqlRelationalTableModel::setTable +184 QSqlTableModel::setEditStrategy +188 QSqlTableModel::setSort +192 QSqlTableModel::setFilter +196 QSqlRelationalTableModel::revertRow +200 QSqlRelationalTableModel::updateRowInTable +204 QSqlRelationalTableModel::insertRowIntoTable +208 QSqlTableModel::deleteRowFromTable +212 QSqlRelationalTableModel::orderByClause +216 QSqlRelationalTableModel::selectStatement +220 QSqlRelationalTableModel::setRelation +224 QSqlRelationalTableModel::relationModel + +Class QSqlRelationalTableModel + size=8 align=4 + base size=8 base align=4 +QSqlRelationalTableModel (0xb4ea27c0) 0 + vptr=((& QSqlRelationalTableModel::_ZTV24QSqlRelationalTableModel) + 8u) + QSqlTableModel (0xb4ea2800) 0 + primary-for QSqlRelationalTableModel (0xb4ea27c0) + QSqlQueryModel (0xb4ea2840) 0 + primary-for QSqlTableModel (0xb4ea2800) + QAbstractTableModel (0xb4ea2880) 0 + primary-for QSqlQueryModel (0xb4ea2840) + QAbstractItemModel (0xb4ea28c0) 0 + primary-for QAbstractTableModel (0xb4ea2880) + QObject (0xb4ec7708) 0 + primary-for QAbstractItemModel (0xb4ea28c0) + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4f205dc) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4f34b7c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4de9294) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb4de930c) 0 + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb4e0b12c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4e0b258) 0 + diff --git a/tests/auto/bic/data/QtSvg.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtSvg.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..e2ee205 --- /dev/null +++ b/tests/auto/bic/data/QtSvg.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,18588 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb7858c30) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb7858c6c) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7c47c40) 0 empty + QUintForSize<4> (0xb7858ce4) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb7858e10) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb7858e4c) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7c47e00) 0 empty + QIntForSize<4> (0xb7858ec4) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb785f258) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb785f870) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb6a2421c) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb6a242d0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a244b0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a245a0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a24690) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a24780) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a24870) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a24960) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a24a50) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a24b40) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a24c30) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a24d20) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a24e10) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a24f00) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a3f000) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a3f0f0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a3f1e0) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb6a3f2d0) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb6a3fd5c) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb6a5b1e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6a77e88) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb6a8b960) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6ab9340) 0 + QBasicAtomicInt (0xb6ab0924) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6ac3870) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6affa50) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6ac3e4c) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb692ba50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb696fb40) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb696fdd4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69bc708) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69c803c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69c8960) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69da294) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69dabb8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69ed4ec) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69ede10) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a01744) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a0f078) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a0f99c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68262d0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6826bf4) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb683c528) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb687a834) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb6881d5c) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb683c690) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb688a924) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb68ee99c) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb674b258) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb67abc00) 0 + QString (0xb67e7ce4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6803000) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb6803e88) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb6648bf4) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb6668200) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb6648f00) 0 nearly-empty + primary-for std::bad_exception (0xb6668200) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb6668340) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb66701a4) 0 nearly-empty + primary-for std::bad_alloc (0xb6668340) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb6670474) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb66706cc) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb6670690) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6515960) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb6515744) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb66e3ca8) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb65240b4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6524f78) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb654a258) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb654a7bc) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb654ad98) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb6558100) 0 + QGenericArgument (0xb65591e0) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb65596cc) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb65594ec) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6569834) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb65697bc) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb6569708) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb6569960) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb65a2ec4) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb65a6f80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb65ae834) 0 + primary-for QIODevice (0xb65a6f80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb65ceb40) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb65ef9d8) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb660da50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6442258) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb6442348) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb64428ac) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6442834) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb644c080) 0 + QList (0xb64428e8) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb6471654) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb6471870) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb64928e8) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb649f040) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb6492ec4) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb649f040) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb649ae60) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb64a41a4) 0 + primary-for QTextCodecPlugin (0xb649ae60) + QTextCodecFactoryInterface (0xb649f1c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb64a41e0) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb649f1c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb64a4b04) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb64b3690) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb64b3384) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb649fa80) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb64bf870) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb649fa80) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb649fb40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb649fb80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb649fb40) + std::exception (0xb64bfa14) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb649fb80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb64bfbb8) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb64bfd98) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb64bfe10) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb64bfdd4) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb636c6cc) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb636c690) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb637bfb4) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb637f078) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb621d000) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb621d0f0) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb621d078) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb621d168) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb621d1e0) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb621d21c) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb621d258) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb621d2d0) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb621d30c) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6254a8c) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb6263708) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb6217f00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb626e780) 0 + primary-for QTextIStream (0xb6217f00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb627e1c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb62821e0) 0 + primary-for QTextOStream (0xb627e1c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb6282ca8) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb6282d20) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb6282c30) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6282d98) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6282e10) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6282e88) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb6282f00) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb6282f3c) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb6282f78) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb62825a0) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb629c03c) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb629c078) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb629c1a4) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb629c12c) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb629c0f0) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb629c21c) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb629c30c) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb629c294) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb629c384) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb629c474) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb629c3fc) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb629c528) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb629c5a0) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb629c618) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb629c654) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb629c690) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb629c6cc) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb615b618) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb615b5dc) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb61b03c0) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb61c8000) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb61b0fb4) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb61c8348) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb61b0ec4) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb61c8474) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb61c8b7c) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb61c8bf4) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb6009880) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb62046cc) 0 + primary-for QFutureInterface (0xb6009880) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb6032e4c) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb60607c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb60644ec) 0 + primary-for QFutureWatcherBase (0xb60607c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb6060ec0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb6060f00) 0 + primary-for QFutureWatcher (0xb6060ec0) + QObject (0xb607d000) 0 + primary-for QFutureWatcherBase (0xb6060f00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb607df3c) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb60839c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb6092834) 0 + primary-for QThread (0xb60839c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb6083d00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb60a6618) 0 + primary-for QThreadPool (0xb6083d00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb60b5000) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb60b52d0) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb60b73c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb60c3000) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb60b73c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb60c37f8) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb60b7d40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb60c3870) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb60b7f00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb60b7f40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb60c3d20) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb60b7f40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb60dc294) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb60dc2d0) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb60db240) 0 empty + std::input_iterator_tag (0xb60dc30c) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb60db2c0) 0 empty + std::forward_iterator_tag (0xb60db300) 0 empty + std::input_iterator_tag (0xb60dc348) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb60db380) 0 empty + std::bidirectional_iterator_tag (0xb60db3c0) 0 empty + std::forward_iterator_tag (0xb60db400) 0 empty + std::input_iterator_tag (0xb60dc384) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb60dc690) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb60dc6cc) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb60dc744) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb60dc960) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dca50) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dcac8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dcb40) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dcbb8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dcc30) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dcca8) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dcd20) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dcd98) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dce10) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dce88) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dcf00) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60dcf78) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb60fb000) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb60fb0f0) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb60fb168) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb60fb1e0) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb60fb564) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb60fb5dc) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb60fb6cc) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb60fb744) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb60fb7bc) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60fb9d8) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60fba14) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60fba50) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60fba8c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60fbac8) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60fbb04) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60fbb7c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60fbbb8) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60fbbf4) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60fbc30) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60fbc6c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60fbca8) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb5f1c690) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb5f40c6c) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb5f930b4) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb5f932d0) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb5f936cc) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb5f93834) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb5f9399c) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5fd6078) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5fdaac8) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb5fe93fc) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb5fe9654) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb5fe9690) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb5fe9708) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb5fe9744) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb5fe97bc) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb5fe99d8) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb5fe9b40) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb5fe9ac8) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb5fe9b7c) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb5fe9bb8) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb5e7a0f0) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5e7a3c0) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5e788c0) 0 empty + __gnu_cxx::new_allocator (0xb5e7a3fc) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5e7a438) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5e78980) 0 empty + __gnu_cxx::new_allocator (0xb5e7a474) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb5e7a690) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5ed9f78) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5ed9fb4) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5d1fc40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5ed9f3c) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5d6dc6c) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5db8200) 0 + std::allocator (0xb5db8240) 0 empty + __gnu_cxx::new_allocator (0xb5d6dce4) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5d6dbf4) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5d6dd20) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5db83c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5d6dd5c) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5d6de10) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5db85c0) 0 + std::allocator (0xb5db8600) 0 empty + __gnu_cxx::new_allocator (0xb5d6de88) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5d6dd98) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5d6dec4) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5d6df78) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5db8780) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5d6df00) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5d6dfb4) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5c52438) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5c52e10) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5c5f12c) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5c67740) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5c66ac8) 0 + primary-for std::collate (0xb5c67740) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5c67840) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5c66bb8) 0 + primary-for std::collate (0xb5c67840) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5c66b7c) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5c66c6c) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5c8a7c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5c92000) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5c8a900) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5c8a940) 0 + primary-for std::collate_byname (0xb5c8a900) + std::locale::facet (0xb5c92078) 0 + primary-for std::collate (0xb5c8a940) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5c8a9c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5c8aa00) 0 + primary-for std::collate_byname (0xb5c8a9c0) + std::locale::facet (0xb5c92168) 0 + primary-for std::collate (0xb5c8aa00) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5ca9040) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5cab000) 0 nearly-empty + primary-for std::ios_base::failure (0xb5ca9040) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5cad294) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5cad834) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5cadc30) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5c9221c) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5ce9654) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5ce98e8) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5ce9b7c) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5b574b0) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5b31ac8) 0 + primary-for std::ctype (0xb5b574b0) + std::ctype_base (0xb5b31b04) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5b60d70) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5b71690) 0 + primary-for std::__ctype_abstract_base (0xb5b60d70) + std::ctype_base (0xb5b716cc) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5b61900) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5b7abe0) 0 + primary-for std::ctype (0xb5b61900) + std::locale::facet (0xb5b717bc) 0 + primary-for std::__ctype_abstract_base (0xb5b7abe0) + std::ctype_base (0xb5b717f8) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5b61ac0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5b83370) 0 + primary-for std::ctype_byname (0xb5b61ac0) + std::locale::facet (0xb5b81b04) 0 + primary-for std::ctype (0xb5b83370) + std::ctype_base (0xb5b81b40) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5b61b40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5b61b80) 0 + primary-for std::ctype_byname (0xb5b61b40) + std::__ctype_abstract_base (0xb5b83a00) 0 + primary-for std::ctype (0xb5b61b80) + std::locale::facet (0xb5b81ca8) 0 + primary-for std::__ctype_abstract_base (0xb5b83a00) + std::ctype_base (0xb5b81ce4) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5b8b654) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5b95580) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5b8bec4) 0 + primary-for std::numpunct (0xb5b95580) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5b95640) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5b8bfb4) 0 + primary-for std::numpunct (0xb5b95640) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5be8618) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5a1ab80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5a1abc0) 0 + primary-for std::numpunct_byname (0xb5a1ab80) + std::locale::facet (0xb5be8c6c) 0 + primary-for std::numpunct (0xb5a1abc0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5a1ac00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5be8d5c) 0 + primary-for std::num_get > > (0xb5a1ac00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5a1ac80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5be8e4c) 0 + primary-for std::num_put > > (0xb5a1ac80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5a1ad00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5a1ad40) 0 + primary-for std::numpunct_byname (0xb5a1ad00) + std::locale::facet (0xb5be8f3c) 0 + primary-for std::numpunct (0xb5a1ad40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5a1adc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5be85dc) 0 + primary-for std::num_get > > (0xb5a1adc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5a1ae40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5be8f00) 0 + primary-for std::num_put > > (0xb5a1ae40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5a65e80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5a607bc) 0 + primary-for std::basic_ios > (0xb5a65e80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5a65ec0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5a608ac) 0 + primary-for std::basic_ios > (0xb5a65ec0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5ab6b40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5ab6b80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb5aa14ec) 4 + primary-for std::basic_ios > (0xb5ab6b80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5aa16cc) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5ab6cc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5ab6d00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5aa1708) 4 + primary-for std::basic_ios > (0xb5ab6d00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5aa18ac) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5af5580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5af55c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5aa1e10) 8 + primary-for std::basic_ios > (0xb5af55c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5af5680) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5af56c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb59060f0) 8 + primary-for std::basic_ios > (0xb5af56c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb59067f8) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5906834) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5923580) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5906870) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5906e4c) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb595c480 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb595c500 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb596c050) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb595c480) 0 + primary-for std::basic_iostream > (0xb596c050) + subvttidx=4u + std::basic_ios > (0xb595c4c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5906e88) 12 + primary-for std::basic_ios > (0xb595c4c0) + std::basic_ostream > (0xb595c500) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb595c4c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5971000) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb595c800 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb595c880 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb597b0f0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb595c800) 0 + primary-for std::basic_iostream > (0xb597b0f0) + subvttidx=4u + std::basic_ios > (0xb595c840) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb597103c) 12 + primary-for std::basic_ios > (0xb595c840) + std::basic_ostream > (0xb595c880) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb595c840) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb5971924) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb59718ac) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb5971834) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb5971780) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb5971ce4) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb59a94b0) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb5895924) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb58a5870) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb5898b00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb58a5870) + QFutureInterfaceBase (0xb5895b04) 0 + primary-for QFutureInterface (0xb5898b00) + QRunnable (0xb5895b40) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb5898b80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb58a5c80) 0 + primary-for QtConcurrent::RunFunctionTask (0xb5898b80) + QFutureInterface (0xb5898bc0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb58a5c80) + QFutureInterfaceBase (0xb5895ce4) 0 + primary-for QFutureInterface (0xb5898bc0) + QRunnable (0xb5895d20) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb57eff78) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb57f9f00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb57f9f40) 0 + primary-for QFile (0xb57f9f00) + QObject (0xb561b078) 0 + primary-for QIODevice (0xb57f9f40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56339d8) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb56455a0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5653c30) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5653f3c) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb5668ca8) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb5668c30) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb5668d98) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb569330c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56933fc) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb56c1f78) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb56c1fb4) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb56b3340) 0 + QAbstractFileEngine::ExtensionOption (0xb56d4000) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb56b33c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb56d40f0) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb56b3440) 0 + QAbstractFileEngine::ExtensionOption (0xb56d412c) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb56c16cc) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56d47bc) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb56df618) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb56df7bc) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb56b3680) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb56b36c0) 0 + primary-for QBuffer (0xb56b3680) + QObject (0xb56dfce4) 0 + primary-for QIODevice (0xb56b36c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb56f599c) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5504168) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb56b3b00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb5504f78) 0 + primary-for QFileSystemWatcher (0xb56b3b00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb56b3dc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb5516924) 0 + primary-for QFSFileEngine (0xb56b3dc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb56b3ec0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb56b3f00) 0 + primary-for QProcess (0xb56b3ec0) + QObject (0xb552a2d0) 0 + primary-for QIODevice (0xb56b3f00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb5539d20) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb556512c) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb55651a4) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb5539f3c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb556599c) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5565b04) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb556ff00) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb558e3fc) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb558e834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb558ea14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb558ebf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb558edd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb558efb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a71a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a7384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a7564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a7744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a7924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a7b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a7ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55a7ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae0b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ae834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55aea14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55aebf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55aedd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55aefb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b71a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b7384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b7564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b7744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b7924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b7b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b7ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55b7ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bf0b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bf294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bf474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bf654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bf834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bfa14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bfbf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bfdd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55bffb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c61a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c6384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c6564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c6744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c6924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c6b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c6ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55c6ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55cd0b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55cd294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55cd474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55cd654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55cd834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55cda14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55cdbf4) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb55e4a8c) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb55e4c6c) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb55e4b40) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb55ef348) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb55cddd4) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb5400870) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb54007f8) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb5400960) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb54008e8) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb5436ce4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb544230c) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb54424ec) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb54426cc) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb54453c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb54428ac) 0 + primary-for QSettings (0xb54453c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb5445fc0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb548a000) 0 + primary-for QTemporaryFile (0xb5445fc0) + QIODevice (0xb548a040) 0 + primary-for QFile (0xb548a000) + QObject (0xb5482618) 0 + primary-for QIODevice (0xb548a040) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb5493744) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb54a1690) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54cb0f0) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb548abc0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb54cbf78) 0 + primary-for QEventLoop (0xb548abc0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb54da5a0) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb548af40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb54e9960) 0 + primary-for QAbstractEventDispatcher (0xb548af40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb54fb834) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb530dbf4) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb530dce4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5316438) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb52f8b00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb5316528) 0 + primary-for QAbstractItemModel (0xb52f8b00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb52f8fc0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb5345000) 0 + primary-for QAbstractTableModel (0xb52f8fc0) + QObject (0xb53440b4) 0 + primary-for QAbstractItemModel (0xb5345000) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb5345240) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb5345280) 0 + primary-for QAbstractListModel (0xb5345240) + QObject (0xb5344b40) 0 + primary-for QAbstractItemModel (0xb5345280) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb53635a0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5363d20) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb5363e10) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb5345c80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb5372b40) 0 + primary-for QTimerEvent (0xb5345c80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb5345d40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb5372d98) 0 + primary-for QChildEvent (0xb5345d40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb5345f00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb5384564) 0 + primary-for QCustomEvent (0xb5345f00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb538e000) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb5384960) 0 + primary-for QDynamicPropertyChangeEvent (0xb538e000) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb538e0c0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb5384bb8) 0 + primary-for QCoreApplication (0xb538e0c0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb53a75dc) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb53a7960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53a7e10) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb53a7f00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53e0348) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb53e0438) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb53e0744) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53e0a8c) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb53e4340) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb53e0b7c) 0 + primary-for QMimeData (0xb53e4340) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb53e4600) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb53f76cc) 0 + primary-for QObjectCleanupHandler (0xb53e4600) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb53e4840) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb53f7f78) 0 + primary-for QSharedMemory (0xb53e4840) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb53e4b00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb5203d98) 0 + primary-for QSignalMapper (0xb53e4b00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb53e4dc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb5211f00) 0 + primary-for QSocketNotifier (0xb53e4dc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb521ff78) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb5228140) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb522d474) 0 + primary-for QTimer (0xb5228140) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb52285c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb523d5a0) 0 + primary-for QTranslator (0xb52285c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb52288c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb524b3c0) 0 + primary-for QLibrary (0xb52288c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb525b30c) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb5228c40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb525bec4) 0 + primary-for QPluginLoader (0xb5228c40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb526eac8) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb52848e8) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb5284f78) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb5284c6c) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb529a474) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb529a168) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb529e654) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb529e924) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb529ed20) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb52d3a50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52e2744) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb52e29d8) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb50de3c0) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb50de744) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50ff0f0) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb50ff1e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb510c744) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb510c834) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5114f3c) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb51270b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5127690) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb514312c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5143a14) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb51670f0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51674b0) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb5184618) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb519703c) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb51afc6c) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb4ff0f78) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5025960) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb5040bf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb504dd20) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb506ba50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5085924) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb50cb528) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ee4a50) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb4f280b4) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb4f4130c) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb4f438c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb4f41ca8) 0 + primary-for QTimeLine (0xb4f438c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb4f75078) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb4f8b1e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f96780) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4f968e8) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4f96870) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb4f8f340) 0 + QVector (0xb4f96924) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb4f96960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fb9384) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb4fb94b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fc9078) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb4fc91a4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4de012c) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb4de0258) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb4de03fc) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb4dfa9d8) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4e25924) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4e2599c) 0 + +Class QColor:::: + size=10 align=2 + base size=10 base align=2 +QColor:::: (0xb4e25a14) 0 + +Class QColor:: + size=10 align=2 + base size=10 base align=2 +QColor:: (0xb4e258ac) 0 + +Class QColor + size=16 align=4 + base size=14 base align=4 +QColor (0xb4e0f474) 0 + +Class QRegion::QRegionData + size=16 align=4 + base size=16 base align=4 +QRegion::QRegionData (0xb4e4ce4c) 0 + +Class QRegion + size=4 align=4 + base size=4 base align=4 +QRegion (0xb4e387bc) 0 + +Class QKeySequence + size=4 align=4 + base size=4 base align=4 +QKeySequence (0xb4e54780) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4e63a50) 0 empty + +Vtable for QMimeSource +QMimeSource::_ZTV11QMimeSource: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMimeSource) +8 QMimeSource::~QMimeSource +12 QMimeSource::~QMimeSource +16 __cxa_pure_virtual +20 QMimeSource::provides +24 __cxa_pure_virtual + +Class QMimeSource + size=4 align=4 + base size=4 base align=4 +QMimeSource (0xb4e63ce4) 0 nearly-empty + vptr=((& QMimeSource::_ZTV11QMimeSource) + 8u) + +Vtable for QDrag +QDrag::_ZTV5QDrag: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QDrag) +8 QDrag::metaObject +12 QDrag::qt_metacast +16 QDrag::qt_metacall +20 QDrag::~QDrag +24 QDrag::~QDrag +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QDrag + size=8 align=4 + base size=8 base align=4 +QDrag (0xb4e7a100) 0 + vptr=((& QDrag::_ZTV5QDrag) + 8u) + QObject (0xb4e63e4c) 0 + primary-for QDrag (0xb4e7a100) + +Vtable for QInputEvent +QInputEvent::_ZTV11QInputEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QInputEvent) +8 QInputEvent::~QInputEvent +12 QInputEvent::~QInputEvent + +Class QInputEvent + size=16 align=4 + base size=16 base align=4 +QInputEvent (0xb4e7a400) 0 + vptr=((& QInputEvent::_ZTV11QInputEvent) + 8u) + QEvent (0xb4e858e8) 0 + primary-for QInputEvent (0xb4e7a400) + +Vtable for QMouseEvent +QMouseEvent::_ZTV11QMouseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMouseEvent) +8 QMouseEvent::~QMouseEvent +12 QMouseEvent::~QMouseEvent + +Class QMouseEvent + size=40 align=4 + base size=40 base align=4 +QMouseEvent (0xb4e7a4c0) 0 + vptr=((& QMouseEvent::_ZTV11QMouseEvent) + 8u) + QInputEvent (0xb4e7a500) 0 + primary-for QMouseEvent (0xb4e7a4c0) + QEvent (0xb4e85bb8) 0 + primary-for QInputEvent (0xb4e7a500) + +Vtable for QHoverEvent +QHoverEvent::_ZTV11QHoverEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHoverEvent) +8 QHoverEvent::~QHoverEvent +12 QHoverEvent::~QHoverEvent + +Class QHoverEvent + size=28 align=4 + base size=28 base align=4 +QHoverEvent (0xb4e7a840) 0 + vptr=((& QHoverEvent::_ZTV11QHoverEvent) + 8u) + QEvent (0xb4e97ec4) 0 + primary-for QHoverEvent (0xb4e7a840) + +Vtable for QWheelEvent +QWheelEvent::_ZTV11QWheelEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWheelEvent) +8 QWheelEvent::~QWheelEvent +12 QWheelEvent::~QWheelEvent + +Class QWheelEvent + size=44 align=4 + base size=44 base align=4 +QWheelEvent (0xb4e7a940) 0 + vptr=((& QWheelEvent::_ZTV11QWheelEvent) + 8u) + QInputEvent (0xb4e7a980) 0 + primary-for QWheelEvent (0xb4e7a940) + QEvent (0xb4ea521c) 0 + primary-for QInputEvent (0xb4e7a980) + +Vtable for QTabletEvent +QTabletEvent::_ZTV12QTabletEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTabletEvent) +8 QTabletEvent::~QTabletEvent +12 QTabletEvent::~QTabletEvent + +Class QTabletEvent + size=104 align=4 + base size=104 base align=4 +QTabletEvent (0xb4e7ac80) 0 + vptr=((& QTabletEvent::_ZTV12QTabletEvent) + 8u) + QInputEvent (0xb4e7acc0) 0 + primary-for QTabletEvent (0xb4e7ac80) + QEvent (0xb4ea5e88) 0 + primary-for QInputEvent (0xb4e7acc0) + +Vtable for QKeyEvent +QKeyEvent::_ZTV9QKeyEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QKeyEvent) +8 QKeyEvent::~QKeyEvent +12 QKeyEvent::~QKeyEvent + +Class QKeyEvent + size=28 align=4 + base size=27 base align=4 +QKeyEvent (0xb4ebf1c0) 0 + vptr=((& QKeyEvent::_ZTV9QKeyEvent) + 8u) + QInputEvent (0xb4ebf200) 0 + primary-for QKeyEvent (0xb4ebf1c0) + QEvent (0xb4ec030c) 0 + primary-for QInputEvent (0xb4ebf200) + +Vtable for QFocusEvent +QFocusEvent::_ZTV11QFocusEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFocusEvent) +8 QFocusEvent::~QFocusEvent +12 QFocusEvent::~QFocusEvent + +Class QFocusEvent + size=16 align=4 + base size=16 base align=4 +QFocusEvent (0xb4ebf5c0) 0 + vptr=((& QFocusEvent::_ZTV11QFocusEvent) + 8u) + QEvent (0xb4ed1618) 0 + primary-for QFocusEvent (0xb4ebf5c0) + +Vtable for QPaintEvent +QPaintEvent::_ZTV11QPaintEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QPaintEvent) +8 QPaintEvent::~QPaintEvent +12 QPaintEvent::~QPaintEvent + +Class QPaintEvent + size=36 align=4 + base size=33 base align=4 +QPaintEvent (0xb4ebf6c0) 0 + vptr=((& QPaintEvent::_ZTV11QPaintEvent) + 8u) + QEvent (0xb4ed1b04) 0 + primary-for QPaintEvent (0xb4ebf6c0) + +Vtable for QUpdateLaterEvent +QUpdateLaterEvent::_ZTV17QUpdateLaterEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QUpdateLaterEvent) +8 QUpdateLaterEvent::~QUpdateLaterEvent +12 QUpdateLaterEvent::~QUpdateLaterEvent + +Class QUpdateLaterEvent + size=16 align=4 + base size=16 base align=4 +QUpdateLaterEvent (0xb4ebf840) 0 + vptr=((& QUpdateLaterEvent::_ZTV17QUpdateLaterEvent) + 8u) + QEvent (0xb4cde0b4) 0 + primary-for QUpdateLaterEvent (0xb4ebf840) + +Vtable for QMoveEvent +QMoveEvent::_ZTV10QMoveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QMoveEvent) +8 QMoveEvent::~QMoveEvent +12 QMoveEvent::~QMoveEvent + +Class QMoveEvent + size=28 align=4 + base size=28 base align=4 +QMoveEvent (0xb4ebf900) 0 + vptr=((& QMoveEvent::_ZTV10QMoveEvent) + 8u) + QEvent (0xb4cde30c) 0 + primary-for QMoveEvent (0xb4ebf900) + +Vtable for QResizeEvent +QResizeEvent::_ZTV12QResizeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QResizeEvent) +8 QResizeEvent::~QResizeEvent +12 QResizeEvent::~QResizeEvent + +Class QResizeEvent + size=28 align=4 + base size=28 base align=4 +QResizeEvent (0xb4ebfa00) 0 + vptr=((& QResizeEvent::_ZTV12QResizeEvent) + 8u) + QEvent (0xb4cde654) 0 + primary-for QResizeEvent (0xb4ebfa00) + +Vtable for QCloseEvent +QCloseEvent::_ZTV11QCloseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QCloseEvent) +8 QCloseEvent::~QCloseEvent +12 QCloseEvent::~QCloseEvent + +Class QCloseEvent + size=12 align=4 + base size=12 base align=4 +QCloseEvent (0xb4ebfb00) 0 + vptr=((& QCloseEvent::_ZTV11QCloseEvent) + 8u) + QEvent (0xb4cde99c) 0 + primary-for QCloseEvent (0xb4ebfb00) + +Vtable for QIconDragEvent +QIconDragEvent::_ZTV14QIconDragEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QIconDragEvent) +8 QIconDragEvent::~QIconDragEvent +12 QIconDragEvent::~QIconDragEvent + +Class QIconDragEvent + size=12 align=4 + base size=12 base align=4 +QIconDragEvent (0xb4ebfb40) 0 + vptr=((& QIconDragEvent::_ZTV14QIconDragEvent) + 8u) + QEvent (0xb4cdeb04) 0 + primary-for QIconDragEvent (0xb4ebfb40) + +Vtable for QShowEvent +QShowEvent::_ZTV10QShowEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QShowEvent) +8 QShowEvent::~QShowEvent +12 QShowEvent::~QShowEvent + +Class QShowEvent + size=12 align=4 + base size=12 base align=4 +QShowEvent (0xb4ebfbc0) 0 + vptr=((& QShowEvent::_ZTV10QShowEvent) + 8u) + QEvent (0xb4cdec6c) 0 + primary-for QShowEvent (0xb4ebfbc0) + +Vtable for QHideEvent +QHideEvent::_ZTV10QHideEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QHideEvent) +8 QHideEvent::~QHideEvent +12 QHideEvent::~QHideEvent + +Class QHideEvent + size=12 align=4 + base size=12 base align=4 +QHideEvent (0xb4ebfc40) 0 + vptr=((& QHideEvent::_ZTV10QHideEvent) + 8u) + QEvent (0xb4cdedd4) 0 + primary-for QHideEvent (0xb4ebfc40) + +Vtable for QContextMenuEvent +QContextMenuEvent::_ZTV17QContextMenuEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QContextMenuEvent) +8 QContextMenuEvent::~QContextMenuEvent +12 QContextMenuEvent::~QContextMenuEvent + +Class QContextMenuEvent + size=36 align=4 + base size=33 base align=4 +QContextMenuEvent (0xb4ebfcc0) 0 + vptr=((& QContextMenuEvent::_ZTV17QContextMenuEvent) + 8u) + QInputEvent (0xb4ebfd00) 0 + primary-for QContextMenuEvent (0xb4ebfcc0) + QEvent (0xb4cdef3c) 0 + primary-for QInputEvent (0xb4ebfd00) + +Class QInputMethodEvent::Attribute + size=24 align=4 + base size=24 base align=4 +QInputMethodEvent::Attribute (0xb4ceda50) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4cf930c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4cf9294) 0 + +Vtable for QInputMethodEvent +QInputMethodEvent::_ZTV17QInputMethodEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QInputMethodEvent) +8 QInputMethodEvent::~QInputMethodEvent +12 QInputMethodEvent::~QInputMethodEvent + +Class QInputMethodEvent + size=32 align=4 + base size=32 base align=4 +QInputMethodEvent (0xb4ebff80) 0 + vptr=((& QInputMethodEvent::_ZTV17QInputMethodEvent) + 8u) + QEvent (0xb4ceda14) 0 + primary-for QInputMethodEvent (0xb4ebff80) + +Vtable for QDropEvent +QDropEvent::_ZTV10QDropEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QDropEvent) +8 QDropEvent::~QDropEvent +12 QDropEvent::~QDropEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI10QDropEvent) +36 QDropEvent::_ZThn12_N10QDropEventD1Ev +40 QDropEvent::_ZThn12_N10QDropEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDropEvent + size=52 align=4 + base size=52 base align=4 +QDropEvent (0xb4d0caf0) 0 + vptr=((& QDropEvent::_ZTV10QDropEvent) + 8u) + QEvent (0xb4cf9b40) 0 + primary-for QDropEvent (0xb4d0caf0) + QMimeSource (0xb4cf9b7c) 12 nearly-empty + vptr=((& QDropEvent::_ZTV10QDropEvent) + 36u) + +Vtable for QDragMoveEvent +QDragMoveEvent::_ZTV14QDragMoveEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDragMoveEvent) +8 QDragMoveEvent::~QDragMoveEvent +12 QDragMoveEvent::~QDragMoveEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI14QDragMoveEvent) +36 QDragMoveEvent::_ZThn12_N14QDragMoveEventD1Ev +40 QDragMoveEvent::_ZThn12_N14QDragMoveEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDragMoveEvent + size=68 align=4 + base size=68 base align=4 +QDragMoveEvent (0xb4cf77c0) 0 + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 8u) + QDropEvent (0xb4d1f4b0) 0 + primary-for QDragMoveEvent (0xb4cf77c0) + QEvent (0xb4d1bf3c) 0 + primary-for QDropEvent (0xb4d1f4b0) + QMimeSource (0xb4d1bf78) 12 nearly-empty + vptr=((& QDragMoveEvent::_ZTV14QDragMoveEvent) + 36u) + +Vtable for QDragEnterEvent +QDragEnterEvent::_ZTV15QDragEnterEvent: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QDragEnterEvent) +8 QDragEnterEvent::~QDragEnterEvent +12 QDragEnterEvent::~QDragEnterEvent +16 QDropEvent::format +20 QDropEvent::encodedData +24 QDropEvent::provides +28 (int (*)(...))-0x00000000c +32 (int (*)(...))(& _ZTI15QDragEnterEvent) +36 QDragEnterEvent::_ZThn12_N15QDragEnterEventD1Ev +40 QDragEnterEvent::_ZThn12_N15QDragEnterEventD0Ev +44 QDropEvent::_ZThn12_NK10QDropEvent6formatEi +48 QDropEvent::_ZThn12_NK10QDropEvent8providesEPKc +52 QDropEvent::_ZThn12_NK10QDropEvent11encodedDataEPKc + +Class QDragEnterEvent + size=68 align=4 + base size=68 base align=4 +QDragEnterEvent (0xb4cf79c0) 0 + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 8u) + QDragMoveEvent (0xb4cf7a00) 0 + primary-for QDragEnterEvent (0xb4cf79c0) + QDropEvent (0xb4d26410) 0 + primary-for QDragMoveEvent (0xb4cf7a00) + QEvent (0xb4d23b04) 0 + primary-for QDropEvent (0xb4d26410) + QMimeSource (0xb4d23b40) 12 nearly-empty + vptr=((& QDragEnterEvent::_ZTV15QDragEnterEvent) + 36u) + +Vtable for QDragResponseEvent +QDragResponseEvent::_ZTV18QDragResponseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QDragResponseEvent) +8 QDragResponseEvent::~QDragResponseEvent +12 QDragResponseEvent::~QDragResponseEvent + +Class QDragResponseEvent + size=16 align=4 + base size=13 base align=4 +QDragResponseEvent (0xb4cf7a40) 0 + vptr=((& QDragResponseEvent::_ZTV18QDragResponseEvent) + 8u) + QEvent (0xb4d23d20) 0 + primary-for QDragResponseEvent (0xb4cf7a40) + +Vtable for QDragLeaveEvent +QDragLeaveEvent::_ZTV15QDragLeaveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QDragLeaveEvent) +8 QDragLeaveEvent::~QDragLeaveEvent +12 QDragLeaveEvent::~QDragLeaveEvent + +Class QDragLeaveEvent + size=12 align=4 + base size=12 base align=4 +QDragLeaveEvent (0xb4cf7b40) 0 + vptr=((& QDragLeaveEvent::_ZTV15QDragLeaveEvent) + 8u) + QEvent (0xb4d23f78) 0 + primary-for QDragLeaveEvent (0xb4cf7b40) + +Vtable for QHelpEvent +QHelpEvent::_ZTV10QHelpEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QHelpEvent) +8 QHelpEvent::~QHelpEvent +12 QHelpEvent::~QHelpEvent + +Class QHelpEvent + size=28 align=4 + base size=28 base align=4 +QHelpEvent (0xb4cf7b80) 0 + vptr=((& QHelpEvent::_ZTV10QHelpEvent) + 8u) + QEvent (0xb4d3003c) 0 + primary-for QHelpEvent (0xb4cf7b80) + +Vtable for QStatusTipEvent +QStatusTipEvent::_ZTV15QStatusTipEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QStatusTipEvent) +8 QStatusTipEvent::~QStatusTipEvent +12 QStatusTipEvent::~QStatusTipEvent + +Class QStatusTipEvent + size=16 align=4 + base size=16 base align=4 +QStatusTipEvent (0xb4cf7dc0) 0 + vptr=((& QStatusTipEvent::_ZTV15QStatusTipEvent) + 8u) + QEvent (0xb4d307bc) 0 + primary-for QStatusTipEvent (0xb4cf7dc0) + +Vtable for QWhatsThisClickedEvent +QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QWhatsThisClickedEvent) +8 QWhatsThisClickedEvent::~QWhatsThisClickedEvent +12 QWhatsThisClickedEvent::~QWhatsThisClickedEvent + +Class QWhatsThisClickedEvent + size=16 align=4 + base size=16 base align=4 +QWhatsThisClickedEvent (0xb4cf7e80) 0 + vptr=((& QWhatsThisClickedEvent::_ZTV22QWhatsThisClickedEvent) + 8u) + QEvent (0xb4d30a14) 0 + primary-for QWhatsThisClickedEvent (0xb4cf7e80) + +Vtable for QActionEvent +QActionEvent::_ZTV12QActionEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QActionEvent) +8 QActionEvent::~QActionEvent +12 QActionEvent::~QActionEvent + +Class QActionEvent + size=20 align=4 + base size=20 base align=4 +QActionEvent (0xb4cf7f40) 0 + vptr=((& QActionEvent::_ZTV12QActionEvent) + 8u) + QEvent (0xb4d30c6c) 0 + primary-for QActionEvent (0xb4cf7f40) + +Vtable for QFileOpenEvent +QFileOpenEvent::_ZTV14QFileOpenEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFileOpenEvent) +8 QFileOpenEvent::~QFileOpenEvent +12 QFileOpenEvent::~QFileOpenEvent + +Class QFileOpenEvent + size=16 align=4 + base size=16 base align=4 +QFileOpenEvent (0xb4d40040) 0 + vptr=((& QFileOpenEvent::_ZTV14QFileOpenEvent) + 8u) + QEvent (0xb4d30fb4) 0 + primary-for QFileOpenEvent (0xb4d40040) + +Vtable for QToolBarChangeEvent +QToolBarChangeEvent::_ZTV19QToolBarChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QToolBarChangeEvent) +8 QToolBarChangeEvent::~QToolBarChangeEvent +12 QToolBarChangeEvent::~QToolBarChangeEvent + +Class QToolBarChangeEvent + size=16 align=4 + base size=13 base align=4 +QToolBarChangeEvent (0xb4d40100) 0 + vptr=((& QToolBarChangeEvent::_ZTV19QToolBarChangeEvent) + 8u) + QEvent (0xb4d420b4) 0 + primary-for QToolBarChangeEvent (0xb4d40100) + +Vtable for QShortcutEvent +QShortcutEvent::_ZTV14QShortcutEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QShortcutEvent) +8 QShortcutEvent::~QShortcutEvent +12 QShortcutEvent::~QShortcutEvent + +Class QShortcutEvent + size=24 align=4 + base size=24 base align=4 +QShortcutEvent (0xb4d401c0) 0 + vptr=((& QShortcutEvent::_ZTV14QShortcutEvent) + 8u) + QEvent (0xb4d4230c) 0 + primary-for QShortcutEvent (0xb4d401c0) + +Vtable for QClipboardEvent +QClipboardEvent::_ZTV15QClipboardEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QClipboardEvent) +8 QClipboardEvent::~QClipboardEvent +12 QClipboardEvent::~QClipboardEvent + +Class QClipboardEvent + size=12 align=4 + base size=12 base align=4 +QClipboardEvent (0xb4d403c0) 0 + vptr=((& QClipboardEvent::_ZTV15QClipboardEvent) + 8u) + QEvent (0xb4d42a14) 0 + primary-for QClipboardEvent (0xb4d403c0) + +Vtable for QWindowStateChangeEvent +QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QWindowStateChangeEvent) +8 QWindowStateChangeEvent::~QWindowStateChangeEvent +12 QWindowStateChangeEvent::~QWindowStateChangeEvent + +Class QWindowStateChangeEvent + size=16 align=4 + base size=16 base align=4 +QWindowStateChangeEvent (0xb4d40480) 0 + vptr=((& QWindowStateChangeEvent::_ZTV23QWindowStateChangeEvent) + 8u) + QEvent (0xb4d42c6c) 0 + primary-for QWindowStateChangeEvent (0xb4d40480) + +Vtable for QMenubarUpdatedEvent +QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QMenubarUpdatedEvent) +8 QMenubarUpdatedEvent::~QMenubarUpdatedEvent +12 QMenubarUpdatedEvent::~QMenubarUpdatedEvent + +Class QMenubarUpdatedEvent + size=16 align=4 + base size=16 base align=4 +QMenubarUpdatedEvent (0xb4d40540) 0 + vptr=((& QMenubarUpdatedEvent::_ZTV20QMenubarUpdatedEvent) + 8u) + QEvent (0xb4d42f00) 0 + primary-for QMenubarUpdatedEvent (0xb4d40540) + +Class QAccessible + size=1 align=1 + base size=0 base align=1 +QAccessible (0xb4d512d0) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4d51bf4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4d65834) 0 + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb4d7c3fc) 0 empty + +Vtable for QAccessibleInterface +QAccessibleInterface::_ZTV20QAccessibleInterface: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAccessibleInterface) +8 QAccessibleInterface::~QAccessibleInterface +12 QAccessibleInterface::~QAccessibleInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual + +Class QAccessibleInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleInterface (0xb4d409c0) 0 nearly-empty + vptr=((& QAccessibleInterface::_ZTV20QAccessibleInterface) + 8u) + QAccessible (0xb4d7c7f8) 0 empty + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb4d8c30c) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb4d8c294) 0 + +Class QSet + size=4 align=4 + base size=4 base align=4 +QSet (0xb4d8c21c) 0 + +Vtable for QAccessibleInterfaceEx +QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QAccessibleInterfaceEx) +8 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +12 QAccessibleInterfaceEx::~QAccessibleInterfaceEx +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleInterfaceEx + size=4 align=4 + base size=4 base align=4 +QAccessibleInterfaceEx (0xb4d40f80) 0 nearly-empty + vptr=((& QAccessibleInterfaceEx::_ZTV22QAccessibleInterfaceEx) + 8u) + QAccessibleInterface (0xb4d40fc0) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb4d40f80) + QAccessible (0xb4db21a4) 0 empty + +Vtable for QAccessibleEvent +QAccessibleEvent::_ZTV16QAccessibleEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QAccessibleEvent) +8 QAccessibleEvent::~QAccessibleEvent +12 QAccessibleEvent::~QAccessibleEvent + +Class QAccessibleEvent + size=20 align=4 + base size=20 base align=4 +QAccessibleEvent (0xb4db4080) 0 + vptr=((& QAccessibleEvent::_ZTV16QAccessibleEvent) + 8u) + QEvent (0xb4db2348) 0 + primary-for QAccessibleEvent (0xb4db4080) + +Vtable for QAccessible2Interface +QAccessible2Interface::_ZTV21QAccessible2Interface: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QAccessible2Interface) +8 QAccessible2Interface::~QAccessible2Interface +12 QAccessible2Interface::~QAccessible2Interface + +Class QAccessible2Interface + size=4 align=4 + base size=4 base align=4 +QAccessible2Interface (0xb4db2d5c) 0 nearly-empty + vptr=((& QAccessible2Interface::_ZTV21QAccessible2Interface) + 8u) + +Vtable for QAccessibleTextInterface +QAccessibleTextInterface::_ZTV24QAccessibleTextInterface: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAccessibleTextInterface) +8 QAccessibleTextInterface::~QAccessibleTextInterface +12 QAccessibleTextInterface::~QAccessibleTextInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual + +Class QAccessibleTextInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleTextInterface (0xb4db4600) 0 nearly-empty + vptr=((& QAccessibleTextInterface::_ZTV24QAccessibleTextInterface) + 8u) + QAccessible2Interface (0xb4dc121c) 0 nearly-empty + primary-for QAccessibleTextInterface (0xb4db4600) + +Vtable for QAccessibleEditableTextInterface +QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI32QAccessibleEditableTextInterface) +8 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +12 QAccessibleEditableTextInterface::~QAccessibleEditableTextInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual + +Class QAccessibleEditableTextInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleEditableTextInterface (0xb4db4780) 0 nearly-empty + vptr=((& QAccessibleEditableTextInterface::_ZTV32QAccessibleEditableTextInterface) + 8u) + QAccessible2Interface (0xb4dc1654) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0xb4db4780) + +Vtable for QAccessibleSimpleEditableTextInterface +QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI38QAccessibleSimpleEditableTextInterface) +8 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +12 QAccessibleSimpleEditableTextInterface::~QAccessibleSimpleEditableTextInterface +16 QAccessibleSimpleEditableTextInterface::copyText +20 QAccessibleSimpleEditableTextInterface::deleteText +24 QAccessibleSimpleEditableTextInterface::insertText +28 QAccessibleSimpleEditableTextInterface::cutText +32 QAccessibleSimpleEditableTextInterface::pasteText +36 QAccessibleSimpleEditableTextInterface::replaceText +40 QAccessibleSimpleEditableTextInterface::setAttributes + +Class QAccessibleSimpleEditableTextInterface + size=8 align=4 + base size=8 base align=4 +QAccessibleSimpleEditableTextInterface (0xb4db4900) 0 + vptr=((& QAccessibleSimpleEditableTextInterface::_ZTV38QAccessibleSimpleEditableTextInterface) + 8u) + QAccessibleEditableTextInterface (0xb4db4940) 0 nearly-empty + primary-for QAccessibleSimpleEditableTextInterface (0xb4db4900) + QAccessible2Interface (0xb4dc1a8c) 0 nearly-empty + primary-for QAccessibleEditableTextInterface (0xb4db4940) + +Vtable for QAccessibleValueInterface +QAccessibleValueInterface::_ZTV25QAccessibleValueInterface: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QAccessibleValueInterface) +8 QAccessibleValueInterface::~QAccessibleValueInterface +12 QAccessibleValueInterface::~QAccessibleValueInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QAccessibleValueInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleValueInterface (0xb4db4a00) 0 nearly-empty + vptr=((& QAccessibleValueInterface::_ZTV25QAccessibleValueInterface) + 8u) + QAccessible2Interface (0xb4dc1c30) 0 nearly-empty + primary-for QAccessibleValueInterface (0xb4db4a00) + +Vtable for QAccessibleTableInterface +QAccessibleTableInterface::_ZTV25QAccessibleTableInterface: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QAccessibleTableInterface) +8 QAccessibleTableInterface::~QAccessibleTableInterface +12 QAccessibleTableInterface::~QAccessibleTableInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 __cxa_pure_virtual + +Class QAccessibleTableInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleTableInterface (0xb4db4b80) 0 nearly-empty + vptr=((& QAccessibleTableInterface::_ZTV25QAccessibleTableInterface) + 8u) + QAccessible2Interface (0xb4dc1b7c) 0 nearly-empty + primary-for QAccessibleTableInterface (0xb4db4b80) + +Vtable for QAccessibleBridge +QAccessibleBridge::_ZTV17QAccessibleBridge: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleBridge) +8 QAccessibleBridge::~QAccessibleBridge +12 QAccessibleBridge::~QAccessibleBridge +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleBridge + size=4 align=4 + base size=4 base align=4 +QAccessibleBridge (0xb4bd91a4) 0 nearly-empty + vptr=((& QAccessibleBridge::_ZTV17QAccessibleBridge) + 8u) + +Vtable for QAccessibleBridgeFactoryInterface +QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI33QAccessibleBridgeFactoryInterface) +8 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +12 QAccessibleBridgeFactoryInterface::~QAccessibleBridgeFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleBridgeFactoryInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleBridgeFactoryInterface (0xb4db4d40) 0 nearly-empty + vptr=((& QAccessibleBridgeFactoryInterface::_ZTV33QAccessibleBridgeFactoryInterface) + 8u) + QFactoryInterface (0xb4bd9528) 0 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0xb4db4d40) + +Vtable for QAccessibleBridgePlugin +QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +8 QAccessibleBridgePlugin::metaObject +12 QAccessibleBridgePlugin::qt_metacast +16 QAccessibleBridgePlugin::qt_metacall +20 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +24 QAccessibleBridgePlugin::~QAccessibleBridgePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI23QAccessibleBridgePlugin) +72 QAccessibleBridgePlugin::_ZThn8_N23QAccessibleBridgePluginD1Ev +76 QAccessibleBridgePlugin::_ZThn8_N23QAccessibleBridgePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QAccessibleBridgePlugin + size=12 align=4 + base size=12 base align=4 +QAccessibleBridgePlugin (0xb4be5190) 0 + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 8u) + QObject (0xb4bd9870) 0 + primary-for QAccessibleBridgePlugin (0xb4be5190) + QAccessibleBridgeFactoryInterface (0xb4db4ec0) 8 nearly-empty + vptr=((& QAccessibleBridgePlugin::_ZTV23QAccessibleBridgePlugin) + 72u) + QFactoryInterface (0xb4bd98ac) 8 nearly-empty + primary-for QAccessibleBridgeFactoryInterface (0xb4db4ec0) + +Vtable for QAccessibleObject +QAccessibleObject::_ZTV17QAccessibleObject: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleObject) +8 QAccessibleObject::~QAccessibleObject +12 QAccessibleObject::~QAccessibleObject +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 QAccessibleObject::setText +52 QAccessibleObject::rect +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAccessibleObject::userActionCount +68 QAccessibleObject::actionText +72 QAccessibleObject::doAction + +Class QAccessibleObject + size=8 align=4 + base size=8 base align=4 +QAccessibleObject (0xb4beb100) 0 + vptr=((& QAccessibleObject::_ZTV17QAccessibleObject) + 8u) + QAccessibleInterface (0xb4beb140) 0 nearly-empty + primary-for QAccessibleObject (0xb4beb100) + QAccessible (0xb4bd9a8c) 0 empty + +Vtable for QAccessibleObjectEx +QAccessibleObjectEx::_ZTV19QAccessibleObjectEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAccessibleObjectEx) +8 QAccessibleObjectEx::~QAccessibleObjectEx +12 QAccessibleObjectEx::~QAccessibleObjectEx +16 QAccessibleObjectEx::isValid +20 QAccessibleObjectEx::object +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 QAccessibleObjectEx::setText +52 QAccessibleObjectEx::rect +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAccessibleObjectEx::userActionCount +68 QAccessibleObjectEx::actionText +72 QAccessibleObjectEx::doAction +76 __cxa_pure_virtual +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleObjectEx + size=8 align=4 + base size=8 base align=4 +QAccessibleObjectEx (0xb4beb180) 0 + vptr=((& QAccessibleObjectEx::_ZTV19QAccessibleObjectEx) + 8u) + QAccessibleInterfaceEx (0xb4beb1c0) 0 nearly-empty + primary-for QAccessibleObjectEx (0xb4beb180) + QAccessibleInterface (0xb4beb200) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb4beb1c0) + QAccessible (0xb4bf13fc) 0 empty + +Vtable for QAccessibleApplication +QAccessibleApplication::_ZTV22QAccessibleApplication: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QAccessibleApplication) +8 QAccessibleApplication::~QAccessibleApplication +12 QAccessibleApplication::~QAccessibleApplication +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 QAccessibleApplication::childCount +28 QAccessibleApplication::indexOfChild +32 QAccessibleApplication::relationTo +36 QAccessibleApplication::childAt +40 QAccessibleApplication::navigate +44 QAccessibleApplication::text +48 QAccessibleObject::setText +52 QAccessibleObject::rect +56 QAccessibleApplication::role +60 QAccessibleApplication::state +64 QAccessibleApplication::userActionCount +68 QAccessibleApplication::actionText +72 QAccessibleApplication::doAction + +Class QAccessibleApplication + size=8 align=4 + base size=8 base align=4 +QAccessibleApplication (0xb4beb280) 0 + vptr=((& QAccessibleApplication::_ZTV22QAccessibleApplication) + 8u) + QAccessibleObject (0xb4beb2c0) 0 + primary-for QAccessibleApplication (0xb4beb280) + QAccessibleInterface (0xb4beb300) 0 nearly-empty + primary-for QAccessibleObject (0xb4beb2c0) + QAccessible (0xb4bf1834) 0 empty + +Vtable for QAccessibleFactoryInterface +QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAccessibleFactoryInterface) +8 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +12 QAccessibleFactoryInterface::~QAccessibleFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAccessibleFactoryInterface + size=4 align=4 + base size=4 base align=4 +QAccessibleFactoryInterface (0xb4bfbcd0) 0 nearly-empty + vptr=((& QAccessibleFactoryInterface::_ZTV27QAccessibleFactoryInterface) + 8u) + QAccessible (0xb4bf1d5c) 0 empty + QFactoryInterface (0xb4bf1d98) 0 nearly-empty + primary-for QAccessibleFactoryInterface (0xb4bfbcd0) + +Vtable for QAccessiblePlugin +QAccessiblePlugin::_ZTV17QAccessiblePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessiblePlugin) +8 QAccessiblePlugin::metaObject +12 QAccessiblePlugin::qt_metacast +16 QAccessiblePlugin::qt_metacall +20 QAccessiblePlugin::~QAccessiblePlugin +24 QAccessiblePlugin::~QAccessiblePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI17QAccessiblePlugin) +72 QAccessiblePlugin::_ZThn8_N17QAccessiblePluginD1Ev +76 QAccessiblePlugin::_ZThn8_N17QAccessiblePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QAccessiblePlugin + size=12 align=4 + base size=12 base align=4 +QAccessiblePlugin (0xb4bfe2d0) 0 + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 8u) + QObject (0xb4c05000) 0 + primary-for QAccessiblePlugin (0xb4bfe2d0) + QAccessibleFactoryInterface (0xb4bfe320) 8 nearly-empty + vptr=((& QAccessiblePlugin::_ZTV17QAccessiblePlugin) + 72u) + QAccessible (0xb4c0503c) 8 empty + QFactoryInterface (0xb4c05078) 8 nearly-empty + primary-for QAccessibleFactoryInterface (0xb4bfe320) + +Vtable for QAccessibleWidget +QAccessibleWidget::_ZTV17QAccessibleWidget: 19u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAccessibleWidget) +8 QAccessibleWidget::~QAccessibleWidget +12 QAccessibleWidget::~QAccessibleWidget +16 QAccessibleObject::isValid +20 QAccessibleObject::object +24 QAccessibleWidget::childCount +28 QAccessibleWidget::indexOfChild +32 QAccessibleWidget::relationTo +36 QAccessibleWidget::childAt +40 QAccessibleWidget::navigate +44 QAccessibleWidget::text +48 QAccessibleObject::setText +52 QAccessibleWidget::rect +56 QAccessibleWidget::role +60 QAccessibleWidget::state +64 QAccessibleWidget::userActionCount +68 QAccessibleWidget::actionText +72 QAccessibleWidget::doAction + +Class QAccessibleWidget + size=12 align=4 + base size=12 base align=4 +QAccessibleWidget (0xb4beb700) 0 + vptr=((& QAccessibleWidget::_ZTV17QAccessibleWidget) + 8u) + QAccessibleObject (0xb4beb740) 0 + primary-for QAccessibleWidget (0xb4beb700) + QAccessibleInterface (0xb4beb780) 0 nearly-empty + primary-for QAccessibleObject (0xb4beb740) + QAccessible (0xb4c058e8) 0 empty + +Vtable for QAccessibleWidgetEx +QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAccessibleWidgetEx) +8 QAccessibleWidgetEx::~QAccessibleWidgetEx +12 QAccessibleWidgetEx::~QAccessibleWidgetEx +16 QAccessibleObjectEx::isValid +20 QAccessibleObjectEx::object +24 QAccessibleWidgetEx::childCount +28 QAccessibleWidgetEx::indexOfChild +32 QAccessibleWidgetEx::relationTo +36 QAccessibleWidgetEx::childAt +40 QAccessibleWidgetEx::navigate +44 QAccessibleWidgetEx::text +48 QAccessibleObjectEx::setText +52 QAccessibleWidgetEx::rect +56 QAccessibleWidgetEx::role +60 QAccessibleWidgetEx::state +64 QAccessibleObjectEx::userActionCount +68 QAccessibleWidgetEx::actionText +72 QAccessibleWidgetEx::doAction +76 QAccessibleWidgetEx::invokeMethodEx +80 QAccessibleInterfaceEx::virtual_hook +84 QAccessibleInterfaceEx::interface_cast + +Class QAccessibleWidgetEx + size=12 align=4 + base size=12 base align=4 +QAccessibleWidgetEx (0xb4beb7c0) 0 + vptr=((& QAccessibleWidgetEx::_ZTV19QAccessibleWidgetEx) + 8u) + QAccessibleObjectEx (0xb4beb800) 0 + primary-for QAccessibleWidgetEx (0xb4beb7c0) + QAccessibleInterfaceEx (0xb4beb840) 0 nearly-empty + primary-for QAccessibleObjectEx (0xb4beb800) + QAccessibleInterface (0xb4beb880) 0 nearly-empty + primary-for QAccessibleInterfaceEx (0xb4beb840) + QAccessible (0xb4c14168) 0 empty + +Vtable for QPaintDevice +QPaintDevice::_ZTV12QPaintDevice: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPaintDevice) +8 QPaintDevice::~QPaintDevice +12 QPaintDevice::~QPaintDevice +16 QPaintDevice::devType +20 __cxa_pure_virtual +24 QPaintDevice::metric + +Class QPaintDevice + size=8 align=4 + base size=6 base align=4 +QPaintDevice (0xb4c14a50) 0 + vptr=((& QPaintDevice::_ZTV12QPaintDevice) + 8u) + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4c26f3c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4c26ec4) 0 + +Class QPolygon + size=4 align=4 + base size=4 base align=4 +QPolygon (0xb4bebd80) 0 + QVector (0xb4c26f78) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4c5603c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4c41fb4) 0 + +Class QPolygonF + size=4 align=4 + base size=4 base align=4 +QPolygonF (0xb4c4a380) 0 + QVector (0xb4c56078) 0 + +Class QMatrix + size=48 align=4 + base size=48 base align=4 +QMatrix (0xb4c56f78) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4c815dc) 0 empty + +Class QPainterPath::Element + size=20 align=4 + base size=20 base align=4 +QPainterPath::Element (0xb4c81dd4) 0 + +Class QPainterPath + size=4 align=4 + base size=4 base align=4 +QPainterPath (0xb4c81d98) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4ca5e4c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4ca5dd4) 0 + +Class QPainterPathPrivate + size=8 align=4 + base size=8 base align=4 +QPainterPathPrivate (0xb4ca5a50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ca5e88) 0 empty + +Class QPainterPathStroker + size=4 align=4 + base size=4 base align=4 +QPainterPathStroker (0xb4cc303c) 0 + +Class QTransform + size=80 align=4 + base size=80 base align=4 +QTransform (0xb4ade708) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4aee7f8) 0 empty + +Class QImageTextKeyLang + size=8 align=4 + base size=8 base align=4 +QImageTextKeyLang (0xb4b263c0) 0 + +Vtable for QImage +QImage::_ZTV6QImage: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QImage) +8 QImage::~QImage +12 QImage::~QImage +16 QImage::devType +20 QImage::paintEngine +24 QImage::metric + +Class QImage + size=12 align=4 + base size=12 base align=4 +QImage (0xb4b0c900) 0 + vptr=((& QImage::_ZTV6QImage) + 8u) + QPaintDevice (0xb4b53000) 0 + primary-for QImage (0xb4b0c900) + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4b894ec) 0 empty + +Vtable for QPixmap +QPixmap::_ZTV7QPixmap: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QPixmap) +8 QPixmap::~QPixmap +12 QPixmap::~QPixmap +16 QPixmap::devType +20 QPixmap::paintEngine +24 QPixmap::metric + +Class QPixmap + size=12 align=4 + base size=12 base align=4 +QPixmap (0xb4b90200) 0 + vptr=((& QPixmap::_ZTV7QPixmap) + 8u) + QPaintDevice (0xb4b897f8) 0 + primary-for QPixmap (0xb4b90200) + +Class QBrush + size=4 align=4 + base size=4 base align=4 +QBrush (0xb4bb2f00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4bbea14) 0 empty + +Class QBrushData + size=124 align=4 + base size=121 base align=4 +QBrushData (0xb4bbeca8) 0 + +Class QVector >:: + size=4 align=4 + base size=4 base align=4 +QVector >:: (0xb4bd2924) 0 + +Class QVector > + size=4 align=4 + base size=4 base align=4 +QVector > (0xb4bd28ac) 0 + +Class QGradient:::: + size=32 align=4 + base size=32 base align=4 +QGradient:::: (0xb4bd2a14) 0 + +Class QGradient:::: + size=40 align=4 + base size=40 base align=4 +QGradient:::: (0xb4bd2a8c) 0 + +Class QGradient:::: + size=24 align=4 + base size=24 base align=4 +QGradient:::: (0xb4bd2b04) 0 + +Class QGradient:: + size=40 align=4 + base size=40 base align=4 +QGradient:: (0xb4bd299c) 0 + +Class QGradient + size=56 align=4 + base size=56 base align=4 +QGradient (0xb4bd2258) 0 + +Class QLinearGradient + size=56 align=4 + base size=56 base align=4 +QLinearGradient (0xb4b90f80) 0 + QGradient (0xb4bd2fb4) 0 + +Class QRadialGradient + size=56 align=4 + base size=56 base align=4 +QRadialGradient (0xb49f5080) 0 + QGradient (0xb49f01e0) 0 + +Class QConicalGradient + size=56 align=4 + base size=56 base align=4 +QConicalGradient (0xb49f5180) 0 + QGradient (0xb49f04b0) 0 + +Class QPalette + size=8 align=4 + base size=8 base align=4 +QPalette (0xb49f0654) 0 + +Class QColorGroup + size=8 align=4 + base size=8 base align=4 +QColorGroup (0xb49f5bc0) 0 + QPalette (0xb4a1cec4) 0 + +Class QFont + size=8 align=4 + base size=8 base align=4 +QFont (0xb4a431e0) 0 + +Class QFontMetrics + size=4 align=4 + base size=4 base align=4 +QFontMetrics (0xb4a6003c) 0 + +Class QFontMetricsF + size=4 align=4 + base size=4 base align=4 +QFontMetricsF (0xb4a60a8c) 0 + +Class QFontInfo + size=4 align=4 + base size=4 base align=4 +QFontInfo (0xb4a7421c) 0 + +Class QSizePolicy + size=4 align=4 + base size=4 base align=4 +QSizePolicy (0xb4a747bc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4ac3834) 0 + +Class QCursor + size=4 align=4 + base size=4 base align=4 +QCursor (0xb4ad1bf4) 0 + +Class QWidgetData + size=64 align=4 + base size=64 base align=4 +QWidgetData (0xb48e303c) 0 + +Vtable for QWidget +QWidget::_ZTV7QWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QWidget) +8 QWidget::metaObject +12 QWidget::qt_metacast +16 QWidget::qt_metacall +20 QWidget::~QWidget +24 QWidget::~QWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI7QWidget) +232 QWidget::_ZThn8_N7QWidgetD1Ev +236 QWidget::_ZThn8_N7QWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWidget + size=20 align=4 + base size=20 base align=4 +QWidget (0xb48e1b90) 0 + vptr=((& QWidget::_ZTV7QWidget) + 8u) + QObject (0xb48e3078) 0 + primary-for QWidget (0xb48e1b90) + QPaintDevice (0xb48e30b4) 8 + vptr=((& QWidget::_ZTV7QWidget) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb490ee10) 0 + +Vtable for QDialog +QDialog::_ZTV7QDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QDialog) +8 QDialog::metaObject +12 QDialog::qt_metacast +16 QDialog::qt_metacall +20 QDialog::~QDialog +24 QDialog::~QDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI7QDialog) +244 QDialog::_ZThn8_N7QDialogD1Ev +248 QDialog::_ZThn8_N7QDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialog + size=20 align=4 + base size=20 base align=4 +QDialog (0xb497ae40) 0 + vptr=((& QDialog::_ZTV7QDialog) + 8u) + QWidget (0xb4995e60) 0 + primary-for QDialog (0xb497ae40) + QObject (0xb49a5870) 0 + primary-for QWidget (0xb4995e60) + QPaintDevice (0xb49a58ac) 8 + vptr=((& QDialog::_ZTV7QDialog) + 244u) + +Vtable for QAbstractPageSetupDialog +QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +8 QAbstractPageSetupDialog::metaObject +12 QAbstractPageSetupDialog::qt_metacast +16 QAbstractPageSetupDialog::qt_metacall +20 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +24 QAbstractPageSetupDialog::~QAbstractPageSetupDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 __cxa_pure_virtual +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI24QAbstractPageSetupDialog) +248 QAbstractPageSetupDialog::_ZThn8_N24QAbstractPageSetupDialogD1Ev +252 QAbstractPageSetupDialog::_ZThn8_N24QAbstractPageSetupDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPageSetupDialog + size=20 align=4 + base size=20 base align=4 +QAbstractPageSetupDialog (0xb49bb100) 0 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 8u) + QDialog (0xb49bb140) 0 + primary-for QAbstractPageSetupDialog (0xb49bb100) + QWidget (0xb49b48c0) 0 + primary-for QDialog (0xb49bb140) + QObject (0xb49b8744) 0 + primary-for QWidget (0xb49b48c0) + QPaintDevice (0xb49b8780) 8 + vptr=((& QAbstractPageSetupDialog::_ZTV24QAbstractPageSetupDialog) + 248u) + +Vtable for QAbstractPrintDialog +QAbstractPrintDialog::_ZTV20QAbstractPrintDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +8 QAbstractPrintDialog::metaObject +12 QAbstractPrintDialog::qt_metacast +16 QAbstractPrintDialog::qt_metacall +20 QAbstractPrintDialog::~QAbstractPrintDialog +24 QAbstractPrintDialog::~QAbstractPrintDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 __cxa_pure_virtual +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI20QAbstractPrintDialog) +248 QAbstractPrintDialog::_ZThn8_N20QAbstractPrintDialogD1Ev +252 QAbstractPrintDialog::_ZThn8_N20QAbstractPrintDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractPrintDialog + size=20 align=4 + base size=20 base align=4 +QAbstractPrintDialog (0xb49bb400) 0 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 8u) + QDialog (0xb49bb440) 0 + primary-for QAbstractPrintDialog (0xb49bb400) + QWidget (0xb49c2e10) 0 + primary-for QDialog (0xb49bb440) + QObject (0xb49ca12c) 0 + primary-for QWidget (0xb49c2e10) + QPaintDevice (0xb49ca168) 8 + vptr=((& QAbstractPrintDialog::_ZTV20QAbstractPrintDialog) + 248u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb47d730c) 0 + +Vtable for QColorDialog +QColorDialog::_ZTV12QColorDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QColorDialog) +8 QColorDialog::metaObject +12 QColorDialog::qt_metacast +16 QColorDialog::qt_metacall +20 QColorDialog::~QColorDialog +24 QColorDialog::~QColorDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QColorDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QColorDialog) +244 QColorDialog::_ZThn8_N12QColorDialogD1Ev +248 QColorDialog::_ZThn8_N12QColorDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColorDialog + size=20 align=4 + base size=20 base align=4 +QColorDialog (0xb49bb7c0) 0 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 8u) + QDialog (0xb49bb800) 0 + primary-for QColorDialog (0xb49bb7c0) + QWidget (0xb47e0500) 0 + primary-for QDialog (0xb49bb800) + QObject (0xb47d7ec4) 0 + primary-for QWidget (0xb47e0500) + QPaintDevice (0xb47d7f00) 8 + vptr=((& QColorDialog::_ZTV12QColorDialog) + 244u) + +Vtable for QErrorMessage +QErrorMessage::_ZTV13QErrorMessage: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QErrorMessage) +8 QErrorMessage::metaObject +12 QErrorMessage::qt_metacast +16 QErrorMessage::qt_metacall +20 QErrorMessage::~QErrorMessage +24 QErrorMessage::~QErrorMessage +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QErrorMessage::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QErrorMessage::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI13QErrorMessage) +244 QErrorMessage::_ZThn8_N13QErrorMessageD1Ev +248 QErrorMessage::_ZThn8_N13QErrorMessageD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QErrorMessage + size=20 align=4 + base size=20 base align=4 +QErrorMessage (0xb49bbb40) 0 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 8u) + QDialog (0xb49bbb80) 0 + primary-for QErrorMessage (0xb49bbb40) + QWidget (0xb47fb280) 0 + primary-for QDialog (0xb49bbb80) + QObject (0xb47f0d20) 0 + primary-for QWidget (0xb47fb280) + QPaintDevice (0xb47f0d5c) 8 + vptr=((& QErrorMessage::_ZTV13QErrorMessage) + 244u) + +Vtable for QFileDialog +QFileDialog::_ZTV11QFileDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFileDialog) +8 QFileDialog::metaObject +12 QFileDialog::qt_metacast +16 QFileDialog::qt_metacall +20 QFileDialog::~QFileDialog +24 QFileDialog::~QFileDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFileDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QFileDialog::done +228 QFileDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QFileDialog) +244 QFileDialog::_ZThn8_N11QFileDialogD1Ev +248 QFileDialog::_ZThn8_N11QFileDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFileDialog + size=20 align=4 + base size=20 base align=4 +QFileDialog (0xb49bbe80) 0 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 8u) + QDialog (0xb49bbec0) 0 + primary-for QFileDialog (0xb49bbe80) + QWidget (0xb4804960) 0 + primary-for QDialog (0xb49bbec0) + QObject (0xb4803b7c) 0 + primary-for QWidget (0xb4804960) + QPaintDevice (0xb4803bb8) 8 + vptr=((& QFileDialog::_ZTV11QFileDialog) + 244u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4815ca8) 0 + +Class QIcon + size=4 align=4 + base size=4 base align=4 +QIcon (0xb4844078) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb485a438) 0 empty + +Vtable for QFileSystemModel +QFileSystemModel::_ZTV16QFileSystemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFileSystemModel) +8 QFileSystemModel::metaObject +12 QFileSystemModel::qt_metacast +16 QFileSystemModel::qt_metacall +20 QFileSystemModel::~QFileSystemModel +24 QFileSystemModel::~QFileSystemModel +28 QObject::event +32 QObject::eventFilter +36 QFileSystemModel::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFileSystemModel::index +60 QFileSystemModel::parent +64 QFileSystemModel::rowCount +68 QFileSystemModel::columnCount +72 QFileSystemModel::hasChildren +76 QFileSystemModel::data +80 QFileSystemModel::setData +84 QFileSystemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QFileSystemModel::mimeTypes +104 QFileSystemModel::mimeData +108 QFileSystemModel::dropMimeData +112 QFileSystemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QFileSystemModel::fetchMore +136 QFileSystemModel::canFetchMore +140 QFileSystemModel::flags +144 QFileSystemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QFileSystemModel + size=8 align=4 + base size=8 base align=4 +QFileSystemModel (0xb482eb00) 0 + vptr=((& QFileSystemModel::_ZTV16QFileSystemModel) + 8u) + QAbstractItemModel (0xb482eb40) 0 + primary-for QFileSystemModel (0xb482eb00) + QObject (0xb485a528) 0 + primary-for QAbstractItemModel (0xb482eb40) + +Vtable for QFontDialog +QFontDialog::_ZTV11QFontDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFontDialog) +8 QFontDialog::metaObject +12 QFontDialog::qt_metacast +16 QFontDialog::qt_metacall +20 QFontDialog::~QFontDialog +24 QFontDialog::~QFontDialog +28 QWidget::event +32 QFontDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFontDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QFontDialog) +244 QFontDialog::_ZThn8_N11QFontDialogD1Ev +248 QFontDialog::_ZThn8_N11QFontDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontDialog + size=20 align=4 + base size=20 base align=4 +QFontDialog (0xb482efc0) 0 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 8u) + QDialog (0xb487f000) 0 + primary-for QFontDialog (0xb482efc0) + QWidget (0xb4871f00) 0 + primary-for QDialog (0xb487f000) + QObject (0xb487899c) 0 + primary-for QWidget (0xb4871f00) + QPaintDevice (0xb48789d8) 8 + vptr=((& QFontDialog::_ZTV11QFontDialog) + 244u) + +Vtable for QFrame +QFrame::_ZTV6QFrame: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QFrame) +8 QFrame::metaObject +12 QFrame::qt_metacast +16 QFrame::qt_metacall +20 QFrame::~QFrame +24 QFrame::~QFrame +28 QFrame::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI6QFrame) +232 QFrame::_ZThn8_N6QFrameD1Ev +236 QFrame::_ZThn8_N6QFrameD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFrame + size=20 align=4 + base size=20 base align=4 +QFrame (0xb487f340) 0 + vptr=((& QFrame::_ZTV6QFrame) + 8u) + QWidget (0xb4885e10) 0 + primary-for QFrame (0xb487f340) + QObject (0xb4889870) 0 + primary-for QWidget (0xb4885e10) + QPaintDevice (0xb48898ac) 8 + vptr=((& QFrame::_ZTV6QFrame) + 232u) + +Vtable for QLineEdit +QLineEdit::_ZTV9QLineEdit: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QLineEdit) +8 QLineEdit::metaObject +12 QLineEdit::qt_metacast +16 QLineEdit::qt_metacall +20 QLineEdit::~QLineEdit +24 QLineEdit::~QLineEdit +28 QLineEdit::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLineEdit::sizeHint +68 QLineEdit::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QLineEdit::mousePressEvent +84 QLineEdit::mouseReleaseEvent +88 QLineEdit::mouseDoubleClickEvent +92 QLineEdit::mouseMoveEvent +96 QWidget::wheelEvent +100 QLineEdit::keyPressEvent +104 QWidget::keyReleaseEvent +108 QLineEdit::focusInEvent +112 QLineEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLineEdit::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QLineEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QLineEdit::dragEnterEvent +156 QLineEdit::dragMoveEvent +160 QLineEdit::dragLeaveEvent +164 QLineEdit::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QLineEdit::changeEvent +184 QWidget::metric +188 QLineEdit::inputMethodEvent +192 QLineEdit::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QLineEdit) +232 QLineEdit::_ZThn8_N9QLineEditD1Ev +236 QLineEdit::_ZThn8_N9QLineEditD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLineEdit + size=20 align=4 + base size=20 base align=4 +QLineEdit (0xb487f600) 0 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 8u) + QWidget (0xb489a960) 0 + primary-for QLineEdit (0xb487f600) + QObject (0xb4897bb8) 0 + primary-for QWidget (0xb489a960) + QPaintDevice (0xb4897bf4) 8 + vptr=((& QLineEdit::_ZTV9QLineEdit) + 232u) + +Vtable for QInputDialog +QInputDialog::_ZTV12QInputDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QInputDialog) +8 QInputDialog::metaObject +12 QInputDialog::qt_metacast +16 QInputDialog::qt_metacall +20 QInputDialog::~QInputDialog +24 QInputDialog::~QInputDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QInputDialog) +244 QInputDialog::_ZThn8_N12QInputDialogD1Ev +248 QInputDialog::_ZThn8_N12QInputDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QInputDialog + size=20 align=4 + base size=20 base align=4 +QInputDialog (0xb487fe80) 0 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 8u) + QDialog (0xb487fec0) 0 + primary-for QInputDialog (0xb487fe80) + QWidget (0xb48baf50) 0 + primary-for QDialog (0xb487fec0) + QObject (0xb48cc03c) 0 + primary-for QWidget (0xb48baf50) + QPaintDevice (0xb48cc078) 8 + vptr=((& QInputDialog::_ZTV12QInputDialog) + 244u) + +Vtable for QMessageBox +QMessageBox::_ZTV11QMessageBox: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMessageBox) +8 QMessageBox::metaObject +12 QMessageBox::qt_metacast +16 QMessageBox::qt_metacall +20 QMessageBox::~QMessageBox +24 QMessageBox::~QMessageBox +28 QMessageBox::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QMessageBox::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QMessageBox::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QMessageBox::resizeEvent +136 QMessageBox::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QMessageBox::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QMessageBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QMessageBox) +244 QMessageBox::_ZThn8_N11QMessageBoxD1Ev +248 QMessageBox::_ZThn8_N11QMessageBoxD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMessageBox + size=20 align=4 + base size=20 base align=4 +QMessageBox (0xb46d2280) 0 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 8u) + QDialog (0xb46d22c0) 0 + primary-for QMessageBox (0xb46d2280) + QWidget (0xb46d56e0) 0 + primary-for QDialog (0xb46d22c0) + QObject (0xb46d62d0) 0 + primary-for QWidget (0xb46d56e0) + QPaintDevice (0xb46d630c) 8 + vptr=((& QMessageBox::_ZTV11QMessageBox) + 244u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb46f6168) 0 + +Vtable for QPageSetupDialog +QPageSetupDialog::_ZTV16QPageSetupDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QPageSetupDialog) +8 QPageSetupDialog::metaObject +12 QPageSetupDialog::qt_metacast +16 QPageSetupDialog::qt_metacall +20 QPageSetupDialog::~QPageSetupDialog +24 QPageSetupDialog::~QPageSetupDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 QPageSetupDialog::exec +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI16QPageSetupDialog) +248 QPageSetupDialog::_ZThn8_N16QPageSetupDialogD1Ev +252 QPageSetupDialog::_ZThn8_N16QPageSetupDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPageSetupDialog + size=20 align=4 + base size=20 base align=4 +QPageSetupDialog (0xb46d27c0) 0 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 8u) + QAbstractPageSetupDialog (0xb46d2800) 0 + primary-for QPageSetupDialog (0xb46d27c0) + QDialog (0xb46d2840) 0 + primary-for QAbstractPageSetupDialog (0xb46d2800) + QWidget (0xb470d4b0) 0 + primary-for QDialog (0xb46d2840) + QObject (0xb4719438) 0 + primary-for QWidget (0xb470d4b0) + QPaintDevice (0xb4719474) 8 + vptr=((& QPageSetupDialog::_ZTV16QPageSetupDialog) + 248u) + +Vtable for QUnixPrintWidget +QUnixPrintWidget::_ZTV16QUnixPrintWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QUnixPrintWidget) +8 QUnixPrintWidget::metaObject +12 QUnixPrintWidget::qt_metacast +16 QUnixPrintWidget::qt_metacall +20 QUnixPrintWidget::~QUnixPrintWidget +24 QUnixPrintWidget::~QUnixPrintWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI16QUnixPrintWidget) +232 QUnixPrintWidget::_ZThn8_N16QUnixPrintWidgetD1Ev +236 QUnixPrintWidget::_ZThn8_N16QUnixPrintWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUnixPrintWidget + size=24 align=4 + base size=24 base align=4 +QUnixPrintWidget (0xb46d2b00) 0 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 8u) + QWidget (0xb47239b0) 0 + primary-for QUnixPrintWidget (0xb46d2b00) + QObject (0xb472e078) 0 + primary-for QWidget (0xb47239b0) + QPaintDevice (0xb472e0b4) 8 + vptr=((& QUnixPrintWidget::_ZTV16QUnixPrintWidget) + 232u) + +Vtable for QPrintDialog +QPrintDialog::_ZTV12QPrintDialog: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPrintDialog) +8 QPrintDialog::metaObject +12 QPrintDialog::qt_metacast +16 QPrintDialog::qt_metacall +20 QPrintDialog::~QPrintDialog +24 QPrintDialog::~QPrintDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QPrintDialog::accept +232 QDialog::reject +236 QPrintDialog::exec +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI12QPrintDialog) +248 QPrintDialog::_ZThn8_N12QPrintDialogD1Ev +252 QPrintDialog::_ZThn8_N12QPrintDialogD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintDialog + size=20 align=4 + base size=20 base align=4 +QPrintDialog (0xb46d2d40) 0 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 8u) + QAbstractPrintDialog (0xb46d2d80) 0 + primary-for QPrintDialog (0xb46d2d40) + QDialog (0xb46d2dc0) 0 + primary-for QAbstractPrintDialog (0xb46d2d80) + QWidget (0xb4731910) 0 + primary-for QDialog (0xb46d2dc0) + QObject (0xb472e870) 0 + primary-for QWidget (0xb4731910) + QPaintDevice (0xb472e8ac) 8 + vptr=((& QPrintDialog::_ZTV12QPrintDialog) + 248u) + +Vtable for QPrintPreviewDialog +QPrintPreviewDialog::_ZTV19QPrintPreviewDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +8 QPrintPreviewDialog::metaObject +12 QPrintPreviewDialog::qt_metacast +16 QPrintPreviewDialog::qt_metacall +20 QPrintPreviewDialog::~QPrintPreviewDialog +24 QPrintPreviewDialog::~QPrintPreviewDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QPrintPreviewDialog::setVisible +64 QDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDialog::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI19QPrintPreviewDialog) +244 QPrintPreviewDialog::_ZThn8_N19QPrintPreviewDialogD1Ev +248 QPrintPreviewDialog::_ZThn8_N19QPrintPreviewDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewDialog + size=24 align=4 + base size=24 base align=4 +QPrintPreviewDialog (0xb4743080) 0 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 8u) + QDialog (0xb47430c0) 0 + primary-for QPrintPreviewDialog (0xb4743080) + QWidget (0xb473acd0) 0 + primary-for QDialog (0xb47430c0) + QObject (0xb47421e0) 0 + primary-for QWidget (0xb473acd0) + QPaintDevice (0xb474221c) 8 + vptr=((& QPrintPreviewDialog::_ZTV19QPrintPreviewDialog) + 244u) + +Vtable for QProgressDialog +QProgressDialog::_ZTV15QProgressDialog: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QProgressDialog) +8 QProgressDialog::metaObject +12 QProgressDialog::qt_metacast +16 QProgressDialog::qt_metacall +20 QProgressDialog::~QProgressDialog +24 QProgressDialog::~QProgressDialog +28 QWidget::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QDialog::setVisible +64 QProgressDialog::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QProgressDialog::resizeEvent +136 QProgressDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QProgressDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QProgressDialog::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDialog::done +228 QDialog::accept +232 QDialog::reject +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI15QProgressDialog) +244 QProgressDialog::_ZThn8_N15QProgressDialogD1Ev +248 QProgressDialog::_ZThn8_N15QProgressDialogD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressDialog + size=20 align=4 + base size=20 base align=4 +QProgressDialog (0xb4743380) 0 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 8u) + QDialog (0xb47433c0) 0 + primary-for QProgressDialog (0xb4743380) + QWidget (0xb4752280) 0 + primary-for QDialog (0xb47433c0) + QObject (0xb4742c6c) 0 + primary-for QWidget (0xb4752280) + QPaintDevice (0xb4742ca8) 8 + vptr=((& QProgressDialog::_ZTV15QProgressDialog) + 244u) + +Vtable for QWizard +QWizard::_ZTV7QWizard: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QWizard) +8 QWizard::metaObject +12 QWizard::qt_metacast +16 QWizard::qt_metacall +20 QWizard::~QWizard +24 QWizard::~QWizard +28 QWizard::event +32 QDialog::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWizard::setVisible +64 QWizard::sizeHint +68 QDialog::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QDialog::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWizard::paintEvent +128 QWidget::moveEvent +132 QWizard::resizeEvent +136 QDialog::closeEvent +140 QDialog::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QDialog::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QWizard::done +228 QDialog::accept +232 QDialog::reject +236 QWizard::validateCurrentPage +240 QWizard::nextId +244 QWizard::initializePage +248 QWizard::cleanupPage +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI7QWizard) +260 QWizard::_ZThn8_N7QWizardD1Ev +264 QWizard::_ZThn8_N7QWizardD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizard + size=20 align=4 + base size=20 base align=4 +QWizard (0xb4743680) 0 + vptr=((& QWizard::_ZTV7QWizard) + 8u) + QDialog (0xb47436c0) 0 + primary-for QWizard (0xb4743680) + QWidget (0xb475db40) 0 + primary-for QDialog (0xb47436c0) + QObject (0xb475b924) 0 + primary-for QWidget (0xb475db40) + QPaintDevice (0xb475b960) 8 + vptr=((& QWizard::_ZTV7QWizard) + 260u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb476dca8) 0 + +Vtable for QWizardPage +QWizardPage::_ZTV11QWizardPage: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWizardPage) +8 QWizardPage::metaObject +12 QWizardPage::qt_metacast +16 QWizardPage::qt_metacall +20 QWizardPage::~QWizardPage +24 QWizardPage::~QWizardPage +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QWizardPage::initializePage +228 QWizardPage::cleanupPage +232 QWizardPage::validatePage +236 QWizardPage::isComplete +240 QWizardPage::nextId +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI11QWizardPage) +252 QWizardPage::_ZThn8_N11QWizardPageD1Ev +256 QWizardPage::_ZThn8_N11QWizardPageD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWizardPage + size=20 align=4 + base size=20 base align=4 +QWizardPage (0xb4743a40) 0 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 8u) + QWidget (0xb47839b0) 0 + primary-for QWizardPage (0xb4743a40) + QObject (0xb4784834) 0 + primary-for QWidget (0xb47839b0) + QPaintDevice (0xb4784870) 8 + vptr=((& QWizardPage::_ZTV11QWizardPage) + 252u) + +Vtable for QGraphicsItem +QGraphicsItem::_ZTV13QGraphicsItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QGraphicsItem) +8 QGraphicsItem::~QGraphicsItem +12 QGraphicsItem::~QGraphicsItem +16 QGraphicsItem::advance +20 __cxa_pure_virtual +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsItem::isObscuredBy +44 QGraphicsItem::opaqueArea +48 __cxa_pure_virtual +52 QGraphicsItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QGraphicsItem + size=8 align=4 + base size=8 base align=4 +QGraphicsItem (0xb479f564) 0 + vptr=((& QGraphicsItem::_ZTV13QGraphicsItem) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb47c5d5c) 0 + +Vtable for QAbstractGraphicsShapeItem +QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractGraphicsShapeItem) +8 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +12 QAbstractGraphicsShapeItem::~QAbstractGraphicsShapeItem +16 QGraphicsItem::advance +20 __cxa_pure_virtual +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QAbstractGraphicsShapeItem::isObscuredBy +44 QAbstractGraphicsShapeItem::opaqueArea +48 __cxa_pure_virtual +52 QGraphicsItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QAbstractGraphicsShapeItem + size=8 align=4 + base size=8 base align=4 +QAbstractGraphicsShapeItem (0xb45dc400) 0 + vptr=((& QAbstractGraphicsShapeItem::_ZTV26QAbstractGraphicsShapeItem) + 8u) + QGraphicsItem (0xb45e2e10) 0 + primary-for QAbstractGraphicsShapeItem (0xb45dc400) + +Vtable for QGraphicsPathItem +QGraphicsPathItem::_ZTV17QGraphicsPathItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsPathItem) +8 QGraphicsPathItem::~QGraphicsPathItem +12 QGraphicsPathItem::~QGraphicsPathItem +16 QGraphicsItem::advance +20 QGraphicsPathItem::boundingRect +24 QGraphicsPathItem::shape +28 QGraphicsPathItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPathItem::isObscuredBy +44 QGraphicsPathItem::opaqueArea +48 QGraphicsPathItem::paint +52 QGraphicsPathItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPathItem::supportsExtension +148 QGraphicsPathItem::setExtension +152 QGraphicsPathItem::extension + +Class QGraphicsPathItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPathItem (0xb45dc500) 0 + vptr=((& QGraphicsPathItem::_ZTV17QGraphicsPathItem) + 8u) + QAbstractGraphicsShapeItem (0xb45dc540) 0 + primary-for QGraphicsPathItem (0xb45dc500) + QGraphicsItem (0xb45ef528) 0 + primary-for QAbstractGraphicsShapeItem (0xb45dc540) + +Vtable for QGraphicsRectItem +QGraphicsRectItem::_ZTV17QGraphicsRectItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsRectItem) +8 QGraphicsRectItem::~QGraphicsRectItem +12 QGraphicsRectItem::~QGraphicsRectItem +16 QGraphicsItem::advance +20 QGraphicsRectItem::boundingRect +24 QGraphicsRectItem::shape +28 QGraphicsRectItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsRectItem::isObscuredBy +44 QGraphicsRectItem::opaqueArea +48 QGraphicsRectItem::paint +52 QGraphicsRectItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsRectItem::supportsExtension +148 QGraphicsRectItem::setExtension +152 QGraphicsRectItem::extension + +Class QGraphicsRectItem + size=8 align=4 + base size=8 base align=4 +QGraphicsRectItem (0xb45dc640) 0 + vptr=((& QGraphicsRectItem::_ZTV17QGraphicsRectItem) + 8u) + QAbstractGraphicsShapeItem (0xb45dc680) 0 + primary-for QGraphicsRectItem (0xb45dc640) + QGraphicsItem (0xb45efce4) 0 + primary-for QAbstractGraphicsShapeItem (0xb45dc680) + +Vtable for QGraphicsEllipseItem +QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsEllipseItem) +8 QGraphicsEllipseItem::~QGraphicsEllipseItem +12 QGraphicsEllipseItem::~QGraphicsEllipseItem +16 QGraphicsItem::advance +20 QGraphicsEllipseItem::boundingRect +24 QGraphicsEllipseItem::shape +28 QGraphicsEllipseItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsEllipseItem::isObscuredBy +44 QGraphicsEllipseItem::opaqueArea +48 QGraphicsEllipseItem::paint +52 QGraphicsEllipseItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsEllipseItem::supportsExtension +148 QGraphicsEllipseItem::setExtension +152 QGraphicsEllipseItem::extension + +Class QGraphicsEllipseItem + size=8 align=4 + base size=8 base align=4 +QGraphicsEllipseItem (0xb45dc7c0) 0 + vptr=((& QGraphicsEllipseItem::_ZTV20QGraphicsEllipseItem) + 8u) + QAbstractGraphicsShapeItem (0xb45dc800) 0 + primary-for QGraphicsEllipseItem (0xb45dc7c0) + QGraphicsItem (0xb4600618) 0 + primary-for QAbstractGraphicsShapeItem (0xb45dc800) + +Vtable for QGraphicsPolygonItem +QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsPolygonItem) +8 QGraphicsPolygonItem::~QGraphicsPolygonItem +12 QGraphicsPolygonItem::~QGraphicsPolygonItem +16 QGraphicsItem::advance +20 QGraphicsPolygonItem::boundingRect +24 QGraphicsPolygonItem::shape +28 QGraphicsPolygonItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPolygonItem::isObscuredBy +44 QGraphicsPolygonItem::opaqueArea +48 QGraphicsPolygonItem::paint +52 QGraphicsPolygonItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPolygonItem::supportsExtension +148 QGraphicsPolygonItem::setExtension +152 QGraphicsPolygonItem::extension + +Class QGraphicsPolygonItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPolygonItem (0xb45dc940) 0 + vptr=((& QGraphicsPolygonItem::_ZTV20QGraphicsPolygonItem) + 8u) + QAbstractGraphicsShapeItem (0xb45dc980) 0 + primary-for QGraphicsPolygonItem (0xb45dc940) + QGraphicsItem (0xb4600fb4) 0 + primary-for QAbstractGraphicsShapeItem (0xb45dc980) + +Vtable for QGraphicsLineItem +QGraphicsLineItem::_ZTV17QGraphicsLineItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsLineItem) +8 QGraphicsLineItem::~QGraphicsLineItem +12 QGraphicsLineItem::~QGraphicsLineItem +16 QGraphicsItem::advance +20 QGraphicsLineItem::boundingRect +24 QGraphicsLineItem::shape +28 QGraphicsLineItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsLineItem::isObscuredBy +44 QGraphicsLineItem::opaqueArea +48 QGraphicsLineItem::paint +52 QGraphicsLineItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsLineItem::supportsExtension +148 QGraphicsLineItem::setExtension +152 QGraphicsLineItem::extension + +Class QGraphicsLineItem + size=8 align=4 + base size=8 base align=4 +QGraphicsLineItem (0xb45dca80) 0 + vptr=((& QGraphicsLineItem::_ZTV17QGraphicsLineItem) + 8u) + QGraphicsItem (0xb4611708) 0 + primary-for QGraphicsLineItem (0xb45dca80) + +Vtable for QGraphicsPixmapItem +QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsPixmapItem) +8 QGraphicsPixmapItem::~QGraphicsPixmapItem +12 QGraphicsPixmapItem::~QGraphicsPixmapItem +16 QGraphicsItem::advance +20 QGraphicsPixmapItem::boundingRect +24 QGraphicsPixmapItem::shape +28 QGraphicsPixmapItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsPixmapItem::isObscuredBy +44 QGraphicsPixmapItem::opaqueArea +48 QGraphicsPixmapItem::paint +52 QGraphicsPixmapItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsPixmapItem::supportsExtension +148 QGraphicsPixmapItem::setExtension +152 QGraphicsPixmapItem::extension + +Class QGraphicsPixmapItem + size=8 align=4 + base size=8 base align=4 +QGraphicsPixmapItem (0xb45dcbc0) 0 + vptr=((& QGraphicsPixmapItem::_ZTV19QGraphicsPixmapItem) + 8u) + QGraphicsItem (0xb462403c) 0 + primary-for QGraphicsPixmapItem (0xb45dcbc0) + +Vtable for QGraphicsTextItem +QGraphicsTextItem::_ZTV17QGraphicsTextItem: 82u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QGraphicsTextItem) +8 QGraphicsTextItem::metaObject +12 QGraphicsTextItem::qt_metacast +16 QGraphicsTextItem::qt_metacall +20 QGraphicsTextItem::~QGraphicsTextItem +24 QGraphicsTextItem::~QGraphicsTextItem +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsTextItem::boundingRect +60 QGraphicsTextItem::shape +64 QGraphicsTextItem::contains +68 QGraphicsTextItem::paint +72 QGraphicsTextItem::isObscuredBy +76 QGraphicsTextItem::opaqueArea +80 QGraphicsTextItem::type +84 QGraphicsTextItem::sceneEvent +88 QGraphicsTextItem::mousePressEvent +92 QGraphicsTextItem::mouseMoveEvent +96 QGraphicsTextItem::mouseReleaseEvent +100 QGraphicsTextItem::mouseDoubleClickEvent +104 QGraphicsTextItem::contextMenuEvent +108 QGraphicsTextItem::keyPressEvent +112 QGraphicsTextItem::keyReleaseEvent +116 QGraphicsTextItem::focusInEvent +120 QGraphicsTextItem::focusOutEvent +124 QGraphicsTextItem::dragEnterEvent +128 QGraphicsTextItem::dragLeaveEvent +132 QGraphicsTextItem::dragMoveEvent +136 QGraphicsTextItem::dropEvent +140 QGraphicsTextItem::inputMethodEvent +144 QGraphicsTextItem::hoverEnterEvent +148 QGraphicsTextItem::hoverMoveEvent +152 QGraphicsTextItem::hoverLeaveEvent +156 QGraphicsTextItem::inputMethodQuery +160 QGraphicsTextItem::supportsExtension +164 QGraphicsTextItem::setExtension +168 QGraphicsTextItem::extension +172 (int (*)(...))-0x000000008 +176 (int (*)(...))(& _ZTI17QGraphicsTextItem) +180 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItemD1Ev +184 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItemD0Ev +188 QGraphicsItem::advance +192 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem12boundingRectEv +196 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem5shapeEv +200 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem8containsERK7QPointF +204 QGraphicsItem::collidesWithItem +208 QGraphicsItem::collidesWithPath +212 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem12isObscuredByEPK13QGraphicsItem +216 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem10opaqueAreaEv +220 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +224 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem4typeEv +228 QGraphicsItem::sceneEventFilter +232 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem10sceneEventEP6QEvent +236 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem16contextMenuEventEP30QGraphicsSceneContextMenuEvent +240 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14dragEnterEventEP27QGraphicsSceneDragDropEvent +244 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14dragLeaveEventEP27QGraphicsSceneDragDropEvent +248 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13dragMoveEventEP27QGraphicsSceneDragDropEvent +252 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem9dropEventEP27QGraphicsSceneDragDropEvent +256 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem12focusInEventEP11QFocusEvent +260 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13focusOutEventEP11QFocusEvent +264 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15hoverEnterEventEP24QGraphicsSceneHoverEvent +268 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14hoverMoveEventEP24QGraphicsSceneHoverEvent +272 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15hoverLeaveEventEP24QGraphicsSceneHoverEvent +276 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem13keyPressEventEP9QKeyEvent +280 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15keyReleaseEventEP9QKeyEvent +284 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem15mousePressEventEP24QGraphicsSceneMouseEvent +288 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem14mouseMoveEventEP24QGraphicsSceneMouseEvent +292 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem17mouseReleaseEventEP24QGraphicsSceneMouseEvent +296 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +300 QGraphicsItem::wheelEvent +304 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem16inputMethodEventEP17QInputMethodEvent +308 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem16inputMethodQueryEN2Qt16InputMethodQueryE +312 QGraphicsItem::itemChange +316 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem17supportsExtensionEN13QGraphicsItem9ExtensionE +320 QGraphicsTextItem::_ZThn8_N17QGraphicsTextItem12setExtensionEN13QGraphicsItem9ExtensionERK8QVariant +324 QGraphicsTextItem::_ZThn8_NK17QGraphicsTextItem9extensionERK8QVariant + +Class QGraphicsTextItem + size=20 align=4 + base size=20 base align=4 +QGraphicsTextItem (0xb462f0f0) 0 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 8u) + QObject (0xb462499c) 0 + primary-for QGraphicsTextItem (0xb462f0f0) + QGraphicsItem (0xb46249d8) 8 + vptr=((& QGraphicsTextItem::_ZTV17QGraphicsTextItem) + 180u) + +Vtable for QGraphicsSimpleTextItem +QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSimpleTextItem) +8 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +12 QGraphicsSimpleTextItem::~QGraphicsSimpleTextItem +16 QGraphicsItem::advance +20 QGraphicsSimpleTextItem::boundingRect +24 QGraphicsSimpleTextItem::shape +28 QGraphicsSimpleTextItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsSimpleTextItem::isObscuredBy +44 QGraphicsSimpleTextItem::opaqueArea +48 QGraphicsSimpleTextItem::paint +52 QGraphicsSimpleTextItem::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsSimpleTextItem::supportsExtension +148 QGraphicsSimpleTextItem::setExtension +152 QGraphicsSimpleTextItem::extension + +Class QGraphicsSimpleTextItem + size=8 align=4 + base size=8 base align=4 +QGraphicsSimpleTextItem (0xb45dcf00) 0 + vptr=((& QGraphicsSimpleTextItem::_ZTV23QGraphicsSimpleTextItem) + 8u) + QAbstractGraphicsShapeItem (0xb45dcf40) 0 + primary-for QGraphicsSimpleTextItem (0xb45dcf00) + QGraphicsItem (0xb463bbf4) 0 + primary-for QAbstractGraphicsShapeItem (0xb45dcf40) + +Vtable for QGraphicsItemGroup +QGraphicsItemGroup::_ZTV18QGraphicsItemGroup: 39u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QGraphicsItemGroup) +8 QGraphicsItemGroup::~QGraphicsItemGroup +12 QGraphicsItemGroup::~QGraphicsItemGroup +16 QGraphicsItem::advance +20 QGraphicsItemGroup::boundingRect +24 QGraphicsItem::shape +28 QGraphicsItem::contains +32 QGraphicsItem::collidesWithItem +36 QGraphicsItem::collidesWithPath +40 QGraphicsItemGroup::isObscuredBy +44 QGraphicsItemGroup::opaqueArea +48 QGraphicsItemGroup::paint +52 QGraphicsItemGroup::type +56 QGraphicsItem::sceneEventFilter +60 QGraphicsItem::sceneEvent +64 QGraphicsItem::contextMenuEvent +68 QGraphicsItem::dragEnterEvent +72 QGraphicsItem::dragLeaveEvent +76 QGraphicsItem::dragMoveEvent +80 QGraphicsItem::dropEvent +84 QGraphicsItem::focusInEvent +88 QGraphicsItem::focusOutEvent +92 QGraphicsItem::hoverEnterEvent +96 QGraphicsItem::hoverMoveEvent +100 QGraphicsItem::hoverLeaveEvent +104 QGraphicsItem::keyPressEvent +108 QGraphicsItem::keyReleaseEvent +112 QGraphicsItem::mousePressEvent +116 QGraphicsItem::mouseMoveEvent +120 QGraphicsItem::mouseReleaseEvent +124 QGraphicsItem::mouseDoubleClickEvent +128 QGraphicsItem::wheelEvent +132 QGraphicsItem::inputMethodEvent +136 QGraphicsItem::inputMethodQuery +140 QGraphicsItem::itemChange +144 QGraphicsItem::supportsExtension +148 QGraphicsItem::setExtension +152 QGraphicsItem::extension + +Class QGraphicsItemGroup + size=8 align=4 + base size=8 base align=4 +QGraphicsItemGroup (0xb464a040) 0 + vptr=((& QGraphicsItemGroup::_ZTV18QGraphicsItemGroup) + 8u) + QGraphicsItem (0xb46443c0) 0 + primary-for QGraphicsItemGroup (0xb464a040) + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4644c30) 0 empty + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4644dd4) 0 empty + +Vtable for QGraphicsLayoutItem +QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsLayoutItem) +8 QGraphicsLayoutItem::~QGraphicsLayoutItem +12 QGraphicsLayoutItem::~QGraphicsLayoutItem +16 QGraphicsLayoutItem::setGeometry +20 QGraphicsLayoutItem::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 __cxa_pure_virtual + +Class QGraphicsLayoutItem + size=8 align=4 + base size=8 base align=4 +QGraphicsLayoutItem (0xb4644f78) 0 + vptr=((& QGraphicsLayoutItem::_ZTV19QGraphicsLayoutItem) + 8u) + +Vtable for QGraphicsLayout +QGraphicsLayout::_ZTV15QGraphicsLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QGraphicsLayout) +8 QGraphicsLayout::~QGraphicsLayout +12 QGraphicsLayout::~QGraphicsLayout +16 QGraphicsLayoutItem::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 __cxa_pure_virtual +32 QGraphicsLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual + +Class QGraphicsLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsLayout (0xb464a7c0) 0 + vptr=((& QGraphicsLayout::_ZTV15QGraphicsLayout) + 8u) + QGraphicsLayoutItem (0xb4658d98) 0 + primary-for QGraphicsLayout (0xb464a7c0) + +Vtable for QGraphicsGridLayout +QGraphicsGridLayout::_ZTV19QGraphicsGridLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsGridLayout) +8 QGraphicsGridLayout::~QGraphicsGridLayout +12 QGraphicsGridLayout::~QGraphicsGridLayout +16 QGraphicsGridLayout::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 QGraphicsGridLayout::sizeHint +32 QGraphicsGridLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 QGraphicsGridLayout::count +44 QGraphicsGridLayout::itemAt +48 QGraphicsGridLayout::removeAt + +Class QGraphicsGridLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsGridLayout (0xb464a8c0) 0 + vptr=((& QGraphicsGridLayout::_ZTV19QGraphicsGridLayout) + 8u) + QGraphicsLayout (0xb464a900) 0 + primary-for QGraphicsGridLayout (0xb464a8c0) + QGraphicsLayoutItem (0xb466c4b0) 0 + primary-for QGraphicsLayout (0xb464a900) + +Vtable for QGraphicsItemAnimation +QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QGraphicsItemAnimation) +8 QGraphicsItemAnimation::metaObject +12 QGraphicsItemAnimation::qt_metacast +16 QGraphicsItemAnimation::qt_metacall +20 QGraphicsItemAnimation::~QGraphicsItemAnimation +24 QGraphicsItemAnimation::~QGraphicsItemAnimation +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsItemAnimation::beforeAnimationStep +60 QGraphicsItemAnimation::afterAnimationStep + +Class QGraphicsItemAnimation + size=12 align=4 + base size=12 base align=4 +QGraphicsItemAnimation (0xb464aa40) 0 + vptr=((& QGraphicsItemAnimation::_ZTV22QGraphicsItemAnimation) + 8u) + QObject (0xb466ce88) 0 + primary-for QGraphicsItemAnimation (0xb464aa40) + +Vtable for QGraphicsLinearLayout +QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout: 13u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QGraphicsLinearLayout) +8 QGraphicsLinearLayout::~QGraphicsLinearLayout +12 QGraphicsLinearLayout::~QGraphicsLinearLayout +16 QGraphicsLinearLayout::setGeometry +20 QGraphicsLayout::getContentsMargins +24 QGraphicsLayoutItem::updateGeometry +28 QGraphicsLinearLayout::sizeHint +32 QGraphicsLinearLayout::invalidate +36 QGraphicsLayout::widgetEvent +40 QGraphicsLinearLayout::count +44 QGraphicsLinearLayout::itemAt +48 QGraphicsLinearLayout::removeAt + +Class QGraphicsLinearLayout + size=8 align=4 + base size=8 base align=4 +QGraphicsLinearLayout (0xb464ac80) 0 + vptr=((& QGraphicsLinearLayout::_ZTV21QGraphicsLinearLayout) + 8u) + QGraphicsLayout (0xb464acc0) 0 + primary-for QGraphicsLinearLayout (0xb464ac80) + QGraphicsLayoutItem (0xb46877f8) 0 + primary-for QGraphicsLayout (0xb464acc0) + +Vtable for QGraphicsWidget +QGraphicsWidget::_ZTV15QGraphicsWidget: 92u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QGraphicsWidget) +8 QGraphicsWidget::metaObject +12 QGraphicsWidget::qt_metacast +16 QGraphicsWidget::qt_metacall +20 QGraphicsWidget::~QGraphicsWidget +24 QGraphicsWidget::~QGraphicsWidget +28 QGraphicsWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsWidget::setGeometry +60 QGraphicsWidget::getContentsMargins +64 QGraphicsWidget::type +68 QGraphicsWidget::paint +72 QGraphicsWidget::paintWindowFrame +76 QGraphicsWidget::boundingRect +80 QGraphicsWidget::shape +84 QGraphicsWidget::initStyleOption +88 QGraphicsWidget::sizeHint +92 QGraphicsWidget::updateGeometry +96 QGraphicsWidget::itemChange +100 QGraphicsWidget::propertyChange +104 QGraphicsWidget::sceneEvent +108 QGraphicsWidget::windowFrameEvent +112 QGraphicsWidget::windowFrameSectionAt +116 QGraphicsWidget::changeEvent +120 QGraphicsWidget::closeEvent +124 QGraphicsWidget::focusInEvent +128 QGraphicsWidget::focusNextPrevChild +132 QGraphicsWidget::focusOutEvent +136 QGraphicsWidget::hideEvent +140 QGraphicsWidget::moveEvent +144 QGraphicsWidget::polishEvent +148 QGraphicsWidget::resizeEvent +152 QGraphicsWidget::showEvent +156 QGraphicsWidget::hoverMoveEvent +160 QGraphicsWidget::hoverLeaveEvent +164 QGraphicsWidget::grabMouseEvent +168 QGraphicsWidget::ungrabMouseEvent +172 QGraphicsWidget::grabKeyboardEvent +176 QGraphicsWidget::ungrabKeyboardEvent +180 (int (*)(...))-0x000000008 +184 (int (*)(...))(& _ZTI15QGraphicsWidget) +188 QGraphicsWidget::_ZThn8_N15QGraphicsWidgetD1Ev +192 QGraphicsWidget::_ZThn8_N15QGraphicsWidgetD0Ev +196 QGraphicsItem::advance +200 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget12boundingRectEv +204 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget5shapeEv +208 QGraphicsItem::contains +212 QGraphicsItem::collidesWithItem +216 QGraphicsItem::collidesWithPath +220 QGraphicsItem::isObscuredBy +224 QGraphicsItem::opaqueArea +228 QGraphicsWidget::_ZThn8_N15QGraphicsWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +232 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget4typeEv +236 QGraphicsItem::sceneEventFilter +240 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10sceneEventEP6QEvent +244 QGraphicsItem::contextMenuEvent +248 QGraphicsItem::dragEnterEvent +252 QGraphicsItem::dragLeaveEvent +256 QGraphicsItem::dragMoveEvent +260 QGraphicsItem::dropEvent +264 QGraphicsWidget::_ZThn8_N15QGraphicsWidget12focusInEventEP11QFocusEvent +268 QGraphicsWidget::_ZThn8_N15QGraphicsWidget13focusOutEventEP11QFocusEvent +272 QGraphicsItem::hoverEnterEvent +276 QGraphicsWidget::_ZThn8_N15QGraphicsWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +280 QGraphicsWidget::_ZThn8_N15QGraphicsWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +284 QGraphicsItem::keyPressEvent +288 QGraphicsItem::keyReleaseEvent +292 QGraphicsItem::mousePressEvent +296 QGraphicsItem::mouseMoveEvent +300 QGraphicsItem::mouseReleaseEvent +304 QGraphicsItem::mouseDoubleClickEvent +308 QGraphicsItem::wheelEvent +312 QGraphicsItem::inputMethodEvent +316 QGraphicsItem::inputMethodQuery +320 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +324 QGraphicsItem::supportsExtension +328 QGraphicsItem::setExtension +332 QGraphicsItem::extension +336 (int (*)(...))-0x000000010 +340 (int (*)(...))(& _ZTI15QGraphicsWidget) +344 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD1Ev +348 QGraphicsWidget::_ZThn16_N15QGraphicsWidgetD0Ev +352 QGraphicsWidget::_ZThn16_N15QGraphicsWidget11setGeometryERK6QRectF +356 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +360 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14updateGeometryEv +364 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsWidget + size=24 align=4 + base size=24 base align=4 +QGraphicsWidget (0xb46992d0) 0 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 8u) + QObject (0xb469a384) 0 + primary-for QGraphicsWidget (0xb46992d0) + QGraphicsItem (0xb469a3c0) 8 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 188u) + QGraphicsLayoutItem (0xb469a3fc) 16 + vptr=((& QGraphicsWidget::_ZTV15QGraphicsWidget) + 344u) + +Vtable for QGraphicsProxyWidget +QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget: 101u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +8 QGraphicsProxyWidget::metaObject +12 QGraphicsProxyWidget::qt_metacast +16 QGraphicsProxyWidget::qt_metacall +20 QGraphicsProxyWidget::~QGraphicsProxyWidget +24 QGraphicsProxyWidget::~QGraphicsProxyWidget +28 QGraphicsProxyWidget::event +32 QGraphicsProxyWidget::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsProxyWidget::setGeometry +60 QGraphicsWidget::getContentsMargins +64 QGraphicsProxyWidget::type +68 QGraphicsProxyWidget::paint +72 QGraphicsWidget::paintWindowFrame +76 QGraphicsWidget::boundingRect +80 QGraphicsWidget::shape +84 QGraphicsWidget::initStyleOption +88 QGraphicsProxyWidget::sizeHint +92 QGraphicsWidget::updateGeometry +96 QGraphicsProxyWidget::itemChange +100 QGraphicsWidget::propertyChange +104 QGraphicsWidget::sceneEvent +108 QGraphicsWidget::windowFrameEvent +112 QGraphicsWidget::windowFrameSectionAt +116 QGraphicsWidget::changeEvent +120 QGraphicsWidget::closeEvent +124 QGraphicsProxyWidget::focusInEvent +128 QGraphicsProxyWidget::focusNextPrevChild +132 QGraphicsProxyWidget::focusOutEvent +136 QGraphicsProxyWidget::hideEvent +140 QGraphicsWidget::moveEvent +144 QGraphicsWidget::polishEvent +148 QGraphicsProxyWidget::resizeEvent +152 QGraphicsProxyWidget::showEvent +156 QGraphicsProxyWidget::hoverMoveEvent +160 QGraphicsProxyWidget::hoverLeaveEvent +164 QGraphicsProxyWidget::grabMouseEvent +168 QGraphicsProxyWidget::ungrabMouseEvent +172 QGraphicsWidget::grabKeyboardEvent +176 QGraphicsWidget::ungrabKeyboardEvent +180 QGraphicsProxyWidget::contextMenuEvent +184 QGraphicsProxyWidget::hoverEnterEvent +188 QGraphicsProxyWidget::mouseMoveEvent +192 QGraphicsProxyWidget::mousePressEvent +196 QGraphicsProxyWidget::mouseReleaseEvent +200 QGraphicsProxyWidget::mouseDoubleClickEvent +204 QGraphicsProxyWidget::wheelEvent +208 QGraphicsProxyWidget::keyPressEvent +212 QGraphicsProxyWidget::keyReleaseEvent +216 (int (*)(...))-0x000000008 +220 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +224 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidgetD1Ev +228 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidgetD0Ev +232 QGraphicsItem::advance +236 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget12boundingRectEv +240 QGraphicsWidget::_ZThn8_NK15QGraphicsWidget5shapeEv +244 QGraphicsItem::contains +248 QGraphicsItem::collidesWithItem +252 QGraphicsItem::collidesWithPath +256 QGraphicsItem::isObscuredBy +260 QGraphicsItem::opaqueArea +264 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +268 QGraphicsProxyWidget::_ZThn8_NK20QGraphicsProxyWidget4typeEv +272 QGraphicsItem::sceneEventFilter +276 QGraphicsWidget::_ZThn8_N15QGraphicsWidget10sceneEventEP6QEvent +280 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget16contextMenuEventEP30QGraphicsSceneContextMenuEvent +284 QGraphicsItem::dragEnterEvent +288 QGraphicsItem::dragLeaveEvent +292 QGraphicsItem::dragMoveEvent +296 QGraphicsItem::dropEvent +300 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget12focusInEventEP11QFocusEvent +304 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget13focusOutEventEP11QFocusEvent +308 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15hoverEnterEventEP24QGraphicsSceneHoverEvent +312 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget14hoverMoveEventEP24QGraphicsSceneHoverEvent +316 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15hoverLeaveEventEP24QGraphicsSceneHoverEvent +320 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget13keyPressEventEP9QKeyEvent +324 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15keyReleaseEventEP9QKeyEvent +328 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget15mousePressEventEP24QGraphicsSceneMouseEvent +332 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget14mouseMoveEventEP24QGraphicsSceneMouseEvent +336 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget17mouseReleaseEventEP24QGraphicsSceneMouseEvent +340 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget21mouseDoubleClickEventEP24QGraphicsSceneMouseEvent +344 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget10wheelEventEP24QGraphicsSceneWheelEvent +348 QGraphicsItem::inputMethodEvent +352 QGraphicsItem::inputMethodQuery +356 QGraphicsProxyWidget::_ZThn8_N20QGraphicsProxyWidget10itemChangeEN13QGraphicsItem18GraphicsItemChangeERK8QVariant +360 QGraphicsItem::supportsExtension +364 QGraphicsItem::setExtension +368 QGraphicsItem::extension +372 (int (*)(...))-0x000000010 +376 (int (*)(...))(& _ZTI20QGraphicsProxyWidget) +380 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD1Ev +384 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidgetD0Ev +388 QGraphicsProxyWidget::_ZThn16_N20QGraphicsProxyWidget11setGeometryERK6QRectF +392 QGraphicsWidget::_ZThn16_NK15QGraphicsWidget18getContentsMarginsEPdS0_S0_S0_ +396 QGraphicsWidget::_ZThn16_N15QGraphicsWidget14updateGeometryEv +400 QGraphicsProxyWidget::_ZThn16_NK20QGraphicsProxyWidget8sizeHintEN2Qt8SizeHintERK6QSizeF + +Class QGraphicsProxyWidget + size=24 align=4 + base size=24 base align=4 +QGraphicsProxyWidget (0xb46b5180) 0 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 8u) + QGraphicsWidget (0xb46ac870) 0 + primary-for QGraphicsProxyWidget (0xb46b5180) + QObject (0xb46b1b7c) 0 + primary-for QGraphicsWidget (0xb46ac870) + QGraphicsItem (0xb46b1bb8) 8 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 224u) + QGraphicsLayoutItem (0xb46b1bf4) 16 + vptr=((& QGraphicsProxyWidget::_ZTV20QGraphicsProxyWidget) + 380u) + +Class QPen + size=4 align=4 + base size=4 base align=4 +QPen (0xb44c3f3c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb44d1780) 0 empty + +Vtable for QGraphicsScene +QGraphicsScene::_ZTV14QGraphicsScene: 34u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QGraphicsScene) +8 QGraphicsScene::metaObject +12 QGraphicsScene::qt_metacast +16 QGraphicsScene::qt_metacall +20 QGraphicsScene::~QGraphicsScene +24 QGraphicsScene::~QGraphicsScene +28 QGraphicsScene::event +32 QGraphicsScene::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsScene::inputMethodQuery +60 QGraphicsScene::contextMenuEvent +64 QGraphicsScene::dragEnterEvent +68 QGraphicsScene::dragMoveEvent +72 QGraphicsScene::dragLeaveEvent +76 QGraphicsScene::dropEvent +80 QGraphicsScene::focusInEvent +84 QGraphicsScene::focusOutEvent +88 QGraphicsScene::helpEvent +92 QGraphicsScene::keyPressEvent +96 QGraphicsScene::keyReleaseEvent +100 QGraphicsScene::mousePressEvent +104 QGraphicsScene::mouseMoveEvent +108 QGraphicsScene::mouseReleaseEvent +112 QGraphicsScene::mouseDoubleClickEvent +116 QGraphicsScene::wheelEvent +120 QGraphicsScene::inputMethodEvent +124 QGraphicsScene::drawBackground +128 QGraphicsScene::drawForeground +132 QGraphicsScene::drawItems + +Class QGraphicsScene + size=8 align=4 + base size=8 base align=4 +QGraphicsScene (0xb46b56c0) 0 + vptr=((& QGraphicsScene::_ZTV14QGraphicsScene) + 8u) + QObject (0xb44d1a14) 0 + primary-for QGraphicsScene (0xb46b56c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb44f6744) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4508168) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb45080f0) 0 + +Vtable for QGraphicsSceneEvent +QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QGraphicsSceneEvent) +8 QGraphicsSceneEvent::~QGraphicsSceneEvent +12 QGraphicsSceneEvent::~QGraphicsSceneEvent + +Class QGraphicsSceneEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneEvent (0xb46b5d80) 0 + vptr=((& QGraphicsSceneEvent::_ZTV19QGraphicsSceneEvent) + 8u) + QEvent (0xb451f99c) 0 + primary-for QGraphicsSceneEvent (0xb46b5d80) + +Vtable for QGraphicsSceneMouseEvent +QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneMouseEvent) +8 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent +12 QGraphicsSceneMouseEvent::~QGraphicsSceneMouseEvent + +Class QGraphicsSceneMouseEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneMouseEvent (0xb46b5e80) 0 + vptr=((& QGraphicsSceneMouseEvent::_ZTV24QGraphicsSceneMouseEvent) + 8u) + QGraphicsSceneEvent (0xb46b5ec0) 0 + primary-for QGraphicsSceneMouseEvent (0xb46b5e80) + QEvent (0xb451fe4c) 0 + primary-for QGraphicsSceneEvent (0xb46b5ec0) + +Vtable for QGraphicsSceneWheelEvent +QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneWheelEvent) +8 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent +12 QGraphicsSceneWheelEvent::~QGraphicsSceneWheelEvent + +Class QGraphicsSceneWheelEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneWheelEvent (0xb46b5fc0) 0 + vptr=((& QGraphicsSceneWheelEvent::_ZTV24QGraphicsSceneWheelEvent) + 8u) + QGraphicsSceneEvent (0xb453c000) 0 + primary-for QGraphicsSceneWheelEvent (0xb46b5fc0) + QEvent (0xb453a21c) 0 + primary-for QGraphicsSceneEvent (0xb453c000) + +Vtable for QGraphicsSceneContextMenuEvent +QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI30QGraphicsSceneContextMenuEvent) +8 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent +12 QGraphicsSceneContextMenuEvent::~QGraphicsSceneContextMenuEvent + +Class QGraphicsSceneContextMenuEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneContextMenuEvent (0xb453c100) 0 + vptr=((& QGraphicsSceneContextMenuEvent::_ZTV30QGraphicsSceneContextMenuEvent) + 8u) + QGraphicsSceneEvent (0xb453c140) 0 + primary-for QGraphicsSceneContextMenuEvent (0xb453c100) + QEvent (0xb453a654) 0 + primary-for QGraphicsSceneEvent (0xb453c140) + +Vtable for QGraphicsSceneHoverEvent +QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QGraphicsSceneHoverEvent) +8 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent +12 QGraphicsSceneHoverEvent::~QGraphicsSceneHoverEvent + +Class QGraphicsSceneHoverEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneHoverEvent (0xb453c240) 0 + vptr=((& QGraphicsSceneHoverEvent::_ZTV24QGraphicsSceneHoverEvent) + 8u) + QGraphicsSceneEvent (0xb453c280) 0 + primary-for QGraphicsSceneHoverEvent (0xb453c240) + QEvent (0xb453ab7c) 0 + primary-for QGraphicsSceneEvent (0xb453c280) + +Vtable for QGraphicsSceneHelpEvent +QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSceneHelpEvent) +8 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent +12 QGraphicsSceneHelpEvent::~QGraphicsSceneHelpEvent + +Class QGraphicsSceneHelpEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneHelpEvent (0xb453c380) 0 + vptr=((& QGraphicsSceneHelpEvent::_ZTV23QGraphicsSceneHelpEvent) + 8u) + QGraphicsSceneEvent (0xb453c3c0) 0 + primary-for QGraphicsSceneHelpEvent (0xb453c380) + QEvent (0xb453afb4) 0 + primary-for QGraphicsSceneEvent (0xb453c3c0) + +Vtable for QGraphicsSceneDragDropEvent +QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QGraphicsSceneDragDropEvent) +8 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent +12 QGraphicsSceneDragDropEvent::~QGraphicsSceneDragDropEvent + +Class QGraphicsSceneDragDropEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneDragDropEvent (0xb453c4c0) 0 + vptr=((& QGraphicsSceneDragDropEvent::_ZTV27QGraphicsSceneDragDropEvent) + 8u) + QGraphicsSceneEvent (0xb453c500) 0 + primary-for QGraphicsSceneDragDropEvent (0xb453c4c0) + QEvent (0xb454b348) 0 + primary-for QGraphicsSceneEvent (0xb453c500) + +Vtable for QGraphicsSceneResizeEvent +QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI25QGraphicsSceneResizeEvent) +8 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent +12 QGraphicsSceneResizeEvent::~QGraphicsSceneResizeEvent + +Class QGraphicsSceneResizeEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneResizeEvent (0xb453c600) 0 + vptr=((& QGraphicsSceneResizeEvent::_ZTV25QGraphicsSceneResizeEvent) + 8u) + QGraphicsSceneEvent (0xb453c640) 0 + primary-for QGraphicsSceneResizeEvent (0xb453c600) + QEvent (0xb454b780) 0 + primary-for QGraphicsSceneEvent (0xb453c640) + +Vtable for QGraphicsSceneMoveEvent +QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QGraphicsSceneMoveEvent) +8 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent +12 QGraphicsSceneMoveEvent::~QGraphicsSceneMoveEvent + +Class QGraphicsSceneMoveEvent + size=16 align=4 + base size=16 base align=4 +QGraphicsSceneMoveEvent (0xb453c740) 0 + vptr=((& QGraphicsSceneMoveEvent::_ZTV23QGraphicsSceneMoveEvent) + 8u) + QGraphicsSceneEvent (0xb453c780) 0 + primary-for QGraphicsSceneMoveEvent (0xb453c740) + QEvent (0xb454bac8) 0 + primary-for QGraphicsSceneEvent (0xb453c780) + +Class QTextOption::Tab + size=16 align=4 + base size=14 base align=4 +QTextOption::Tab (0xb454be4c) 0 + +Class QTextOption + size=24 align=4 + base size=24 base align=4 +QTextOption (0xb454be10) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb456c4ec) 0 + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb457dac8) 0 empty + +Class QPainter + size=4 align=4 + base size=4 base align=4 +QPainter (0xb457ddd4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb45918ac) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb43f330c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb43f3294) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb43f3474) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb43f33fc) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb43f3bb8) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb43f3b40) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb43f3d20) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb43f3ca8) 0 + +Vtable for QAbstractScrollArea +QAbstractScrollArea::_ZTV19QAbstractScrollArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractScrollArea) +8 QAbstractScrollArea::metaObject +12 QAbstractScrollArea::qt_metacast +16 QAbstractScrollArea::qt_metacall +20 QAbstractScrollArea::~QAbstractScrollArea +24 QAbstractScrollArea::~QAbstractScrollArea +28 QAbstractScrollArea::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QAbstractScrollArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QAbstractScrollArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI19QAbstractScrollArea) +240 QAbstractScrollArea::_ZThn8_N19QAbstractScrollAreaD1Ev +244 QAbstractScrollArea::_ZThn8_N19QAbstractScrollAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractScrollArea + size=20 align=4 + base size=20 base align=4 +QAbstractScrollArea (0xb4436e40) 0 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 8u) + QFrame (0xb4436e80) 0 + primary-for QAbstractScrollArea (0xb4436e40) + QWidget (0xb4484320) 0 + primary-for QFrame (0xb4436e80) + QObject (0xb447f7f8) 0 + primary-for QWidget (0xb4484320) + QPaintDevice (0xb447f834) 8 + vptr=((& QAbstractScrollArea::_ZTV19QAbstractScrollArea) + 240u) + +Vtable for QScrollArea +QScrollArea::_ZTV11QScrollArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QScrollArea) +8 QScrollArea::metaObject +12 QScrollArea::qt_metacast +16 QScrollArea::qt_metacall +20 QScrollArea::~QScrollArea +24 QScrollArea::~QScrollArea +28 QScrollArea::event +32 QScrollArea::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QScrollArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QScrollArea::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QScrollArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI11QScrollArea) +240 QScrollArea::_ZThn8_N11QScrollAreaD1Ev +244 QScrollArea::_ZThn8_N11QScrollAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollArea + size=20 align=4 + base size=20 base align=4 +QScrollArea (0xb4494140) 0 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 8u) + QAbstractScrollArea (0xb4494180) 0 + primary-for QScrollArea (0xb4494140) + QFrame (0xb44941c0) 0 + primary-for QAbstractScrollArea (0xb4494180) + QWidget (0xb448cd20) 0 + primary-for QFrame (0xb44941c0) + QObject (0xb4492708) 0 + primary-for QWidget (0xb448cd20) + QPaintDevice (0xb4492744) 8 + vptr=((& QScrollArea::_ZTV11QScrollArea) + 240u) + +Vtable for QGraphicsView +QGraphicsView::_ZTV13QGraphicsView: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QGraphicsView) +8 QGraphicsView::metaObject +12 QGraphicsView::qt_metacast +16 QGraphicsView::qt_metacall +20 QGraphicsView::~QGraphicsView +24 QGraphicsView::~QGraphicsView +28 QGraphicsView::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QGraphicsView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGraphicsView::mousePressEvent +84 QGraphicsView::mouseReleaseEvent +88 QGraphicsView::mouseDoubleClickEvent +92 QGraphicsView::mouseMoveEvent +96 QGraphicsView::wheelEvent +100 QGraphicsView::keyPressEvent +104 QGraphicsView::keyReleaseEvent +108 QGraphicsView::focusInEvent +112 QGraphicsView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGraphicsView::paintEvent +128 QWidget::moveEvent +132 QGraphicsView::resizeEvent +136 QWidget::closeEvent +140 QGraphicsView::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QGraphicsView::dragEnterEvent +156 QGraphicsView::dragMoveEvent +160 QGraphicsView::dragLeaveEvent +164 QGraphicsView::dropEvent +168 QGraphicsView::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QGraphicsView::inputMethodEvent +192 QGraphicsView::inputMethodQuery +196 QGraphicsView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QGraphicsView::viewportEvent +228 QGraphicsView::scrollContentsBy +232 QGraphicsView::drawBackground +236 QGraphicsView::drawForeground +240 QGraphicsView::drawItems +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI13QGraphicsView) +252 QGraphicsView::_ZThn8_N13QGraphicsViewD1Ev +256 QGraphicsView::_ZThn8_N13QGraphicsViewD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGraphicsView + size=20 align=4 + base size=20 base align=4 +QGraphicsView (0xb4494480) 0 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 8u) + QAbstractScrollArea (0xb44944c0) 0 + primary-for QGraphicsView (0xb4494480) + QFrame (0xb4494500) 0 + primary-for QAbstractScrollArea (0xb44944c0) + QWidget (0xb449eb90) 0 + primary-for QFrame (0xb4494500) + QObject (0xb44a55dc) 0 + primary-for QWidget (0xb449eb90) + QPaintDevice (0xb44a5618) 8 + vptr=((& QGraphicsView::_ZTV13QGraphicsView) + 252u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb44b1ec4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb42d1ac8) 0 + +Vtable for QBitmap +QBitmap::_ZTV7QBitmap: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBitmap) +8 QBitmap::~QBitmap +12 QBitmap::~QBitmap +16 QPixmap::devType +20 QPixmap::paintEngine +24 QPixmap::metric + +Class QBitmap + size=12 align=4 + base size=12 base align=4 +QBitmap (0xb4494c40) 0 + vptr=((& QBitmap::_ZTV7QBitmap) + 8u) + QPixmap (0xb4494c80) 0 + primary-for QBitmap (0xb4494c40) + QPaintDevice (0xb43012d0) 0 + primary-for QPixmap (0xb4494c80) + +Vtable for QIconEngine +QIconEngine::_ZTV11QIconEngine: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QIconEngine) +8 QIconEngine::~QIconEngine +12 QIconEngine::~QIconEngine +16 __cxa_pure_virtual +20 QIconEngine::actualSize +24 QIconEngine::pixmap +28 QIconEngine::addPixmap +32 QIconEngine::addFile + +Class QIconEngine + size=4 align=4 + base size=4 base align=4 +QIconEngine (0xb4311924) 0 nearly-empty + vptr=((& QIconEngine::_ZTV11QIconEngine) + 8u) + +Vtable for QIconEngineV2 +QIconEngineV2::_ZTV13QIconEngineV2: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QIconEngineV2) +8 QIconEngineV2::~QIconEngineV2 +12 QIconEngineV2::~QIconEngineV2 +16 __cxa_pure_virtual +20 QIconEngine::actualSize +24 QIconEngine::pixmap +28 QIconEngine::addPixmap +32 QIconEngine::addFile +36 QIconEngineV2::key +40 QIconEngineV2::clone +44 QIconEngineV2::read +48 QIconEngineV2::write +52 QIconEngineV2::virtual_hook + +Class QIconEngineV2 + size=4 align=4 + base size=4 base align=4 +QIconEngineV2 (0xb4313480) 0 nearly-empty + vptr=((& QIconEngineV2::_ZTV13QIconEngineV2) + 8u) + QIconEngine (0xb4311ce4) 0 nearly-empty + primary-for QIconEngineV2 (0xb4313480) + +Vtable for QIconEngineFactoryInterface +QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QIconEngineFactoryInterface) +8 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +12 QIconEngineFactoryInterface::~QIconEngineFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QIconEngineFactoryInterface + size=4 align=4 + base size=4 base align=4 +QIconEngineFactoryInterface (0xb4313500) 0 nearly-empty + vptr=((& QIconEngineFactoryInterface::_ZTV27QIconEngineFactoryInterface) + 8u) + QFactoryInterface (0xb4311e88) 0 nearly-empty + primary-for QIconEngineFactoryInterface (0xb4313500) + +Vtable for QIconEnginePlugin +QIconEnginePlugin::_ZTV17QIconEnginePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QIconEnginePlugin) +8 QIconEnginePlugin::metaObject +12 QIconEnginePlugin::qt_metacast +16 QIconEnginePlugin::qt_metacall +20 QIconEnginePlugin::~QIconEnginePlugin +24 QIconEnginePlugin::~QIconEnginePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI17QIconEnginePlugin) +72 QIconEnginePlugin::_ZThn8_N17QIconEnginePluginD1Ev +76 QIconEnginePlugin::_ZThn8_N17QIconEnginePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QIconEnginePlugin + size=12 align=4 + base size=12 base align=4 +QIconEnginePlugin (0xb43218c0) 0 + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 8u) + QObject (0xb432512c) 0 + primary-for QIconEnginePlugin (0xb43218c0) + QIconEngineFactoryInterface (0xb43136c0) 8 nearly-empty + vptr=((& QIconEnginePlugin::_ZTV17QIconEnginePlugin) + 72u) + QFactoryInterface (0xb4325168) 8 nearly-empty + primary-for QIconEngineFactoryInterface (0xb43136c0) + +Vtable for QIconEngineFactoryInterfaceV2 +QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI29QIconEngineFactoryInterfaceV2) +8 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +12 QIconEngineFactoryInterfaceV2::~QIconEngineFactoryInterfaceV2 +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QIconEngineFactoryInterfaceV2 + size=4 align=4 + base size=4 base align=4 +QIconEngineFactoryInterfaceV2 (0xb4313900) 0 nearly-empty + vptr=((& QIconEngineFactoryInterfaceV2::_ZTV29QIconEngineFactoryInterfaceV2) + 8u) + QFactoryInterface (0xb4325960) 0 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0xb4313900) + +Vtable for QIconEnginePluginV2 +QIconEnginePluginV2::_ZTV19QIconEnginePluginV2: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +8 QIconEnginePluginV2::metaObject +12 QIconEnginePluginV2::qt_metacast +16 QIconEnginePluginV2::qt_metacall +20 QIconEnginePluginV2::~QIconEnginePluginV2 +24 QIconEnginePluginV2::~QIconEnginePluginV2 +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI19QIconEnginePluginV2) +72 QIconEnginePluginV2::_ZThn8_N19QIconEnginePluginV2D1Ev +76 QIconEnginePluginV2::_ZThn8_N19QIconEnginePluginV2D0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QIconEnginePluginV2 + size=12 align=4 + base size=12 base align=4 +QIconEnginePluginV2 (0xb432bdc0) 0 + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 8u) + QObject (0xb4325ce4) 0 + primary-for QIconEnginePluginV2 (0xb432bdc0) + QIconEngineFactoryInterfaceV2 (0xb4313a80) 8 nearly-empty + vptr=((& QIconEnginePluginV2::_ZTV19QIconEnginePluginV2) + 72u) + QFactoryInterface (0xb4325d20) 8 nearly-empty + primary-for QIconEngineFactoryInterfaceV2 (0xb4313a80) + +Vtable for QImageIOHandler +QImageIOHandler::_ZTV15QImageIOHandler: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QImageIOHandler) +8 QImageIOHandler::~QImageIOHandler +12 QImageIOHandler::~QImageIOHandler +16 QImageIOHandler::name +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QImageIOHandler::write +32 QImageIOHandler::option +36 QImageIOHandler::setOption +40 QImageIOHandler::supportsOption +44 QImageIOHandler::jumpToNextImage +48 QImageIOHandler::jumpToImage +52 QImageIOHandler::loopCount +56 QImageIOHandler::imageCount +60 QImageIOHandler::nextImageDelay +64 QImageIOHandler::currentImageNumber +68 QImageIOHandler::currentImageRect + +Class QImageIOHandler + size=8 align=4 + base size=8 base align=4 +QImageIOHandler (0xb433a4b0) 0 + vptr=((& QImageIOHandler::_ZTV15QImageIOHandler) + 8u) + +Vtable for QImageIOHandlerFactoryInterface +QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI31QImageIOHandlerFactoryInterface) +8 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +12 QImageIOHandlerFactoryInterface::~QImageIOHandlerFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QImageIOHandlerFactoryInterface + size=4 align=4 + base size=4 base align=4 +QImageIOHandlerFactoryInterface (0xb4313d80) 0 nearly-empty + vptr=((& QImageIOHandlerFactoryInterface::_ZTV31QImageIOHandlerFactoryInterface) + 8u) + QFactoryInterface (0xb433ab40) 0 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0xb4313d80) + +Vtable for QImageIOPlugin +QImageIOPlugin::_ZTV14QImageIOPlugin: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QImageIOPlugin) +8 QImageIOPlugin::metaObject +12 QImageIOPlugin::qt_metacast +16 QImageIOPlugin::qt_metacall +20 QImageIOPlugin::~QImageIOPlugin +24 QImageIOPlugin::~QImageIOPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 (int (*)(...))-0x000000008 +72 (int (*)(...))(& _ZTI14QImageIOPlugin) +76 QImageIOPlugin::_ZThn8_N14QImageIOPluginD1Ev +80 QImageIOPlugin::_ZThn8_N14QImageIOPluginD0Ev +84 __cxa_pure_virtual +88 __cxa_pure_virtual + +Class QImageIOPlugin + size=12 align=4 + base size=12 base align=4 +QImageIOPlugin (0xb4344af0) 0 + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 8u) + QObject (0xb433aec4) 0 + primary-for QImageIOPlugin (0xb4344af0) + QImageIOHandlerFactoryInterface (0xb4313f00) 8 nearly-empty + vptr=((& QImageIOPlugin::_ZTV14QImageIOPlugin) + 76u) + QFactoryInterface (0xb433af00) 8 nearly-empty + primary-for QImageIOHandlerFactoryInterface (0xb4313f00) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb434d960) 0 + +Class QImageReader + size=4 align=4 + base size=4 base align=4 +QImageReader (0xb43644ec) 0 + +Class QImageWriter + size=4 align=4 + base size=4 base align=4 +QImageWriter (0xb436499c) 0 + +Vtable for QMovie +QMovie::_ZTV6QMovie: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QMovie) +8 QMovie::metaObject +12 QMovie::qt_metacast +16 QMovie::qt_metacall +20 QMovie::~QMovie +24 QMovie::~QMovie +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QMovie + size=8 align=4 + base size=8 base align=4 +QMovie (0xb4350240) 0 + vptr=((& QMovie::_ZTV6QMovie) + 8u) + QObject (0xb4364e10) 0 + primary-for QMovie (0xb4350240) + +Vtable for QPicture +QPicture::_ZTV8QPicture: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QPicture) +8 QPicture::~QPicture +12 QPicture::~QPicture +16 QPicture::devType +20 QPicture::paintEngine +24 QPicture::metric +28 QPicture::setData + +Class QPicture + size=12 align=4 + base size=12 base align=4 +QPicture (0xb4350800) 0 + vptr=((& QPicture::_ZTV8QPicture) + 8u) + QPaintDevice (0xb438fce4) 0 + primary-for QPicture (0xb4350800) + +Class QPictureIO + size=4 align=4 + base size=4 base align=4 +QPictureIO (0xb439ea8c) 0 + +Vtable for QPictureFormatInterface +QPictureFormatInterface::_ZTV23QPictureFormatInterface: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QPictureFormatInterface) +8 QPictureFormatInterface::~QPictureFormatInterface +12 QPictureFormatInterface::~QPictureFormatInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QPictureFormatInterface + size=4 align=4 + base size=4 base align=4 +QPictureFormatInterface (0xb4350a80) 0 nearly-empty + vptr=((& QPictureFormatInterface::_ZTV23QPictureFormatInterface) + 8u) + QFactoryInterface (0xb439edd4) 0 nearly-empty + primary-for QPictureFormatInterface (0xb4350a80) + +Vtable for QPictureFormatPlugin +QPictureFormatPlugin::_ZTV20QPictureFormatPlugin: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +8 QPictureFormatPlugin::metaObject +12 QPictureFormatPlugin::qt_metacast +16 QPictureFormatPlugin::qt_metacall +20 QPictureFormatPlugin::~QPictureFormatPlugin +24 QPictureFormatPlugin::~QPictureFormatPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 QPictureFormatPlugin::loadPicture +64 QPictureFormatPlugin::savePicture +68 __cxa_pure_virtual +72 (int (*)(...))-0x000000008 +76 (int (*)(...))(& _ZTI20QPictureFormatPlugin) +80 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPluginD1Ev +84 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPluginD0Ev +88 __cxa_pure_virtual +92 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPlugin11loadPictureERK7QStringS2_P8QPicture +96 QPictureFormatPlugin::_ZThn8_N20QPictureFormatPlugin11savePictureERK7QStringS2_RK8QPicture +100 __cxa_pure_virtual + +Class QPictureFormatPlugin + size=12 align=4 + base size=12 base align=4 +QPictureFormatPlugin (0xb43ad320) 0 + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 8u) + QObject (0xb43af000) 0 + primary-for QPictureFormatPlugin (0xb43ad320) + QPictureFormatInterface (0xb4350c40) 8 nearly-empty + vptr=((& QPictureFormatPlugin::_ZTV20QPictureFormatPlugin) + 80u) + QFactoryInterface (0xb43af03c) 8 nearly-empty + primary-for QPictureFormatInterface (0xb4350c40) + +Class QPixmapCache + size=1 align=1 + base size=0 base align=1 +QPixmapCache (0xb43af8ac) 0 empty + +Vtable for QAction +QAction::_ZTV7QAction: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QAction) +8 QAction::metaObject +12 QAction::qt_metacast +16 QAction::qt_metacall +20 QAction::~QAction +24 QAction::~QAction +28 QAction::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QAction + size=8 align=4 + base size=8 base align=4 +QAction (0xb4350e80) 0 + vptr=((& QAction::_ZTV7QAction) + 8u) + QObject (0xb43af8e8) 0 + primary-for QAction (0xb4350e80) + +Vtable for QActionGroup +QActionGroup::_ZTV12QActionGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QActionGroup) +8 QActionGroup::metaObject +12 QActionGroup::qt_metacast +16 QActionGroup::qt_metacall +20 QActionGroup::~QActionGroup +24 QActionGroup::~QActionGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QActionGroup + size=8 align=4 + base size=8 base align=4 +QActionGroup (0xb41d0580) 0 + vptr=((& QActionGroup::_ZTV12QActionGroup) + 8u) + QObject (0xb41d7a8c) 0 + primary-for QActionGroup (0xb41d0580) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb41e58ac) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb41e5834) 0 + +Vtable for QInputContext +QInputContext::_ZTV13QInputContext: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QInputContext) +8 QInputContext::metaObject +12 QInputContext::qt_metacast +16 QInputContext::qt_metacall +20 QInputContext::~QInputContext +24 QInputContext::~QInputContext +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 QInputContext::update +72 QInputContext::mouseHandler +76 QInputContext::font +80 __cxa_pure_virtual +84 QInputContext::setFocusWidget +88 QInputContext::widgetDestroyed +92 QInputContext::actions +96 QInputContext::x11FilterEvent +100 QInputContext::filterEvent + +Class QInputContext + size=8 align=4 + base size=8 base align=4 +QInputContext (0xb41d0a00) 0 + vptr=((& QInputContext::_ZTV13QInputContext) + 8u) + QObject (0xb41e5a8c) 0 + primary-for QInputContext (0xb41d0a00) + +Class QInputContextFactory + size=1 align=1 + base size=0 base align=1 +QInputContextFactory (0xb420b654) 0 empty + +Vtable for QInputContextFactoryInterface +QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI29QInputContextFactoryInterface) +8 QInputContextFactoryInterface::~QInputContextFactoryInterface +12 QInputContextFactoryInterface::~QInputContextFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual + +Class QInputContextFactoryInterface + size=4 align=4 + base size=4 base align=4 +QInputContextFactoryInterface (0xb41d0cc0) 0 nearly-empty + vptr=((& QInputContextFactoryInterface::_ZTV29QInputContextFactoryInterface) + 8u) + QFactoryInterface (0xb420b690) 0 nearly-empty + primary-for QInputContextFactoryInterface (0xb41d0cc0) + +Vtable for QInputContextPlugin +QInputContextPlugin::_ZTV19QInputContextPlugin: 28u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QInputContextPlugin) +8 QInputContextPlugin::metaObject +12 QInputContextPlugin::qt_metacast +16 QInputContextPlugin::qt_metacall +20 QInputContextPlugin::~QInputContextPlugin +24 QInputContextPlugin::~QInputContextPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 (int (*)(...))-0x000000008 +80 (int (*)(...))(& _ZTI19QInputContextPlugin) +84 QInputContextPlugin::_ZThn8_N19QInputContextPluginD1Ev +88 QInputContextPlugin::_ZThn8_N19QInputContextPluginD0Ev +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual + +Class QInputContextPlugin + size=12 align=4 + base size=12 base align=4 +QInputContextPlugin (0xb4207fa0) 0 + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 8u) + QObject (0xb420b99c) 0 + primary-for QInputContextPlugin (0xb4207fa0) + QInputContextFactoryInterface (0xb41d0e80) 8 nearly-empty + vptr=((& QInputContextPlugin::_ZTV19QInputContextPlugin) + 84u) + QFactoryInterface (0xb420b9d8) 8 nearly-empty + primary-for QInputContextFactoryInterface (0xb41d0e80) + +Vtable for QValidator +QValidator::_ZTV10QValidator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QValidator) +8 QValidator::metaObject +12 QValidator::qt_metacast +16 QValidator::qt_metacall +20 QValidator::~QValidator +24 QValidator::~QValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 QValidator::fixup + +Class QValidator + size=8 align=4 + base size=8 base align=4 +QValidator (0xb42190c0) 0 + vptr=((& QValidator::_ZTV10QValidator) + 8u) + QObject (0xb421c168) 0 + primary-for QValidator (0xb42190c0) + +Vtable for QIntValidator +QIntValidator::_ZTV13QIntValidator: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QIntValidator) +8 QIntValidator::metaObject +12 QIntValidator::qt_metacast +16 QIntValidator::qt_metacall +20 QIntValidator::~QIntValidator +24 QIntValidator::~QIntValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIntValidator::validate +60 QValidator::fixup +64 QIntValidator::setRange + +Class QIntValidator + size=16 align=4 + base size=16 base align=4 +QIntValidator (0xb4219380) 0 + vptr=((& QIntValidator::_ZTV13QIntValidator) + 8u) + QValidator (0xb42193c0) 0 + primary-for QIntValidator (0xb4219380) + QObject (0xb421c870) 0 + primary-for QValidator (0xb42193c0) + +Vtable for QDoubleValidator +QDoubleValidator::_ZTV16QDoubleValidator: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QDoubleValidator) +8 QDoubleValidator::metaObject +12 QDoubleValidator::qt_metacast +16 QDoubleValidator::qt_metacall +20 QDoubleValidator::~QDoubleValidator +24 QDoubleValidator::~QDoubleValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDoubleValidator::validate +60 QValidator::fixup +64 QDoubleValidator::setRange + +Class QDoubleValidator + size=28 align=4 + base size=28 base align=4 +QDoubleValidator (0xb4219680) 0 + vptr=((& QDoubleValidator::_ZTV16QDoubleValidator) + 8u) + QValidator (0xb42196c0) 0 + primary-for QDoubleValidator (0xb4219680) + QObject (0xb422bf3c) 0 + primary-for QValidator (0xb42196c0) + +Vtable for QRegExpValidator +QRegExpValidator::_ZTV16QRegExpValidator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QRegExpValidator) +8 QRegExpValidator::metaObject +12 QRegExpValidator::qt_metacast +16 QRegExpValidator::qt_metacall +20 QRegExpValidator::~QRegExpValidator +24 QRegExpValidator::~QRegExpValidator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QRegExpValidator::validate +60 QValidator::fixup + +Class QRegExpValidator + size=12 align=4 + base size=12 base align=4 +QRegExpValidator (0xb4219a40) 0 + vptr=((& QRegExpValidator::_ZTV16QRegExpValidator) + 8u) + QValidator (0xb4219a80) 0 + primary-for QRegExpValidator (0xb4219a40) + QObject (0xb424521c) 0 + primary-for QValidator (0xb4219a80) + +Vtable for QAbstractSpinBox +QAbstractSpinBox::_ZTV16QAbstractSpinBox: 68u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QAbstractSpinBox) +8 QAbstractSpinBox::metaObject +12 QAbstractSpinBox::qt_metacast +16 QAbstractSpinBox::qt_metacall +20 QAbstractSpinBox::~QAbstractSpinBox +24 QAbstractSpinBox::~QAbstractSpinBox +28 QAbstractSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSpinBox::validate +228 QAbstractSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 (int (*)(...))-0x000000008 +248 (int (*)(...))(& _ZTI16QAbstractSpinBox) +252 QAbstractSpinBox::_ZThn8_N16QAbstractSpinBoxD1Ev +256 QAbstractSpinBox::_ZThn8_N16QAbstractSpinBoxD0Ev +260 QWidget::_ZThn8_NK7QWidget7devTypeEv +264 QWidget::_ZThn8_NK7QWidget11paintEngineEv +268 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSpinBox + size=20 align=4 + base size=20 base align=4 +QAbstractSpinBox (0xb4219d00) 0 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 8u) + QWidget (0xb42510a0) 0 + primary-for QAbstractSpinBox (0xb4219d00) + QObject (0xb4252000) 0 + primary-for QWidget (0xb42510a0) + QPaintDevice (0xb425203c) 8 + vptr=((& QAbstractSpinBox::_ZTV16QAbstractSpinBox) + 252u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb42671e0) 0 + +Vtable for QAbstractSlider +QAbstractSlider::_ZTV15QAbstractSlider: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractSlider) +8 QAbstractSlider::metaObject +12 QAbstractSlider::qt_metacast +16 QAbstractSlider::qt_metacall +20 QAbstractSlider::~QAbstractSlider +24 QAbstractSlider::~QAbstractSlider +28 QAbstractSlider::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSlider::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI15QAbstractSlider) +236 QAbstractSlider::_ZThn8_N15QAbstractSliderD1Ev +240 QAbstractSlider::_ZThn8_N15QAbstractSliderD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractSlider + size=20 align=4 + base size=20 base align=4 +QAbstractSlider (0xb426d080) 0 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 8u) + QWidget (0xb426c820) 0 + primary-for QAbstractSlider (0xb426d080) + QObject (0xb4267d98) 0 + primary-for QWidget (0xb426c820) + QPaintDevice (0xb4267dd4) 8 + vptr=((& QAbstractSlider::_ZTV15QAbstractSlider) + 236u) + +Vtable for QSlider +QSlider::_ZTV7QSlider: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QSlider) +8 QSlider::metaObject +12 QSlider::qt_metacast +16 QSlider::qt_metacall +20 QSlider::~QSlider +24 QSlider::~QSlider +28 QSlider::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSlider::sizeHint +68 QSlider::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSlider::mousePressEvent +84 QSlider::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSlider::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSlider::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractSlider::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI7QSlider) +236 QSlider::_ZThn8_N7QSliderD1Ev +240 QSlider::_ZThn8_N7QSliderD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSlider + size=20 align=4 + base size=20 base align=4 +QSlider (0xb426d600) 0 + vptr=((& QSlider::_ZTV7QSlider) + 8u) + QAbstractSlider (0xb426d640) 0 + primary-for QSlider (0xb426d600) + QWidget (0xb428df00) 0 + primary-for QAbstractSlider (0xb426d640) + QObject (0xb4296ca8) 0 + primary-for QWidget (0xb428df00) + QPaintDevice (0xb4296ce4) 8 + vptr=((& QSlider::_ZTV7QSlider) + 236u) + +Vtable for QStyle +QStyle::_ZTV6QStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QStyle) +8 QStyle::metaObject +12 QStyle::qt_metacast +16 QStyle::qt_metacall +20 QStyle::~QStyle +24 QStyle::~QStyle +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyle::polish +60 QStyle::unpolish +64 QStyle::polish +68 QStyle::unpolish +72 QStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 __cxa_pure_virtual +100 __cxa_pure_virtual +104 __cxa_pure_virtual +108 __cxa_pure_virtual +112 __cxa_pure_virtual +116 __cxa_pure_virtual +120 __cxa_pure_virtual +124 __cxa_pure_virtual +128 __cxa_pure_virtual +132 __cxa_pure_virtual +136 __cxa_pure_virtual + +Class QStyle + size=8 align=4 + base size=8 base align=4 +QStyle (0xb426da00) 0 + vptr=((& QStyle::_ZTV6QStyle) + 8u) + QObject (0xb42ac708) 0 + primary-for QStyle (0xb426da00) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb40dc078) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb40dcca8) 0 + +Vtable for QTabBar +QTabBar::_ZTV7QTabBar: 67u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QTabBar) +8 QTabBar::metaObject +12 QTabBar::qt_metacast +16 QTabBar::qt_metacall +20 QTabBar::~QTabBar +24 QTabBar::~QTabBar +28 QTabBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QTabBar::sizeHint +68 QTabBar::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTabBar::mousePressEvent +84 QTabBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QTabBar::mouseMoveEvent +96 QWidget::wheelEvent +100 QTabBar::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTabBar::paintEvent +128 QWidget::moveEvent +132 QTabBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QTabBar::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTabBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTabBar::tabSizeHint +228 QTabBar::tabInserted +232 QTabBar::tabRemoved +236 QTabBar::tabLayoutChange +240 (int (*)(...))-0x000000008 +244 (int (*)(...))(& _ZTI7QTabBar) +248 QTabBar::_ZThn8_N7QTabBarD1Ev +252 QTabBar::_ZThn8_N7QTabBarD0Ev +256 QWidget::_ZThn8_NK7QWidget7devTypeEv +260 QWidget::_ZThn8_NK7QWidget11paintEngineEv +264 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabBar + size=20 align=4 + base size=20 base align=4 +QTabBar (0xb426de80) 0 + vptr=((& QTabBar::_ZTV7QTabBar) + 8u) + QWidget (0xb410a0a0) 0 + primary-for QTabBar (0xb426de80) + QObject (0xb40f7924) 0 + primary-for QWidget (0xb410a0a0) + QPaintDevice (0xb40f7960) 8 + vptr=((& QTabBar::_ZTV7QTabBar) + 248u) + +Vtable for QTabWidget +QTabWidget::_ZTV10QTabWidget: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTabWidget) +8 QTabWidget::metaObject +12 QTabWidget::qt_metacast +16 QTabWidget::qt_metacall +20 QTabWidget::~QTabWidget +24 QTabWidget::~QTabWidget +28 QTabWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QTabWidget::sizeHint +68 QTabWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QTabWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTabWidget::paintEvent +128 QWidget::moveEvent +132 QTabWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QTabWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTabWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTabWidget::tabInserted +228 QTabWidget::tabRemoved +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI10QTabWidget) +240 QTabWidget::_ZThn8_N10QTabWidgetD1Ev +244 QTabWidget::_ZThn8_N10QTabWidgetD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTabWidget + size=20 align=4 + base size=20 base align=4 +QTabWidget (0xb411b180) 0 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 8u) + QWidget (0xb4115a00) 0 + primary-for QTabWidget (0xb411b180) + QObject (0xb41169d8) 0 + primary-for QWidget (0xb4115a00) + QPaintDevice (0xb4116a14) 8 + vptr=((& QTabWidget::_ZTV10QTabWidget) + 240u) + +Vtable for QRubberBand +QRubberBand::_ZTV11QRubberBand: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QRubberBand) +8 QRubberBand::metaObject +12 QRubberBand::qt_metacast +16 QRubberBand::qt_metacall +20 QRubberBand::~QRubberBand +24 QRubberBand::~QRubberBand +28 QRubberBand::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QRubberBand::paintEvent +128 QRubberBand::moveEvent +132 QRubberBand::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QRubberBand::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QRubberBand::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QRubberBand) +232 QRubberBand::_ZThn8_N11QRubberBandD1Ev +236 QRubberBand::_ZThn8_N11QRubberBandD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRubberBand + size=20 align=4 + base size=20 base align=4 +QRubberBand (0xb411b9c0) 0 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 8u) + QWidget (0xb4131d20) 0 + primary-for QRubberBand (0xb411b9c0) + QObject (0xb413fe4c) 0 + primary-for QWidget (0xb4131d20) + QPaintDevice (0xb413fe88) 8 + vptr=((& QRubberBand::_ZTV11QRubberBand) + 232u) + +Class QStyleOption + size=44 align=4 + base size=44 base align=4 +QStyleOption (0xb414cf00) 0 + +Class QStyleOptionFocusRect + size=60 align=4 + base size=60 base align=4 +QStyleOptionFocusRect (0xb411be40) 0 + QStyleOption (0xb415e5dc) 0 + +Class QStyleOptionFrame + size=52 align=4 + base size=52 base align=4 +QStyleOptionFrame (0xb4166040) 0 + QStyleOption (0xb415eb04) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb416d258) 0 + +Class QStyleOptionFrameV2 + size=56 align=4 + base size=56 base align=4 +QStyleOptionFrameV2 (0xb4166240) 0 + QStyleOptionFrame (0xb4166280) 0 + QStyleOption (0xb415ee4c) 0 + +Class QStyleOptionTabWidgetFrame + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabWidgetFrame (0xb41666c0) 0 + QStyleOption (0xb417b654) 0 + +Class QStyleOptionTabBarBase + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabBarBase (0xb41668c0) 0 + QStyleOption (0xb417bc6c) 0 + +Class QStyleOptionHeader + size=80 align=4 + base size=80 base align=4 +QStyleOptionHeader (0xb4166ac0) 0 + QStyleOption (0xb419721c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4197c6c) 0 + +Class QStyleOptionButton + size=64 align=4 + base size=64 base align=4 +QStyleOptionButton (0xb4166d80) 0 + QStyleOption (0xb4197960) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3fc7168) 0 + +Class QStyleOptionTab + size=72 align=4 + base size=72 base align=4 +QStyleOptionTab (0xb41b2080) 0 + QStyleOption (0xb41b1c30) 0 + +Class QStyleOptionTabV2 + size=80 align=4 + base size=80 base align=4 +QStyleOptionTabV2 (0xb41b23c0) 0 + QStyleOptionTab (0xb41b2400) 0 + QStyleOption (0xb3fe01a4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3fe0e4c) 0 + +Class QStyleOptionToolBar + size=68 align=4 + base size=68 base align=4 +QStyleOptionToolBar (0xb41b2740) 0 + QStyleOption (0xb3fe09d8) 0 + +Class QStyleOptionProgressBar + size=68 align=4 + base size=65 base align=4 +QStyleOptionProgressBar (0xb41b2a40) 0 + QStyleOption (0xb3ff8ec4) 0 + +Class QStyleOptionProgressBarV2 + size=76 align=4 + base size=74 base align=4 +QStyleOptionProgressBarV2 (0xb41b2c80) 0 + QStyleOptionProgressBar (0xb41b2cc0) 0 + QStyleOption (0xb40123fc) 0 + +Class QStyleOptionMenuItem + size=96 align=4 + base size=96 base align=4 +QStyleOptionMenuItem (0xb41b2d00) 0 + QStyleOption (0xb4012834) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4024168) 0 + +Class QStyleOptionQ3ListViewItem + size=64 align=4 + base size=64 base align=4 +QStyleOptionQ3ListViewItem (0xb41b2f40) 0 + QStyleOption (0xb4012ec4) 0 + +Class QStyleOptionQ3DockWindow + size=48 align=4 + base size=46 base align=4 +QStyleOptionQ3DockWindow (0xb402c240) 0 + QStyleOption (0xb403c1a4) 0 + +Class QStyleOptionDockWidget + size=52 align=4 + base size=51 base align=4 +QStyleOptionDockWidget (0xb402c440) 0 + QStyleOption (0xb403c6cc) 0 + +Class QStyleOptionDockWidgetV2 + size=52 align=4 + base size=52 base align=4 +QStyleOptionDockWidgetV2 (0xb402c640) 0 + QStyleOptionDockWidget (0xb402c680) 0 + QStyleOption (0xb403cbf4) 0 + +Class QStyleOptionViewItem + size=80 align=4 + base size=77 base align=4 +QStyleOptionViewItem (0xb402c9c0) 0 + QStyleOption (0xb40543c0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4054c30) 0 + +Class QStyleOptionViewItemV2 + size=84 align=4 + base size=84 base align=4 +QStyleOptionViewItemV2 (0xb402cc40) 0 + QStyleOptionViewItem (0xb402cc80) 0 + QStyleOption (0xb405499c) 0 + +Class QStyleOptionViewItemV3 + size=92 align=4 + base size=92 base align=4 +QStyleOptionViewItemV3 (0xb406d0c0) 0 + QStyleOptionViewItemV2 (0xb406d100) 0 + QStyleOptionViewItem (0xb406d140) 0 + QStyleOption (0xb408303c) 0 + +Class QStyleOptionViewItemV4 + size=128 align=4 + base size=128 base align=4 +QStyleOptionViewItemV4 (0xb406d480) 0 + QStyleOptionViewItemV3 (0xb406d4c0) 0 + QStyleOptionViewItemV2 (0xb406d500) 0 + QStyleOptionViewItem (0xb406d540) 0 + QStyleOption (0xb4083834) 0 + +Class QStyleOptionToolBox + size=52 align=4 + base size=52 base align=4 +QStyleOptionToolBox (0xb406d880) 0 + QStyleOption (0xb40940f0) 0 + +Class QStyleOptionToolBoxV2 + size=60 align=4 + base size=60 base align=4 +QStyleOptionToolBoxV2 (0xb406da80) 0 + QStyleOptionToolBox (0xb406dac0) 0 + QStyleOption (0xb4094618) 0 + +Class QStyleOptionRubberBand + size=52 align=4 + base size=49 base align=4 +QStyleOptionRubberBand (0xb406de00) 0 + QStyleOption (0xb4094fb4) 0 + +Class QStyleOptionComplex + size=52 align=4 + base size=52 base align=4 +QStyleOptionComplex (0xb40aa000) 0 + QStyleOption (0xb40a6564) 0 + +Class QStyleOptionSlider + size=104 align=4 + base size=101 base align=4 +QStyleOptionSlider (0xb40aa280) 0 + QStyleOptionComplex (0xb40aa2c0) 0 + QStyleOption (0xb40a6d5c) 0 + +Class QStyleOptionSpinBox + size=64 align=4 + base size=61 base align=4 +QStyleOptionSpinBox (0xb40aa600) 0 + QStyleOptionComplex (0xb40aa640) 0 + QStyleOption (0xb40b3474) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb40b3c6c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb40b3bf4) 0 + +Class QStyleOptionQ3ListView + size=84 align=4 + base size=81 base align=4 +QStyleOptionQ3ListView (0xb40aa880) 0 + QStyleOptionComplex (0xb40aa8c0) 0 + QStyleOption (0xb40b3b04) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3eda474) 0 + +Class QStyleOptionToolButton + size=96 align=4 + base size=96 base align=4 +QStyleOptionToolButton (0xb40aab80) 0 + QStyleOptionComplex (0xb40aabc0) 0 + QStyleOption (0xb3eda0f0) 0 + +Class QStyleOptionComboBox + size=92 align=4 + base size=92 base align=4 +QStyleOptionComboBox (0xb40aaec0) 0 + QStyleOptionComplex (0xb40aaf00) 0 + QStyleOption (0xb3ef64b0) 0 + +Class QStyleOptionTitleBar + size=68 align=4 + base size=68 base align=4 +QStyleOptionTitleBar (0xb3f01100) 0 + QStyleOptionComplex (0xb3f01140) 0 + QStyleOption (0xb3ef6a14) 0 + +Class QStyleOptionGroupBox + size=88 align=4 + base size=88 base align=4 +QStyleOptionGroupBox (0xb3f01380) 0 + QStyleOptionComplex (0xb3f013c0) 0 + QStyleOption (0xb3ef6f3c) 0 + +Class QStyleOptionSizeGrip + size=56 align=4 + base size=56 base align=4 +QStyleOptionSizeGrip (0xb3f01640) 0 + QStyleOptionComplex (0xb3f01680) 0 + QStyleOption (0xb3f104ec) 0 + +Class QStyleOptionGraphicsItem + size=132 align=4 + base size=132 base align=4 +QStyleOptionGraphicsItem (0xb3f01880) 0 + QStyleOption (0xb3f10a14) 0 + +Class QStyleHintReturn + size=8 align=4 + base size=8 base align=4 +QStyleHintReturn (0xb3f10fb4) 0 + +Class QStyleHintReturnMask + size=12 align=4 + base size=12 base align=4 +QStyleHintReturnMask (0xb3f01c80) 0 + QStyleHintReturn (0xb3f3112c) 0 + +Class QStyleHintReturnVariant + size=20 align=4 + base size=20 base align=4 +QStyleHintReturnVariant (0xb3f01d00) 0 + QStyleHintReturn (0xb3f3121c) 0 + +Vtable for QAbstractItemDelegate +QAbstractItemDelegate::_ZTV21QAbstractItemDelegate: 21u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QAbstractItemDelegate) +8 QAbstractItemDelegate::metaObject +12 QAbstractItemDelegate::qt_metacast +16 QAbstractItemDelegate::qt_metacall +20 QAbstractItemDelegate::~QAbstractItemDelegate +24 QAbstractItemDelegate::~QAbstractItemDelegate +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAbstractItemDelegate::createEditor +68 QAbstractItemDelegate::setEditorData +72 QAbstractItemDelegate::setModelData +76 QAbstractItemDelegate::updateEditorGeometry +80 QAbstractItemDelegate::editorEvent + +Class QAbstractItemDelegate + size=8 align=4 + base size=8 base align=4 +QAbstractItemDelegate (0xb3f01fc0) 0 + vptr=((& QAbstractItemDelegate::_ZTV21QAbstractItemDelegate) + 8u) + QObject (0xb3f31474) 0 + primary-for QAbstractItemDelegate (0xb3f01fc0) + +Class QItemSelectionRange + size=8 align=4 + base size=8 base align=4 +QItemSelectionRange (0xb3f319d8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3f62b7c) 0 empty + +Vtable for QItemSelectionModel +QItemSelectionModel::_ZTV19QItemSelectionModel: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QItemSelectionModel) +8 QItemSelectionModel::metaObject +12 QItemSelectionModel::qt_metacast +16 QItemSelectionModel::qt_metacall +20 QItemSelectionModel::~QItemSelectionModel +24 QItemSelectionModel::~QItemSelectionModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QItemSelectionModel::select +60 QItemSelectionModel::select +64 QItemSelectionModel::clear +68 QItemSelectionModel::reset + +Class QItemSelectionModel + size=8 align=4 + base size=8 base align=4 +QItemSelectionModel (0xb3f3abc0) 0 + vptr=((& QItemSelectionModel::_ZTV19QItemSelectionModel) + 8u) + QObject (0xb3f7c000) 0 + primary-for QItemSelectionModel (0xb3f3abc0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3f8b294) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3f8bf3c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3f8bec4) 0 + +Class QItemSelection + size=4 align=4 + base size=4 base align=4 +QItemSelection (0xb3fb9000) 0 + QList (0xb3f8bf78) 0 + +Vtable for QAbstractItemView +QAbstractItemView::_ZTV17QAbstractItemView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAbstractItemView) +8 QAbstractItemView::metaObject +12 QAbstractItemView::qt_metacast +16 QAbstractItemView::qt_metacall +20 QAbstractItemView::~QAbstractItemView +24 QAbstractItemView::~QAbstractItemView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QAbstractScrollArea::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 __cxa_pure_virtual +248 __cxa_pure_virtual +252 __cxa_pure_virtual +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QAbstractItemView::reset +268 QAbstractItemView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QAbstractItemView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QAbstractItemView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 __cxa_pure_virtual +344 __cxa_pure_virtual +348 __cxa_pure_virtual +352 __cxa_pure_virtual +356 __cxa_pure_virtual +360 __cxa_pure_virtual +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI17QAbstractItemView) +392 QAbstractItemView::_ZThn8_N17QAbstractItemViewD1Ev +396 QAbstractItemView::_ZThn8_N17QAbstractItemViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractItemView + size=20 align=4 + base size=20 base align=4 +QAbstractItemView (0xb3fb9180) 0 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 8u) + QAbstractScrollArea (0xb3fb91c0) 0 + primary-for QAbstractItemView (0xb3fb9180) + QFrame (0xb3fb9200) 0 + primary-for QAbstractScrollArea (0xb3fb91c0) + QWidget (0xb3fbc320) 0 + primary-for QFrame (0xb3fb9200) + QObject (0xb3fba294) 0 + primary-for QWidget (0xb3fbc320) + QPaintDevice (0xb3fba2d0) 8 + vptr=((& QAbstractItemView::_ZTV17QAbstractItemView) + 392u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3de00b4) 0 + +Vtable for QAbstractProxyModel +QAbstractProxyModel::_ZTV19QAbstractProxyModel: 47u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractProxyModel) +8 QAbstractProxyModel::metaObject +12 QAbstractProxyModel::qt_metacast +16 QAbstractProxyModel::qt_metacall +20 QAbstractProxyModel::~QAbstractProxyModel +24 QAbstractProxyModel::~QAbstractProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 QAbstractProxyModel::data +80 QAbstractProxyModel::setData +84 QAbstractProxyModel::headerData +88 QAbstractProxyModel::setHeaderData +92 QAbstractProxyModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractProxyModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractProxyModel::submit +164 QAbstractProxyModel::revert +168 QAbstractProxyModel::setSourceModel +172 __cxa_pure_virtual +176 __cxa_pure_virtual +180 QAbstractProxyModel::mapSelectionToSource +184 QAbstractProxyModel::mapSelectionFromSource + +Class QAbstractProxyModel + size=8 align=4 + base size=8 base align=4 +QAbstractProxyModel (0xb3fb95c0) 0 + vptr=((& QAbstractProxyModel::_ZTV19QAbstractProxyModel) + 8u) + QAbstractItemModel (0xb3fb9600) 0 + primary-for QAbstractProxyModel (0xb3fb95c0) + QObject (0xb3de0c6c) 0 + primary-for QAbstractItemModel (0xb3fb9600) + +Vtable for QColumnView +QColumnView::_ZTV11QColumnView: 104u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QColumnView) +8 QColumnView::metaObject +12 QColumnView::qt_metacast +16 QColumnView::qt_metacall +20 QColumnView::~QColumnView +24 QColumnView::~QColumnView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QColumnView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractScrollArea::paintEvent +128 QWidget::moveEvent +132 QColumnView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QColumnView::scrollContentsBy +232 QColumnView::setModel +236 QColumnView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QColumnView::visualRect +248 QColumnView::scrollTo +252 QColumnView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QAbstractItemView::reset +268 QColumnView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QColumnView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QColumnView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QAbstractItemView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QColumnView::moveCursor +344 QColumnView::horizontalOffset +348 QColumnView::verticalOffset +352 QColumnView::isIndexHidden +356 QColumnView::setSelection +360 QColumnView::visualRegionForSelection +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QColumnView::createColumn +388 (int (*)(...))-0x000000008 +392 (int (*)(...))(& _ZTI11QColumnView) +396 QColumnView::_ZThn8_N11QColumnViewD1Ev +400 QColumnView::_ZThn8_N11QColumnViewD0Ev +404 QWidget::_ZThn8_NK7QWidget7devTypeEv +408 QWidget::_ZThn8_NK7QWidget11paintEngineEv +412 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QColumnView + size=20 align=4 + base size=20 base align=4 +QColumnView (0xb3fb98c0) 0 + vptr=((& QColumnView::_ZTV11QColumnView) + 8u) + QAbstractItemView (0xb3fb9900) 0 + primary-for QColumnView (0xb3fb98c0) + QAbstractScrollArea (0xb3fb9940) 0 + primary-for QAbstractItemView (0xb3fb9900) + QFrame (0xb3fb9980) 0 + primary-for QAbstractScrollArea (0xb3fb9940) + QWidget (0xb3e03550) 0 + primary-for QFrame (0xb3fb9980) + QObject (0xb3e0199c) 0 + primary-for QWidget (0xb3e03550) + QPaintDevice (0xb3e019d8) 8 + vptr=((& QColumnView::_ZTV11QColumnView) + 396u) + +Vtable for QDataWidgetMapper +QDataWidgetMapper::_ZTV17QDataWidgetMapper: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QDataWidgetMapper) +8 QDataWidgetMapper::metaObject +12 QDataWidgetMapper::qt_metacast +16 QDataWidgetMapper::qt_metacall +20 QDataWidgetMapper::~QDataWidgetMapper +24 QDataWidgetMapper::~QDataWidgetMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDataWidgetMapper::setCurrentIndex + +Class QDataWidgetMapper + size=8 align=4 + base size=8 base align=4 +QDataWidgetMapper (0xb3fb9c40) 0 + vptr=((& QDataWidgetMapper::_ZTV17QDataWidgetMapper) + 8u) + QObject (0xb3e13960) 0 + primary-for QDataWidgetMapper (0xb3fb9c40) + +Vtable for QFileIconProvider +QFileIconProvider::_ZTV17QFileIconProvider: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFileIconProvider) +8 QFileIconProvider::~QFileIconProvider +12 QFileIconProvider::~QFileIconProvider +16 QFileIconProvider::icon +20 QFileIconProvider::icon +24 QFileIconProvider::type + +Class QFileIconProvider + size=8 align=4 + base size=8 base align=4 +QFileIconProvider (0xb3e2a5a0) 0 + vptr=((& QFileIconProvider::_ZTV17QFileIconProvider) + 8u) + +Vtable for QDirModel +QDirModel::_ZTV9QDirModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QDirModel) +8 QDirModel::metaObject +12 QDirModel::qt_metacast +16 QDirModel::qt_metacall +20 QDirModel::~QDirModel +24 QDirModel::~QDirModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QDirModel::index +60 QDirModel::parent +64 QDirModel::rowCount +68 QDirModel::columnCount +72 QDirModel::hasChildren +76 QDirModel::data +80 QDirModel::setData +84 QDirModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QDirModel::mimeTypes +104 QDirModel::mimeData +108 QDirModel::dropMimeData +112 QDirModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QDirModel::flags +144 QDirModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QDirModel + size=8 align=4 + base size=8 base align=4 +QDirModel (0xb3e32000) 0 + vptr=((& QDirModel::_ZTV9QDirModel) + 8u) + QAbstractItemModel (0xb3e32040) 0 + primary-for QDirModel (0xb3e32000) + QObject (0xb3e2ab7c) 0 + primary-for QAbstractItemModel (0xb3e32040) + +Vtable for QHeaderView +QHeaderView::_ZTV11QHeaderView: 105u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHeaderView) +8 QHeaderView::metaObject +12 QHeaderView::qt_metacast +16 QHeaderView::qt_metacall +20 QHeaderView::~QHeaderView +24 QHeaderView::~QHeaderView +28 QHeaderView::event +32 QObject::eventFilter +36 QAbstractItemView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QHeaderView::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QHeaderView::mousePressEvent +84 QHeaderView::mouseReleaseEvent +88 QHeaderView::mouseDoubleClickEvent +92 QHeaderView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QHeaderView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QHeaderView::viewportEvent +228 QHeaderView::scrollContentsBy +232 QHeaderView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QHeaderView::visualRect +248 QHeaderView::scrollTo +252 QHeaderView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QHeaderView::reset +268 QAbstractItemView::setRootIndex +272 QHeaderView::doItemsLayout +276 QAbstractItemView::selectAll +280 QHeaderView::dataChanged +284 QHeaderView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QAbstractItemView::selectionChanged +296 QHeaderView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QHeaderView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QHeaderView::moveCursor +344 QHeaderView::horizontalOffset +348 QHeaderView::verticalOffset +352 QHeaderView::isIndexHidden +356 QHeaderView::setSelection +360 QHeaderView::visualRegionForSelection +364 QAbstractItemView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QHeaderView::paintSection +388 QHeaderView::sectionSizeFromContents +392 (int (*)(...))-0x000000008 +396 (int (*)(...))(& _ZTI11QHeaderView) +400 QHeaderView::_ZThn8_N11QHeaderViewD1Ev +404 QHeaderView::_ZThn8_N11QHeaderViewD0Ev +408 QWidget::_ZThn8_NK7QWidget7devTypeEv +412 QWidget::_ZThn8_NK7QWidget11paintEngineEv +416 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QHeaderView + size=20 align=4 + base size=20 base align=4 +QHeaderView (0xb3e32300) 0 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 8u) + QAbstractItemView (0xb3e32340) 0 + primary-for QHeaderView (0xb3e32300) + QAbstractScrollArea (0xb3e32380) 0 + primary-for QAbstractItemView (0xb3e32340) + QFrame (0xb3e323c0) 0 + primary-for QAbstractScrollArea (0xb3e32380) + QWidget (0xb3e40a50) 0 + primary-for QFrame (0xb3e323c0) + QObject (0xb3e3ebf4) 0 + primary-for QWidget (0xb3e40a50) + QPaintDevice (0xb3e3ec30) 8 + vptr=((& QHeaderView::_ZTV11QHeaderView) + 400u) + +Vtable for QItemDelegate +QItemDelegate::_ZTV13QItemDelegate: 25u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QItemDelegate) +8 QItemDelegate::metaObject +12 QItemDelegate::qt_metacast +16 QItemDelegate::qt_metacall +20 QItemDelegate::~QItemDelegate +24 QItemDelegate::~QItemDelegate +28 QObject::event +32 QItemDelegate::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QItemDelegate::paint +60 QItemDelegate::sizeHint +64 QItemDelegate::createEditor +68 QItemDelegate::setEditorData +72 QItemDelegate::setModelData +76 QItemDelegate::updateEditorGeometry +80 QItemDelegate::editorEvent +84 QItemDelegate::drawDisplay +88 QItemDelegate::drawDecoration +92 QItemDelegate::drawFocus +96 QItemDelegate::drawCheck + +Class QItemDelegate + size=8 align=4 + base size=8 base align=4 +QItemDelegate (0xb3e32780) 0 + vptr=((& QItemDelegate::_ZTV13QItemDelegate) + 8u) + QAbstractItemDelegate (0xb3e327c0) 0 + primary-for QItemDelegate (0xb3e32780) + QObject (0xb3e6a078) 0 + primary-for QAbstractItemDelegate (0xb3e327c0) + +Vtable for QItemEditorCreatorBase +QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QItemEditorCreatorBase) +8 QItemEditorCreatorBase::~QItemEditorCreatorBase +12 QItemEditorCreatorBase::~QItemEditorCreatorBase +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QItemEditorCreatorBase + size=4 align=4 + base size=4 base align=4 +QItemEditorCreatorBase (0xb3e6ac6c) 0 nearly-empty + vptr=((& QItemEditorCreatorBase::_ZTV22QItemEditorCreatorBase) + 8u) + +Class QHash:: + size=4 align=4 + base size=4 base align=4 +QHash:: (0xb3e7d708) 0 + +Class QHash + size=4 align=4 + base size=4 base align=4 +QHash (0xb3e7d690) 0 + +Vtable for QItemEditorFactory +QItemEditorFactory::_ZTV18QItemEditorFactory: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QItemEditorFactory) +8 QItemEditorFactory::~QItemEditorFactory +12 QItemEditorFactory::~QItemEditorFactory +16 QItemEditorFactory::createEditor +20 QItemEditorFactory::valuePropertyName + +Class QItemEditorFactory + size=8 align=4 + base size=8 base align=4 +QItemEditorFactory (0xb3e7d168) 0 + vptr=((& QItemEditorFactory::_ZTV18QItemEditorFactory) + 8u) + +Vtable for QListView +QListView::_ZTV9QListView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QListView) +8 QListView::metaObject +12 QListView::qt_metacast +16 QListView::qt_metacall +20 QListView::~QListView +24 QListView::~QListView +28 QListView::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI9QListView) +392 QListView::_ZThn8_N9QListViewD1Ev +396 QListView::_ZThn8_N9QListViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListView + size=20 align=4 + base size=20 base align=4 +QListView (0xb3e83140) 0 + vptr=((& QListView::_ZTV9QListView) + 8u) + QAbstractItemView (0xb3e83180) 0 + primary-for QListView (0xb3e83140) + QAbstractScrollArea (0xb3e831c0) 0 + primary-for QAbstractItemView (0xb3e83180) + QFrame (0xb3e83200) 0 + primary-for QAbstractScrollArea (0xb3e831c0) + QWidget (0xb3e8fd70) 0 + primary-for QFrame (0xb3e83200) + QObject (0xb3e7d9d8) 0 + primary-for QWidget (0xb3e8fd70) + QPaintDevice (0xb3e7da14) 8 + vptr=((& QListView::_ZTV9QListView) + 392u) + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb3ebb12c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3ebb0b4) 0 + +Vtable for QListWidgetItem +QListWidgetItem::_ZTV15QListWidgetItem: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QListWidgetItem) +8 QListWidgetItem::~QListWidgetItem +12 QListWidgetItem::~QListWidgetItem +16 QListWidgetItem::clone +20 QListWidgetItem::setBackgroundColor +24 QListWidgetItem::data +28 QListWidgetItem::setData +32 QListWidgetItem::operator< +36 QListWidgetItem::read +40 QListWidgetItem::write + +Class QListWidgetItem + size=24 align=4 + base size=24 base align=4 +QListWidgetItem (0xb3ea0c30) 0 + vptr=((& QListWidgetItem::_ZTV15QListWidgetItem) + 8u) + +Vtable for QListWidget +QListWidget::_ZTV11QListWidget: 107u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QListWidget) +8 QListWidget::metaObject +12 QListWidget::qt_metacast +16 QListWidget::qt_metacall +20 QListWidget::~QListWidget +24 QListWidget::~QListWidget +28 QListWidget::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QListWidget::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 QListWidget::mimeTypes +388 QListWidget::mimeData +392 QListWidget::dropMimeData +396 QListWidget::supportedDropActions +400 (int (*)(...))-0x000000008 +404 (int (*)(...))(& _ZTI11QListWidget) +408 QListWidget::_ZThn8_N11QListWidgetD1Ev +412 QListWidget::_ZThn8_N11QListWidgetD0Ev +416 QWidget::_ZThn8_NK7QWidget7devTypeEv +420 QWidget::_ZThn8_NK7QWidget11paintEngineEv +424 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QListWidget + size=20 align=4 + base size=20 base align=4 +QListWidget (0xb3e83d40) 0 + vptr=((& QListWidget::_ZTV11QListWidget) + 8u) + QListView (0xb3e83d80) 0 + primary-for QListWidget (0xb3e83d40) + QAbstractItemView (0xb3e83dc0) 0 + primary-for QListView (0xb3e83d80) + QAbstractScrollArea (0xb3e83e00) 0 + primary-for QAbstractItemView (0xb3e83dc0) + QFrame (0xb3e83e40) 0 + primary-for QAbstractScrollArea (0xb3e83e00) + QWidget (0xb3ce1a50) 0 + primary-for QFrame (0xb3e83e40) + QObject (0xb3cea5a0) 0 + primary-for QWidget (0xb3ce1a50) + QPaintDevice (0xb3cea5dc) 8 + vptr=((& QListWidget::_ZTV11QListWidget) + 408u) + +Vtable for QProxyModel +QProxyModel::_ZTV11QProxyModel: 43u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QProxyModel) +8 QProxyModel::metaObject +12 QProxyModel::qt_metacast +16 QProxyModel::qt_metacall +20 QProxyModel::~QProxyModel +24 QProxyModel::~QProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProxyModel::index +60 QProxyModel::parent +64 QProxyModel::rowCount +68 QProxyModel::columnCount +72 QProxyModel::hasChildren +76 QProxyModel::data +80 QProxyModel::setData +84 QProxyModel::headerData +88 QProxyModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QProxyModel::mimeTypes +104 QProxyModel::mimeData +108 QProxyModel::dropMimeData +112 QProxyModel::supportedDropActions +116 QProxyModel::insertRows +120 QProxyModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QProxyModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QProxyModel::flags +144 QProxyModel::sort +148 QAbstractItemModel::buddy +152 QProxyModel::match +156 QProxyModel::span +160 QProxyModel::submit +164 QProxyModel::revert +168 QProxyModel::setModel + +Class QProxyModel + size=8 align=4 + base size=8 base align=4 +QProxyModel (0xb3d01480) 0 + vptr=((& QProxyModel::_ZTV11QProxyModel) + 8u) + QAbstractItemModel (0xb3d014c0) 0 + primary-for QProxyModel (0xb3d01480) + QObject (0xb3d09438) 0 + primary-for QAbstractItemModel (0xb3d014c0) + +Vtable for QSortFilterProxyModel +QSortFilterProxyModel::_ZTV21QSortFilterProxyModel: 50u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QSortFilterProxyModel) +8 QSortFilterProxyModel::metaObject +12 QSortFilterProxyModel::qt_metacast +16 QSortFilterProxyModel::qt_metacall +20 QSortFilterProxyModel::~QSortFilterProxyModel +24 QSortFilterProxyModel::~QSortFilterProxyModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QSortFilterProxyModel::index +60 QSortFilterProxyModel::parent +64 QSortFilterProxyModel::rowCount +68 QSortFilterProxyModel::columnCount +72 QSortFilterProxyModel::hasChildren +76 QSortFilterProxyModel::data +80 QSortFilterProxyModel::setData +84 QSortFilterProxyModel::headerData +88 QSortFilterProxyModel::setHeaderData +92 QAbstractProxyModel::itemData +96 QAbstractItemModel::setItemData +100 QSortFilterProxyModel::mimeTypes +104 QSortFilterProxyModel::mimeData +108 QSortFilterProxyModel::dropMimeData +112 QSortFilterProxyModel::supportedDropActions +116 QSortFilterProxyModel::insertRows +120 QSortFilterProxyModel::insertColumns +124 QSortFilterProxyModel::removeRows +128 QSortFilterProxyModel::removeColumns +132 QSortFilterProxyModel::fetchMore +136 QSortFilterProxyModel::canFetchMore +140 QSortFilterProxyModel::flags +144 QSortFilterProxyModel::sort +148 QSortFilterProxyModel::buddy +152 QSortFilterProxyModel::match +156 QSortFilterProxyModel::span +160 QAbstractProxyModel::submit +164 QAbstractProxyModel::revert +168 QSortFilterProxyModel::setSourceModel +172 QSortFilterProxyModel::mapToSource +176 QSortFilterProxyModel::mapFromSource +180 QSortFilterProxyModel::mapSelectionToSource +184 QSortFilterProxyModel::mapSelectionFromSource +188 QSortFilterProxyModel::filterAcceptsRow +192 QSortFilterProxyModel::filterAcceptsColumn +196 QSortFilterProxyModel::lessThan + +Class QSortFilterProxyModel + size=8 align=4 + base size=8 base align=4 +QSortFilterProxyModel (0xb3d01780) 0 + vptr=((& QSortFilterProxyModel::_ZTV21QSortFilterProxyModel) + 8u) + QAbstractProxyModel (0xb3d017c0) 0 + primary-for QSortFilterProxyModel (0xb3d01780) + QAbstractItemModel (0xb3d01800) 0 + primary-for QAbstractProxyModel (0xb3d017c0) + QObject (0xb3d1c294) 0 + primary-for QAbstractItemModel (0xb3d01800) + +Vtable for QStandardItem +QStandardItem::_ZTV13QStandardItem: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QStandardItem) +8 QStandardItem::~QStandardItem +12 QStandardItem::~QStandardItem +16 QStandardItem::data +20 QStandardItem::setData +24 QStandardItem::clone +28 QStandardItem::type +32 QStandardItem::read +36 QStandardItem::write +40 QStandardItem::operator< + +Class QStandardItem + size=8 align=4 + base size=8 base align=4 +QStandardItem (0xb3d370f0) 0 + vptr=((& QStandardItem::_ZTV13QStandardItem) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3d93b04) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3d93a8c) 0 + +Vtable for QStandardItemModel +QStandardItemModel::_ZTV18QStandardItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QStandardItemModel) +8 QStandardItemModel::metaObject +12 QStandardItemModel::qt_metacast +16 QStandardItemModel::qt_metacall +20 QStandardItemModel::~QStandardItemModel +24 QStandardItemModel::~QStandardItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStandardItemModel::index +60 QStandardItemModel::parent +64 QStandardItemModel::rowCount +68 QStandardItemModel::columnCount +72 QStandardItemModel::hasChildren +76 QStandardItemModel::data +80 QStandardItemModel::setData +84 QStandardItemModel::headerData +88 QStandardItemModel::setHeaderData +92 QStandardItemModel::itemData +96 QStandardItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QStandardItemModel::supportedDropActions +116 QStandardItemModel::insertRows +120 QStandardItemModel::insertColumns +124 QStandardItemModel::removeRows +128 QStandardItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QStandardItemModel::flags +144 QStandardItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QStandardItemModel + size=8 align=4 + base size=8 base align=4 +QStandardItemModel (0xb3d88600) 0 + vptr=((& QStandardItemModel::_ZTV18QStandardItemModel) + 8u) + QAbstractItemModel (0xb3d88640) 0 + primary-for QStandardItemModel (0xb3d88600) + QObject (0xb3dac654) 0 + primary-for QAbstractItemModel (0xb3d88640) + +Vtable for QStringListModel +QStringListModel::_ZTV16QStringListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QStringListModel) +8 QStringListModel::metaObject +12 QStringListModel::qt_metacast +16 QStringListModel::qt_metacall +20 QStringListModel::~QStringListModel +24 QStringListModel::~QStringListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 QStringListModel::rowCount +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 QStringListModel::data +80 QStringListModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QStringListModel::supportedDropActions +116 QStringListModel::insertRows +120 QAbstractItemModel::insertColumns +124 QStringListModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QStringListModel::flags +144 QStringListModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QStringListModel + size=12 align=4 + base size=12 base align=4 +QStringListModel (0xb3d88a40) 0 + vptr=((& QStringListModel::_ZTV16QStringListModel) + 8u) + QAbstractListModel (0xb3d88a80) 0 + primary-for QStringListModel (0xb3d88a40) + QAbstractItemModel (0xb3d88ac0) 0 + primary-for QAbstractListModel (0xb3d88a80) + QObject (0xb3bc6a8c) 0 + primary-for QAbstractItemModel (0xb3d88ac0) + +Vtable for QStyledItemDelegate +QStyledItemDelegate::_ZTV19QStyledItemDelegate: 23u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QStyledItemDelegate) +8 QStyledItemDelegate::metaObject +12 QStyledItemDelegate::qt_metacast +16 QStyledItemDelegate::qt_metacall +20 QStyledItemDelegate::~QStyledItemDelegate +24 QStyledItemDelegate::~QStyledItemDelegate +28 QObject::event +32 QStyledItemDelegate::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyledItemDelegate::paint +60 QStyledItemDelegate::sizeHint +64 QStyledItemDelegate::createEditor +68 QStyledItemDelegate::setEditorData +72 QStyledItemDelegate::setModelData +76 QStyledItemDelegate::updateEditorGeometry +80 QStyledItemDelegate::editorEvent +84 QStyledItemDelegate::displayText +88 QStyledItemDelegate::initStyleOption + +Class QStyledItemDelegate + size=8 align=4 + base size=8 base align=4 +QStyledItemDelegate (0xb3d88d00) 0 + vptr=((& QStyledItemDelegate::_ZTV19QStyledItemDelegate) + 8u) + QAbstractItemDelegate (0xb3d88d40) 0 + primary-for QStyledItemDelegate (0xb3d88d00) + QObject (0xb3bdf528) 0 + primary-for QAbstractItemDelegate (0xb3d88d40) + +Vtable for QTableView +QTableView::_ZTV10QTableView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTableView) +8 QTableView::metaObject +12 QTableView::qt_metacast +16 QTableView::qt_metacall +20 QTableView::~QTableView +24 QTableView::~QTableView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QTableView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTableView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QTableView::scrollContentsBy +232 QTableView::setModel +236 QTableView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QTableView::visualRect +248 QTableView::scrollTo +252 QTableView::indexAt +256 QTableView::sizeHintForRow +260 QTableView::sizeHintForColumn +264 QAbstractItemView::reset +268 QTableView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QTableView::selectionChanged +296 QTableView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTableView::updateGeometries +312 QTableView::verticalScrollbarAction +316 QTableView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTableView::moveCursor +344 QTableView::horizontalOffset +348 QTableView::verticalOffset +352 QTableView::isIndexHidden +356 QTableView::setSelection +360 QTableView::visualRegionForSelection +364 QTableView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QTableView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI10QTableView) +392 QTableView::_ZThn8_N10QTableViewD1Ev +396 QTableView::_ZThn8_N10QTableViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableView + size=20 align=4 + base size=20 base align=4 +QTableView (0xb3bf1000) 0 + vptr=((& QTableView::_ZTV10QTableView) + 8u) + QAbstractItemView (0xb3bf1040) 0 + primary-for QTableView (0xb3bf1000) + QAbstractScrollArea (0xb3bf1080) 0 + primary-for QAbstractItemView (0xb3bf1040) + QFrame (0xb3bf10c0) 0 + primary-for QAbstractScrollArea (0xb3bf1080) + QWidget (0xb3bed2d0) 0 + primary-for QFrame (0xb3bf10c0) + QObject (0xb3bef0f0) 0 + primary-for QWidget (0xb3bed2d0) + QPaintDevice (0xb3bef12c) 8 + vptr=((& QTableView::_ZTV10QTableView) + 392u) + +Class QTableWidgetSelectionRange + size=16 align=4 + base size=16 base align=4 +QTableWidgetSelectionRange (0xb3beff00) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb3c0bc30) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb3c0bbb8) 0 + +Vtable for QTableWidgetItem +QTableWidgetItem::_ZTV16QTableWidgetItem: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTableWidgetItem) +8 QTableWidgetItem::~QTableWidgetItem +12 QTableWidgetItem::~QTableWidgetItem +16 QTableWidgetItem::clone +20 QTableWidgetItem::data +24 QTableWidgetItem::setData +28 QTableWidgetItem::operator< +32 QTableWidgetItem::read +36 QTableWidgetItem::write + +Class QTableWidgetItem + size=24 align=4 + base size=24 base align=4 +QTableWidgetItem (0xb3c0b708) 0 + vptr=((& QTableWidgetItem::_ZTV16QTableWidgetItem) + 8u) + +Vtable for QTableWidget +QTableWidget::_ZTV12QTableWidget: 107u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTableWidget) +8 QTableWidget::metaObject +12 QTableWidget::qt_metacast +16 QTableWidget::qt_metacall +20 QTableWidget::~QTableWidget +24 QTableWidget::~QTableWidget +28 QTableWidget::event +32 QObject::eventFilter +36 QTableView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QAbstractItemView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QAbstractItemView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTableView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QAbstractItemView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QTableWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QTableView::scrollContentsBy +232 QTableWidget::setModel +236 QTableView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QTableView::visualRect +248 QTableView::scrollTo +252 QTableView::indexAt +256 QTableView::sizeHintForRow +260 QTableView::sizeHintForColumn +264 QAbstractItemView::reset +268 QTableView::setRootIndex +272 QAbstractItemView::doItemsLayout +276 QAbstractItemView::selectAll +280 QAbstractItemView::dataChanged +284 QAbstractItemView::rowsInserted +288 QAbstractItemView::rowsAboutToBeRemoved +292 QTableView::selectionChanged +296 QTableView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTableView::updateGeometries +312 QTableView::verticalScrollbarAction +316 QTableView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTableView::moveCursor +344 QTableView::horizontalOffset +348 QTableView::verticalOffset +352 QTableView::isIndexHidden +356 QTableView::setSelection +360 QTableView::visualRegionForSelection +364 QTableView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QTableView::viewOptions +384 QTableWidget::mimeTypes +388 QTableWidget::mimeData +392 QTableWidget::dropMimeData +396 QTableWidget::supportedDropActions +400 (int (*)(...))-0x000000008 +404 (int (*)(...))(& _ZTI12QTableWidget) +408 QTableWidget::_ZThn8_N12QTableWidgetD1Ev +412 QTableWidget::_ZThn8_N12QTableWidgetD0Ev +416 QWidget::_ZThn8_NK7QWidget7devTypeEv +420 QWidget::_ZThn8_NK7QWidget11paintEngineEv +424 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTableWidget + size=20 align=4 + base size=20 base align=4 +QTableWidget (0xb3bf1d80) 0 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 8u) + QTableView (0xb3bf1dc0) 0 + primary-for QTableWidget (0xb3bf1d80) + QAbstractItemView (0xb3bf1e00) 0 + primary-for QTableView (0xb3bf1dc0) + QAbstractScrollArea (0xb3bf1e40) 0 + primary-for QAbstractItemView (0xb3bf1e00) + QFrame (0xb3bf1e80) 0 + primary-for QAbstractScrollArea (0xb3bf1e40) + QWidget (0xb3c36dc0) 0 + primary-for QFrame (0xb3bf1e80) + QObject (0xb3c4d000) 0 + primary-for QWidget (0xb3c36dc0) + QPaintDevice (0xb3c4d03c) 8 + vptr=((& QTableWidget::_ZTV12QTableWidget) + 408u) + +Vtable for QTreeView +QTreeView::_ZTV9QTreeView: 105u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTreeView) +8 QTreeView::metaObject +12 QTreeView::qt_metacast +16 QTreeView::qt_metacall +20 QTreeView::~QTreeView +24 QTreeView::~QTreeView +28 QAbstractItemView::event +32 QObject::eventFilter +36 QTreeView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTreeView::mousePressEvent +84 QTreeView::mouseReleaseEvent +88 QTreeView::mouseDoubleClickEvent +92 QTreeView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QTreeView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTreeView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QTreeView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QAbstractItemView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTreeView::viewportEvent +228 QTreeView::scrollContentsBy +232 QTreeView::setModel +236 QTreeView::setSelectionModel +240 QTreeView::keyboardSearch +244 QTreeView::visualRect +248 QTreeView::scrollTo +252 QTreeView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QTreeView::sizeHintForColumn +264 QTreeView::reset +268 QTreeView::setRootIndex +272 QTreeView::doItemsLayout +276 QTreeView::selectAll +280 QTreeView::dataChanged +284 QTreeView::rowsInserted +288 QTreeView::rowsAboutToBeRemoved +292 QTreeView::selectionChanged +296 QTreeView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTreeView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QTreeView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTreeView::moveCursor +344 QTreeView::horizontalOffset +348 QTreeView::verticalOffset +352 QTreeView::isIndexHidden +356 QTreeView::setSelection +360 QTreeView::visualRegionForSelection +364 QTreeView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QTreeView::drawRow +388 QTreeView::drawBranches +392 (int (*)(...))-0x000000008 +396 (int (*)(...))(& _ZTI9QTreeView) +400 QTreeView::_ZThn8_N9QTreeViewD1Ev +404 QTreeView::_ZThn8_N9QTreeViewD0Ev +408 QWidget::_ZThn8_NK7QWidget7devTypeEv +412 QWidget::_ZThn8_NK7QWidget11paintEngineEv +416 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeView + size=20 align=4 + base size=20 base align=4 +QTreeView (0xb3c64380) 0 + vptr=((& QTreeView::_ZTV9QTreeView) + 8u) + QAbstractItemView (0xb3c643c0) 0 + primary-for QTreeView (0xb3c64380) + QAbstractScrollArea (0xb3c64400) 0 + primary-for QAbstractItemView (0xb3c643c0) + QFrame (0xb3c64440) 0 + primary-for QAbstractScrollArea (0xb3c64400) + QWidget (0xb3c6e050) 0 + primary-for QFrame (0xb3c64440) + QObject (0xb3c68bb8) 0 + primary-for QWidget (0xb3c6e050) + QPaintDevice (0xb3c68bf4) 8 + vptr=((& QTreeView::_ZTV9QTreeView) + 400u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3c913c0) 0 + +Class QTreeWidgetItemIterator + size=12 align=4 + base size=12 base align=4 +QTreeWidgetItemIterator (0xb3c819d8) 0 + +Class QVector >:: + size=4 align=4 + base size=4 base align=4 +QVector >:: (0xb3cb9e10) 0 + +Class QVector > + size=4 align=4 + base size=4 base align=4 +QVector > (0xb3cb9d98) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb3ad621c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb3ad61a4) 0 + +Vtable for QTreeWidgetItem +QTreeWidgetItem::_ZTV15QTreeWidgetItem: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QTreeWidgetItem) +8 QTreeWidgetItem::~QTreeWidgetItem +12 QTreeWidgetItem::~QTreeWidgetItem +16 QTreeWidgetItem::clone +20 QTreeWidgetItem::data +24 QTreeWidgetItem::setData +28 QTreeWidgetItem::operator< +32 QTreeWidgetItem::read +36 QTreeWidgetItem::write + +Class QTreeWidgetItem + size=32 align=4 + base size=32 base align=4 +QTreeWidgetItem (0xb3c9ea8c) 0 + vptr=((& QTreeWidgetItem::_ZTV15QTreeWidgetItem) + 8u) + +Vtable for QTreeWidget +QTreeWidget::_ZTV11QTreeWidget: 109u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTreeWidget) +8 QTreeWidget::metaObject +12 QTreeWidget::qt_metacast +16 QTreeWidget::qt_metacall +20 QTreeWidget::~QTreeWidget +24 QTreeWidget::~QTreeWidget +28 QTreeWidget::event +32 QObject::eventFilter +36 QTreeView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTreeView::mousePressEvent +84 QTreeView::mouseReleaseEvent +88 QTreeView::mouseDoubleClickEvent +92 QTreeView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QTreeView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTreeView::paintEvent +128 QWidget::moveEvent +132 QAbstractItemView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QTreeView::dragMoveEvent +160 QAbstractItemView::dragLeaveEvent +164 QTreeWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QTreeView::viewportEvent +228 QTreeView::scrollContentsBy +232 QTreeWidget::setModel +236 QTreeView::setSelectionModel +240 QTreeView::keyboardSearch +244 QTreeView::visualRect +248 QTreeView::scrollTo +252 QTreeView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QTreeView::sizeHintForColumn +264 QTreeView::reset +268 QTreeView::setRootIndex +272 QTreeView::doItemsLayout +276 QTreeView::selectAll +280 QTreeView::dataChanged +284 QTreeView::rowsInserted +288 QTreeView::rowsAboutToBeRemoved +292 QTreeView::selectionChanged +296 QTreeView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QTreeView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QTreeView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QTreeView::moveCursor +344 QTreeView::horizontalOffset +348 QTreeView::verticalOffset +352 QTreeView::isIndexHidden +356 QTreeView::setSelection +360 QTreeView::visualRegionForSelection +364 QTreeView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QAbstractItemView::startDrag +380 QAbstractItemView::viewOptions +384 QTreeView::drawRow +388 QTreeView::drawBranches +392 QTreeWidget::mimeTypes +396 QTreeWidget::mimeData +400 QTreeWidget::dropMimeData +404 QTreeWidget::supportedDropActions +408 (int (*)(...))-0x000000008 +412 (int (*)(...))(& _ZTI11QTreeWidget) +416 QTreeWidget::_ZThn8_N11QTreeWidgetD1Ev +420 QTreeWidget::_ZThn8_N11QTreeWidgetD0Ev +424 QWidget::_ZThn8_NK7QWidget7devTypeEv +428 QWidget::_ZThn8_NK7QWidget11paintEngineEv +432 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTreeWidget + size=20 align=4 + base size=20 base align=4 +QTreeWidget (0xb3b005c0) 0 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 8u) + QTreeView (0xb3b00600) 0 + primary-for QTreeWidget (0xb3b005c0) + QAbstractItemView (0xb3b00640) 0 + primary-for QTreeView (0xb3b00600) + QAbstractScrollArea (0xb3b00680) 0 + primary-for QAbstractItemView (0xb3b00640) + QFrame (0xb3b006c0) 0 + primary-for QAbstractScrollArea (0xb3b00680) + QWidget (0xb3b130f0) 0 + primary-for QFrame (0xb3b006c0) + QObject (0xb3b11258) 0 + primary-for QWidget (0xb3b130f0) + QPaintDevice (0xb3b11294) 8 + vptr=((& QTreeWidget::_ZTV11QTreeWidget) + 416u) + +Vtable for QApplication +QApplication::_ZTV12QApplication: 20u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QApplication) +8 QApplication::metaObject +12 QApplication::qt_metacast +16 QApplication::qt_metacall +20 QApplication::~QApplication +24 QApplication::~QApplication +28 QApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QApplication::notify +60 QApplication::compressEvent +64 QApplication::x11EventFilter +68 QApplication::x11ClientMessage +72 QApplication::commitData +76 QApplication::saveState + +Class QApplication + size=8 align=4 + base size=8 base align=4 +QApplication (0xb3b00f00) 0 + vptr=((& QApplication::_ZTV12QApplication) + 8u) + QCoreApplication (0xb3b00f40) 0 + primary-for QApplication (0xb3b00f00) + QObject (0xb3b32dd4) 0 + primary-for QCoreApplication (0xb3b00f40) + +Vtable for QLayoutItem +QLayoutItem::_ZTV11QLayoutItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QLayoutItem) +8 QLayoutItem::~QLayoutItem +12 QLayoutItem::~QLayoutItem +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 QLayoutItem::hasHeightForWidth +48 QLayoutItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QLayoutItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QLayoutItem + size=8 align=4 + base size=8 base align=4 +QLayoutItem (0xb3b61f78) 0 + vptr=((& QLayoutItem::_ZTV11QLayoutItem) + 8u) + +Vtable for QSpacerItem +QSpacerItem::_ZTV11QSpacerItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QSpacerItem) +8 QSpacerItem::~QSpacerItem +12 QSpacerItem::~QSpacerItem +16 QSpacerItem::sizeHint +20 QSpacerItem::minimumSize +24 QSpacerItem::maximumSize +28 QSpacerItem::expandingDirections +32 QSpacerItem::setGeometry +36 QSpacerItem::geometry +40 QSpacerItem::isEmpty +44 QLayoutItem::hasHeightForWidth +48 QLayoutItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QLayoutItem::widget +64 QLayoutItem::layout +68 QSpacerItem::spacerItem + +Class QSpacerItem + size=36 align=4 + base size=36 base align=4 +QSpacerItem (0xb3b59840) 0 + vptr=((& QSpacerItem::_ZTV11QSpacerItem) + 8u) + QLayoutItem (0xb3b684b0) 0 + primary-for QSpacerItem (0xb3b59840) + +Vtable for QWidgetItem +QWidgetItem::_ZTV11QWidgetItem: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QWidgetItem) +8 QWidgetItem::~QWidgetItem +12 QWidgetItem::~QWidgetItem +16 QWidgetItem::sizeHint +20 QWidgetItem::minimumSize +24 QWidgetItem::maximumSize +28 QWidgetItem::expandingDirections +32 QWidgetItem::setGeometry +36 QWidgetItem::geometry +40 QWidgetItem::isEmpty +44 QWidgetItem::hasHeightForWidth +48 QWidgetItem::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QWidgetItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QWidgetItem + size=12 align=4 + base size=12 base align=4 +QWidgetItem (0xb3b59980) 0 + vptr=((& QWidgetItem::_ZTV11QWidgetItem) + 8u) + QLayoutItem (0xb3b68b7c) 0 + primary-for QWidgetItem (0xb3b59980) + +Vtable for QWidgetItemV2 +QWidgetItemV2::_ZTV13QWidgetItemV2: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWidgetItemV2) +8 QWidgetItemV2::~QWidgetItemV2 +12 QWidgetItemV2::~QWidgetItemV2 +16 QWidgetItemV2::sizeHint +20 QWidgetItemV2::minimumSize +24 QWidgetItemV2::maximumSize +28 QWidgetItem::expandingDirections +32 QWidgetItem::setGeometry +36 QWidgetItem::geometry +40 QWidgetItem::isEmpty +44 QWidgetItem::hasHeightForWidth +48 QWidgetItemV2::heightForWidth +52 QLayoutItem::minimumHeightForWidth +56 QLayoutItem::invalidate +60 QWidgetItem::widget +64 QLayoutItem::layout +68 QLayoutItem::spacerItem + +Class QWidgetItemV2 + size=68 align=4 + base size=68 base align=4 +QWidgetItemV2 (0xb3b59ac0) 0 + vptr=((& QWidgetItemV2::_ZTV13QWidgetItemV2) + 8u) + QWidgetItem (0xb3b59b00) 0 + primary-for QWidgetItemV2 (0xb3b59ac0) + QLayoutItem (0xb3b80000) 0 + primary-for QWidgetItem (0xb3b59b00) + +Class QLayoutIterator + size=8 align=4 + base size=8 base align=4 +QLayoutIterator (0xb3b80780) 0 + +Vtable for QLayout +QLayout::_ZTV7QLayout: 45u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QLayout) +8 QLayout::metaObject +12 QLayout::qt_metacast +16 QLayout::qt_metacall +20 QLayout::~QLayout +24 QLayout::~QLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLayout::invalidate +60 QLayout::geometry +64 __cxa_pure_virtual +68 QLayout::expandingDirections +72 QLayout::minimumSize +76 QLayout::maximumSize +80 QLayout::setGeometry +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 QLayout::indexOf +96 __cxa_pure_virtual +100 QLayout::isEmpty +104 QLayout::layout +108 (int (*)(...))-0x000000008 +112 (int (*)(...))(& _ZTI7QLayout) +116 QLayout::_ZThn8_N7QLayoutD1Ev +120 QLayout::_ZThn8_N7QLayoutD0Ev +124 __cxa_pure_virtual +128 QLayout::_ZThn8_NK7QLayout11minimumSizeEv +132 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +136 QLayout::_ZThn8_NK7QLayout19expandingDirectionsEv +140 QLayout::_ZThn8_N7QLayout11setGeometryERK5QRect +144 QLayout::_ZThn8_NK7QLayout8geometryEv +148 QLayout::_ZThn8_NK7QLayout7isEmptyEv +152 QLayoutItem::hasHeightForWidth +156 QLayoutItem::heightForWidth +160 QLayoutItem::minimumHeightForWidth +164 QLayout::_ZThn8_N7QLayout10invalidateEv +168 QLayoutItem::widget +172 QLayout::_ZThn8_N7QLayout6layoutEv +176 QLayoutItem::spacerItem + +Class QLayout + size=16 align=4 + base size=16 base align=4 +QLayout (0xb3b8a1e0) 0 + vptr=((& QLayout::_ZTV7QLayout) + 8u) + QObject (0xb3b8b21c) 0 + primary-for QLayout (0xb3b8a1e0) + QLayoutItem (0xb3b8b258) 8 + vptr=((& QLayout::_ZTV7QLayout) + 116u) + +Vtable for QGridLayout +QGridLayout::_ZTV11QGridLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QGridLayout) +8 QGridLayout::metaObject +12 QGridLayout::qt_metacast +16 QGridLayout::qt_metacall +20 QGridLayout::~QGridLayout +24 QGridLayout::~QGridLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGridLayout::invalidate +60 QLayout::geometry +64 QGridLayout::addItem +68 QGridLayout::expandingDirections +72 QGridLayout::minimumSize +76 QGridLayout::maximumSize +80 QGridLayout::setGeometry +84 QGridLayout::itemAt +88 QGridLayout::takeAt +92 QLayout::indexOf +96 QGridLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QGridLayout::sizeHint +112 QGridLayout::hasHeightForWidth +116 QGridLayout::heightForWidth +120 QGridLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QGridLayout) +132 QGridLayout::_ZThn8_N11QGridLayoutD1Ev +136 QGridLayout::_ZThn8_N11QGridLayoutD0Ev +140 QGridLayout::_ZThn8_NK11QGridLayout8sizeHintEv +144 QGridLayout::_ZThn8_NK11QGridLayout11minimumSizeEv +148 QGridLayout::_ZThn8_NK11QGridLayout11maximumSizeEv +152 QGridLayout::_ZThn8_NK11QGridLayout19expandingDirectionsEv +156 QGridLayout::_ZThn8_N11QGridLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QGridLayout::_ZThn8_NK11QGridLayout17hasHeightForWidthEv +172 QGridLayout::_ZThn8_NK11QGridLayout14heightForWidthEi +176 QGridLayout::_ZThn8_NK11QGridLayout21minimumHeightForWidthEi +180 QGridLayout::_ZThn8_N11QGridLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QGridLayout + size=16 align=4 + base size=16 base align=4 +QGridLayout (0xb3ba2400) 0 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 8u) + QLayout (0xb3b9aaa0) 0 + primary-for QGridLayout (0xb3ba2400) + QObject (0xb3ba6654) 0 + primary-for QLayout (0xb3b9aaa0) + QLayoutItem (0xb3ba6690) 8 + vptr=((& QGridLayout::_ZTV11QGridLayout) + 132u) + +Vtable for QBoxLayout +QBoxLayout::_ZTV10QBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QBoxLayout) +8 QBoxLayout::metaObject +12 QBoxLayout::qt_metacast +16 QBoxLayout::qt_metacall +20 QBoxLayout::~QBoxLayout +24 QBoxLayout::~QBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI10QBoxLayout) +132 QBoxLayout::_ZThn8_N10QBoxLayoutD1Ev +136 QBoxLayout::_ZThn8_N10QBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QBoxLayout + size=16 align=4 + base size=16 base align=4 +QBoxLayout (0xb3ba2b00) 0 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 8u) + QLayout (0xb39c3910) 0 + primary-for QBoxLayout (0xb3ba2b00) + QObject (0xb39c7b7c) 0 + primary-for QLayout (0xb39c3910) + QLayoutItem (0xb39c7bb8) 8 + vptr=((& QBoxLayout::_ZTV10QBoxLayout) + 132u) + +Vtable for QHBoxLayout +QHBoxLayout::_ZTV11QHBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHBoxLayout) +8 QHBoxLayout::metaObject +12 QHBoxLayout::qt_metacast +16 QHBoxLayout::qt_metacall +20 QHBoxLayout::~QHBoxLayout +24 QHBoxLayout::~QHBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QHBoxLayout) +132 QHBoxLayout::_ZThn8_N11QHBoxLayoutD1Ev +136 QHBoxLayout::_ZThn8_N11QHBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QHBoxLayout + size=16 align=4 + base size=16 base align=4 +QHBoxLayout (0xb3ba2e00) 0 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 8u) + QBoxLayout (0xb3ba2e40) 0 + primary-for QHBoxLayout (0xb3ba2e00) + QLayout (0xb39df1e0) 0 + primary-for QBoxLayout (0xb3ba2e40) + QObject (0xb39e1168) 0 + primary-for QLayout (0xb39df1e0) + QLayoutItem (0xb39e11a4) 8 + vptr=((& QHBoxLayout::_ZTV11QHBoxLayout) + 132u) + +Vtable for QVBoxLayout +QVBoxLayout::_ZTV11QVBoxLayout: 49u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QVBoxLayout) +8 QVBoxLayout::metaObject +12 QVBoxLayout::qt_metacast +16 QVBoxLayout::qt_metacall +20 QVBoxLayout::~QVBoxLayout +24 QVBoxLayout::~QVBoxLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QBoxLayout::invalidate +60 QLayout::geometry +64 QBoxLayout::addItem +68 QBoxLayout::expandingDirections +72 QBoxLayout::minimumSize +76 QBoxLayout::maximumSize +80 QBoxLayout::setGeometry +84 QBoxLayout::itemAt +88 QBoxLayout::takeAt +92 QLayout::indexOf +96 QBoxLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QBoxLayout::sizeHint +112 QBoxLayout::hasHeightForWidth +116 QBoxLayout::heightForWidth +120 QBoxLayout::minimumHeightForWidth +124 (int (*)(...))-0x000000008 +128 (int (*)(...))(& _ZTI11QVBoxLayout) +132 QVBoxLayout::_ZThn8_N11QVBoxLayoutD1Ev +136 QVBoxLayout::_ZThn8_N11QVBoxLayoutD0Ev +140 QBoxLayout::_ZThn8_NK10QBoxLayout8sizeHintEv +144 QBoxLayout::_ZThn8_NK10QBoxLayout11minimumSizeEv +148 QBoxLayout::_ZThn8_NK10QBoxLayout11maximumSizeEv +152 QBoxLayout::_ZThn8_NK10QBoxLayout19expandingDirectionsEv +156 QBoxLayout::_ZThn8_N10QBoxLayout11setGeometryERK5QRect +160 QLayout::_ZThn8_NK7QLayout8geometryEv +164 QLayout::_ZThn8_NK7QLayout7isEmptyEv +168 QBoxLayout::_ZThn8_NK10QBoxLayout17hasHeightForWidthEv +172 QBoxLayout::_ZThn8_NK10QBoxLayout14heightForWidthEi +176 QBoxLayout::_ZThn8_NK10QBoxLayout21minimumHeightForWidthEi +180 QBoxLayout::_ZThn8_N10QBoxLayout10invalidateEv +184 QLayoutItem::widget +188 QLayout::_ZThn8_N7QLayout6layoutEv +192 QLayoutItem::spacerItem + +Class QVBoxLayout + size=16 align=4 + base size=16 base align=4 +QVBoxLayout (0xb39ec080) 0 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 8u) + QBoxLayout (0xb39ec0c0) 0 + primary-for QVBoxLayout (0xb39ec080) + QLayout (0xb39e6f50) 0 + primary-for QBoxLayout (0xb39ec0c0) + QObject (0xb39e1ce4) 0 + primary-for QLayout (0xb39e6f50) + QLayoutItem (0xb39e1d20) 8 + vptr=((& QVBoxLayout::_ZTV11QVBoxLayout) + 132u) + +Vtable for QClipboard +QClipboard::_ZTV10QClipboard: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QClipboard) +8 QClipboard::metaObject +12 QClipboard::qt_metacast +16 QClipboard::qt_metacall +20 QClipboard::~QClipboard +24 QClipboard::~QClipboard +28 QClipboard::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QClipboard::connectNotify +52 QObject::disconnectNotify + +Class QClipboard + size=8 align=4 + base size=8 base align=4 +QClipboard (0xb39ec300) 0 + vptr=((& QClipboard::_ZTV10QClipboard) + 8u) + QObject (0xb39f3834) 0 + primary-for QClipboard (0xb39ec300) + +Vtable for QDesktopWidget +QDesktopWidget::_ZTV14QDesktopWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDesktopWidget) +8 QDesktopWidget::metaObject +12 QDesktopWidget::qt_metacast +16 QDesktopWidget::qt_metacall +20 QDesktopWidget::~QDesktopWidget +24 QDesktopWidget::~QDesktopWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QDesktopWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI14QDesktopWidget) +232 QDesktopWidget::_ZThn8_N14QDesktopWidgetD1Ev +236 QDesktopWidget::_ZThn8_N14QDesktopWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDesktopWidget + size=20 align=4 + base size=20 base align=4 +QDesktopWidget (0xb39ec5c0) 0 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 8u) + QWidget (0xb3a05f50) 0 + primary-for QDesktopWidget (0xb39ec5c0) + QObject (0xb3a07e88) 0 + primary-for QWidget (0xb3a05f50) + QPaintDevice (0xb3a07ec4) 8 + vptr=((& QDesktopWidget::_ZTV14QDesktopWidget) + 232u) + +Vtable for QFormLayout +QFormLayout::_ZTV11QFormLayout: 48u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFormLayout) +8 QFormLayout::metaObject +12 QFormLayout::qt_metacast +16 QFormLayout::qt_metacall +20 QFormLayout::~QFormLayout +24 QFormLayout::~QFormLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFormLayout::invalidate +60 QLayout::geometry +64 QFormLayout::addItem +68 QFormLayout::expandingDirections +72 QFormLayout::minimumSize +76 QLayout::maximumSize +80 QFormLayout::setGeometry +84 QFormLayout::itemAt +88 QFormLayout::takeAt +92 QLayout::indexOf +96 QFormLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QFormLayout::sizeHint +112 QFormLayout::hasHeightForWidth +116 QFormLayout::heightForWidth +120 (int (*)(...))-0x000000008 +124 (int (*)(...))(& _ZTI11QFormLayout) +128 QFormLayout::_ZThn8_N11QFormLayoutD1Ev +132 QFormLayout::_ZThn8_N11QFormLayoutD0Ev +136 QFormLayout::_ZThn8_NK11QFormLayout8sizeHintEv +140 QFormLayout::_ZThn8_NK11QFormLayout11minimumSizeEv +144 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +148 QFormLayout::_ZThn8_NK11QFormLayout19expandingDirectionsEv +152 QFormLayout::_ZThn8_N11QFormLayout11setGeometryERK5QRect +156 QLayout::_ZThn8_NK7QLayout8geometryEv +160 QLayout::_ZThn8_NK7QLayout7isEmptyEv +164 QFormLayout::_ZThn8_NK11QFormLayout17hasHeightForWidthEv +168 QFormLayout::_ZThn8_NK11QFormLayout14heightForWidthEi +172 QLayoutItem::minimumHeightForWidth +176 QFormLayout::_ZThn8_N11QFormLayout10invalidateEv +180 QLayoutItem::widget +184 QLayout::_ZThn8_N7QLayout6layoutEv +188 QLayoutItem::spacerItem + +Class QFormLayout + size=16 align=4 + base size=16 base align=4 +QFormLayout (0xb39ec980) 0 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 8u) + QLayout (0xb3a13b90) 0 + primary-for QFormLayout (0xb39ec980) + QObject (0xb3a11e4c) 0 + primary-for QLayout (0xb3a13b90) + QLayoutItem (0xb3a11e88) 8 + vptr=((& QFormLayout::_ZTV11QFormLayout) + 128u) + +Vtable for QSessionManager +QSessionManager::_ZTV15QSessionManager: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSessionManager) +8 QSessionManager::metaObject +12 QSessionManager::qt_metacast +16 QSessionManager::qt_metacall +20 QSessionManager::~QSessionManager +24 QSessionManager::~QSessionManager +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSessionManager + size=8 align=4 + base size=8 base align=4 +QSessionManager (0xb39ecc80) 0 + vptr=((& QSessionManager::_ZTV15QSessionManager) + 8u) + QObject (0xb3a311e0) 0 + primary-for QSessionManager (0xb39ecc80) + +Vtable for QShortcut +QShortcut::_ZTV9QShortcut: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QShortcut) +8 QShortcut::metaObject +12 QShortcut::qt_metacast +16 QShortcut::qt_metacall +20 QShortcut::~QShortcut +24 QShortcut::~QShortcut +28 QShortcut::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QShortcut + size=8 align=4 + base size=8 base align=4 +QShortcut (0xb39ecf40) 0 + vptr=((& QShortcut::_ZTV9QShortcut) + 8u) + QObject (0xb3a31bb8) 0 + primary-for QShortcut (0xb39ecf40) + +Vtable for QSound +QSound::_ZTV6QSound: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QSound) +8 QSound::metaObject +12 QSound::qt_metacast +16 QSound::qt_metacall +20 QSound::~QSound +24 QSound::~QSound +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSound + size=8 align=4 + base size=8 base align=4 +QSound (0xb3a46240) 0 + vptr=((& QSound::_ZTV6QSound) + 8u) + QObject (0xb3a4a5dc) 0 + primary-for QSound (0xb3a46240) + +Vtable for QStackedLayout +QStackedLayout::_ZTV14QStackedLayout: 46u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QStackedLayout) +8 QStackedLayout::metaObject +12 QStackedLayout::qt_metacast +16 QStackedLayout::qt_metacall +20 QStackedLayout::~QStackedLayout +24 QStackedLayout::~QStackedLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QLayout::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLayout::invalidate +60 QLayout::geometry +64 QStackedLayout::addItem +68 QLayout::expandingDirections +72 QStackedLayout::minimumSize +76 QLayout::maximumSize +80 QStackedLayout::setGeometry +84 QStackedLayout::itemAt +88 QStackedLayout::takeAt +92 QLayout::indexOf +96 QStackedLayout::count +100 QLayout::isEmpty +104 QLayout::layout +108 QStackedLayout::sizeHint +112 (int (*)(...))-0x000000008 +116 (int (*)(...))(& _ZTI14QStackedLayout) +120 QStackedLayout::_ZThn8_N14QStackedLayoutD1Ev +124 QStackedLayout::_ZThn8_N14QStackedLayoutD0Ev +128 QStackedLayout::_ZThn8_NK14QStackedLayout8sizeHintEv +132 QStackedLayout::_ZThn8_NK14QStackedLayout11minimumSizeEv +136 QLayout::_ZThn8_NK7QLayout11maximumSizeEv +140 QLayout::_ZThn8_NK7QLayout19expandingDirectionsEv +144 QStackedLayout::_ZThn8_N14QStackedLayout11setGeometryERK5QRect +148 QLayout::_ZThn8_NK7QLayout8geometryEv +152 QLayout::_ZThn8_NK7QLayout7isEmptyEv +156 QLayoutItem::hasHeightForWidth +160 QLayoutItem::heightForWidth +164 QLayoutItem::minimumHeightForWidth +168 QLayout::_ZThn8_N7QLayout10invalidateEv +172 QLayoutItem::widget +176 QLayout::_ZThn8_N7QLayout6layoutEv +180 QLayoutItem::spacerItem + +Class QStackedLayout + size=16 align=4 + base size=16 base align=4 +QStackedLayout (0xb3a46540) 0 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 8u) + QLayout (0xb3a53d70) 0 + primary-for QStackedLayout (0xb3a46540) + QObject (0xb3a5b03c) 0 + primary-for QLayout (0xb3a53d70) + QLayoutItem (0xb3a5b078) 8 + vptr=((& QStackedLayout::_ZTV14QStackedLayout) + 120u) + +Class QToolTip + size=1 align=1 + base size=0 base align=1 +QToolTip (0xb3a6a0b4) 0 empty + +Class QWhatsThis + size=1 align=1 + base size=0 base align=1 +QWhatsThis (0xb3a6a3c0) 0 empty + +Vtable for QWidgetAction +QWidgetAction::_ZTV13QWidgetAction: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWidgetAction) +8 QWidgetAction::metaObject +12 QWidgetAction::qt_metacast +16 QWidgetAction::qt_metacall +20 QWidgetAction::~QWidgetAction +24 QWidgetAction::~QWidgetAction +28 QWidgetAction::event +32 QWidgetAction::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidgetAction::createWidget +60 QWidgetAction::deleteWidget + +Class QWidgetAction + size=8 align=4 + base size=8 base align=4 +QWidgetAction (0xb3a46940) 0 + vptr=((& QWidgetAction::_ZTV13QWidgetAction) + 8u) + QAction (0xb3a46980) 0 + primary-for QWidgetAction (0xb3a46940) + QObject (0xb3a6a438) 0 + primary-for QAction (0xb3a46980) + +Class QColormap + size=4 align=4 + base size=4 base align=4 +QColormap (0xb3a7d000) 0 + +Class QTextItem + size=1 align=1 + base size=0 base align=1 +QTextItem (0xb3a7d438) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb3a7d690) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3a7df00) 0 + +Vtable for QPaintEngine +QPaintEngine::_ZTV12QPaintEngine: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPaintEngine) +8 QPaintEngine::~QPaintEngine +12 QPaintEngine::~QPaintEngine +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QPaintEngine::drawRects +32 QPaintEngine::drawRects +36 QPaintEngine::drawLines +40 QPaintEngine::drawLines +44 QPaintEngine::drawEllipse +48 QPaintEngine::drawEllipse +52 QPaintEngine::drawPath +56 QPaintEngine::drawPoints +60 QPaintEngine::drawPoints +64 QPaintEngine::drawPolygon +68 QPaintEngine::drawPolygon +72 __cxa_pure_virtual +76 QPaintEngine::drawTextItem +80 QPaintEngine::drawTiledPixmap +84 QPaintEngine::drawImage +88 QPaintEngine::coordinateOffset +92 __cxa_pure_virtual + +Class QPaintEngine + size=20 align=4 + base size=20 base align=4 +QPaintEngine (0xb3a7d780) 0 + vptr=((& QPaintEngine::_ZTV12QPaintEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3aa50f0) 0 + +Class QPaintEngineState + size=4 align=4 + base size=4 base align=4 +QPaintEngineState (0xb3a96dd4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3aa5e10) 0 + +Vtable for QPrinter +QPrinter::_ZTV8QPrinter: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QPrinter) +8 QPrinter::~QPrinter +12 QPrinter::~QPrinter +16 QPrinter::devType +20 QPrinter::paintEngine +24 QPrinter::metric + +Class QPrinter + size=12 align=4 + base size=12 base align=4 +QPrinter (0xb3aa24c0) 0 + vptr=((& QPrinter::_ZTV8QPrinter) + 8u) + QPaintDevice (0xb38f61a4) 0 + primary-for QPrinter (0xb3aa24c0) + +Vtable for QPrintEngine +QPrintEngine::_ZTV12QPrintEngine: 10u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QPrintEngine) +8 QPrintEngine::~QPrintEngine +12 QPrintEngine::~QPrintEngine +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual + +Class QPrintEngine + size=4 align=4 + base size=4 base align=4 +QPrintEngine (0xb391299c) 0 nearly-empty + vptr=((& QPrintEngine::_ZTV12QPrintEngine) + 8u) + +Class QPrinterInfo + size=4 align=4 + base size=4 base align=4 +QPrinterInfo (0xb3912ec4) 0 + +Class QStylePainter + size=12 align=4 + base size=12 base align=4 +QStylePainter (0xb3aa2a40) 0 + QPainter (0xb39238e8) 0 + +Vtable for QCommonStyle +QCommonStyle::_ZTV12QCommonStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCommonStyle) +8 QCommonStyle::metaObject +12 QCommonStyle::qt_metacast +16 QCommonStyle::qt_metacall +20 QCommonStyle::~QCommonStyle +24 QCommonStyle::~QCommonStyle +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QStyle::polish +60 QStyle::unpolish +64 QStyle::polish +68 QStyle::unpolish +72 QStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 QCommonStyle::drawPrimitive +100 QCommonStyle::drawControl +104 QCommonStyle::subElementRect +108 QCommonStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QCommonStyle::subControlRect +120 QCommonStyle::pixelMetric +124 QCommonStyle::sizeFromContents +128 QCommonStyle::styleHint +132 QCommonStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QCommonStyle + size=8 align=4 + base size=8 base align=4 +QCommonStyle (0xb3aa2f00) 0 + vptr=((& QCommonStyle::_ZTV12QCommonStyle) + 8u) + QStyle (0xb3aa2f40) 0 + primary-for QCommonStyle (0xb3aa2f00) + QObject (0xb3934474) 0 + primary-for QStyle (0xb3aa2f40) + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb394a744) 0 + +Vtable for QMotifStyle +QMotifStyle::_ZTV11QMotifStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMotifStyle) +8 QMotifStyle::metaObject +12 QMotifStyle::qt_metacast +16 QMotifStyle::qt_metacall +20 QMotifStyle::~QMotifStyle +24 QMotifStyle::~QMotifStyle +28 QMotifStyle::event +32 QMotifStyle::eventFilter +36 QMotifStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMotifStyle::polish +60 QMotifStyle::unpolish +64 QMotifStyle::polish +68 QMotifStyle::unpolish +72 QMotifStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QMotifStyle::standardPalette +96 QMotifStyle::drawPrimitive +100 QMotifStyle::drawControl +104 QMotifStyle::subElementRect +108 QMotifStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QMotifStyle::subControlRect +120 QMotifStyle::pixelMetric +124 QMotifStyle::sizeFromContents +128 QMotifStyle::styleHint +132 QMotifStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QMotifStyle + size=16 align=4 + base size=13 base align=4 +QMotifStyle (0xb3945200) 0 + vptr=((& QMotifStyle::_ZTV11QMotifStyle) + 8u) + QCommonStyle (0xb3945240) 0 + primary-for QMotifStyle (0xb3945200) + QStyle (0xb3945280) 0 + primary-for QCommonStyle (0xb3945240) + QObject (0xb394a384) 0 + primary-for QStyle (0xb3945280) + +Vtable for QCDEStyle +QCDEStyle::_ZTV9QCDEStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QCDEStyle) +8 QCDEStyle::metaObject +12 QCDEStyle::qt_metacast +16 QCDEStyle::qt_metacall +20 QCDEStyle::~QCDEStyle +24 QCDEStyle::~QCDEStyle +28 QMotifStyle::event +32 QMotifStyle::eventFilter +36 QMotifStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMotifStyle::polish +60 QMotifStyle::unpolish +64 QMotifStyle::polish +68 QMotifStyle::unpolish +72 QMotifStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QCDEStyle::standardPalette +96 QCDEStyle::drawPrimitive +100 QCDEStyle::drawControl +104 QMotifStyle::subElementRect +108 QMotifStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QMotifStyle::subControlRect +120 QCDEStyle::pixelMetric +124 QMotifStyle::sizeFromContents +128 QMotifStyle::styleHint +132 QMotifStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QCDEStyle + size=16 align=4 + base size=13 base align=4 +QCDEStyle (0xb3945580) 0 + vptr=((& QCDEStyle::_ZTV9QCDEStyle) + 8u) + QMotifStyle (0xb39455c0) 0 + primary-for QCDEStyle (0xb3945580) + QCommonStyle (0xb3945600) 0 + primary-for QMotifStyle (0xb39455c0) + QStyle (0xb3945640) 0 + primary-for QCommonStyle (0xb3945600) + QObject (0xb396121c) 0 + primary-for QStyle (0xb3945640) + +Vtable for QWindowsStyle +QWindowsStyle::_ZTV13QWindowsStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QWindowsStyle) +8 QWindowsStyle::metaObject +12 QWindowsStyle::qt_metacast +16 QWindowsStyle::qt_metacall +20 QWindowsStyle::~QWindowsStyle +24 QWindowsStyle::~QWindowsStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QStyle::standardPalette +96 QWindowsStyle::drawPrimitive +100 QWindowsStyle::drawControl +104 QWindowsStyle::subElementRect +108 QWindowsStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QCommonStyle::subControlRect +120 QWindowsStyle::pixelMetric +124 QWindowsStyle::sizeFromContents +128 QWindowsStyle::styleHint +132 QWindowsStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsStyle + size=12 align=4 + base size=12 base align=4 +QWindowsStyle (0xb3945880) 0 + vptr=((& QWindowsStyle::_ZTV13QWindowsStyle) + 8u) + QCommonStyle (0xb39458c0) 0 + primary-for QWindowsStyle (0xb3945880) + QStyle (0xb3945900) 0 + primary-for QCommonStyle (0xb39458c0) + QObject (0xb3961a14) 0 + primary-for QStyle (0xb3945900) + +Vtable for QCleanlooksStyle +QCleanlooksStyle::_ZTV16QCleanlooksStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCleanlooksStyle) +8 QCleanlooksStyle::metaObject +12 QCleanlooksStyle::qt_metacast +16 QCleanlooksStyle::qt_metacall +20 QCleanlooksStyle::~QCleanlooksStyle +24 QCleanlooksStyle::~QCleanlooksStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCleanlooksStyle::polish +60 QCleanlooksStyle::unpolish +64 QCleanlooksStyle::polish +68 QCleanlooksStyle::unpolish +72 QCleanlooksStyle::polish +76 QStyle::itemTextRect +80 QCleanlooksStyle::itemPixmapRect +84 QCleanlooksStyle::drawItemText +88 QCleanlooksStyle::drawItemPixmap +92 QCleanlooksStyle::standardPalette +96 QCleanlooksStyle::drawPrimitive +100 QCleanlooksStyle::drawControl +104 QCleanlooksStyle::subElementRect +108 QCleanlooksStyle::drawComplexControl +112 QCleanlooksStyle::hitTestComplexControl +116 QCleanlooksStyle::subControlRect +120 QCleanlooksStyle::pixelMetric +124 QCleanlooksStyle::sizeFromContents +128 QCleanlooksStyle::styleHint +132 QCleanlooksStyle::standardPixmap +136 QCleanlooksStyle::generatedIconPixmap + +Class QCleanlooksStyle + size=12 align=4 + base size=12 base align=4 +QCleanlooksStyle (0xb3945bc0) 0 + vptr=((& QCleanlooksStyle::_ZTV16QCleanlooksStyle) + 8u) + QWindowsStyle (0xb3945c00) 0 + primary-for QCleanlooksStyle (0xb3945bc0) + QCommonStyle (0xb3945c40) 0 + primary-for QWindowsStyle (0xb3945c00) + QStyle (0xb3945c80) 0 + primary-for QCommonStyle (0xb3945c40) + QObject (0xb39787bc) 0 + primary-for QStyle (0xb3945c80) + +Vtable for QPlastiqueStyle +QPlastiqueStyle::_ZTV15QPlastiqueStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QPlastiqueStyle) +8 QPlastiqueStyle::metaObject +12 QPlastiqueStyle::qt_metacast +16 QPlastiqueStyle::qt_metacall +20 QPlastiqueStyle::~QPlastiqueStyle +24 QPlastiqueStyle::~QPlastiqueStyle +28 QObject::event +32 QPlastiqueStyle::eventFilter +36 QPlastiqueStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QPlastiqueStyle::polish +60 QPlastiqueStyle::unpolish +64 QPlastiqueStyle::polish +68 QPlastiqueStyle::unpolish +72 QPlastiqueStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QPlastiqueStyle::standardPalette +96 QPlastiqueStyle::drawPrimitive +100 QPlastiqueStyle::drawControl +104 QPlastiqueStyle::subElementRect +108 QPlastiqueStyle::drawComplexControl +112 QPlastiqueStyle::hitTestComplexControl +116 QPlastiqueStyle::subControlRect +120 QPlastiqueStyle::pixelMetric +124 QPlastiqueStyle::sizeFromContents +128 QPlastiqueStyle::styleHint +132 QPlastiqueStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QPlastiqueStyle + size=16 align=4 + base size=16 base align=4 +QPlastiqueStyle (0xb3945f40) 0 + vptr=((& QPlastiqueStyle::_ZTV15QPlastiqueStyle) + 8u) + QWindowsStyle (0xb3945f80) 0 + primary-for QPlastiqueStyle (0xb3945f40) + QCommonStyle (0xb3945fc0) 0 + primary-for QWindowsStyle (0xb3945f80) + QStyle (0xb398d000) 0 + primary-for QCommonStyle (0xb3945fc0) + QObject (0xb398a4b0) 0 + primary-for QStyle (0xb398d000) + +Class QStyleFactory + size=1 align=1 + base size=0 base align=1 +QStyleFactory (0xb399d3fc) 0 empty + +Vtable for QStyleFactoryInterface +QStyleFactoryInterface::_ZTV22QStyleFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI22QStyleFactoryInterface) +8 QStyleFactoryInterface::~QStyleFactoryInterface +12 QStyleFactoryInterface::~QStyleFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QStyleFactoryInterface + size=4 align=4 + base size=4 base align=4 +QStyleFactoryInterface (0xb398d2c0) 0 nearly-empty + vptr=((& QStyleFactoryInterface::_ZTV22QStyleFactoryInterface) + 8u) + QFactoryInterface (0xb399d438) 0 nearly-empty + primary-for QStyleFactoryInterface (0xb398d2c0) + +Vtable for QStylePlugin +QStylePlugin::_ZTV12QStylePlugin: 22u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QStylePlugin) +8 QStylePlugin::metaObject +12 QStylePlugin::qt_metacast +16 QStylePlugin::qt_metacall +20 QStylePlugin::~QStylePlugin +24 QStylePlugin::~QStylePlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 (int (*)(...))-0x000000008 +68 (int (*)(...))(& _ZTI12QStylePlugin) +72 QStylePlugin::_ZThn8_N12QStylePluginD1Ev +76 QStylePlugin::_ZThn8_N12QStylePluginD0Ev +80 __cxa_pure_virtual +84 __cxa_pure_virtual + +Class QStylePlugin + size=12 align=4 + base size=12 base align=4 +QStylePlugin (0xb3998c80) 0 + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 8u) + QObject (0xb399d780) 0 + primary-for QStylePlugin (0xb3998c80) + QStyleFactoryInterface (0xb398d480) 8 nearly-empty + vptr=((& QStylePlugin::_ZTV12QStylePlugin) + 72u) + QFactoryInterface (0xb399d7bc) 8 nearly-empty + primary-for QStyleFactoryInterface (0xb398d480) + +Vtable for QWindowsCEStyle +QWindowsCEStyle::_ZTV15QWindowsCEStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QWindowsCEStyle) +8 QWindowsCEStyle::metaObject +12 QWindowsCEStyle::qt_metacast +16 QWindowsCEStyle::qt_metacall +20 QWindowsCEStyle::~QWindowsCEStyle +24 QWindowsCEStyle::~QWindowsCEStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsCEStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsCEStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsCEStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QWindowsCEStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsCEStyle::standardPalette +96 QWindowsCEStyle::drawPrimitive +100 QWindowsCEStyle::drawControl +104 QWindowsCEStyle::subElementRect +108 QWindowsCEStyle::drawComplexControl +112 QWindowsCEStyle::hitTestComplexControl +116 QWindowsCEStyle::subControlRect +120 QWindowsCEStyle::pixelMetric +124 QWindowsCEStyle::sizeFromContents +128 QWindowsCEStyle::styleHint +132 QWindowsCEStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsCEStyle + size=12 align=4 + base size=12 base align=4 +QWindowsCEStyle (0xb398d6c0) 0 + vptr=((& QWindowsCEStyle::_ZTV15QWindowsCEStyle) + 8u) + QWindowsStyle (0xb398d700) 0 + primary-for QWindowsCEStyle (0xb398d6c0) + QCommonStyle (0xb398d740) 0 + primary-for QWindowsStyle (0xb398d700) + QStyle (0xb398d780) 0 + primary-for QCommonStyle (0xb398d740) + QObject (0xb399dfb4) 0 + primary-for QStyle (0xb398d780) + +Vtable for QWindowsMobileStyle +QWindowsMobileStyle::_ZTV19QWindowsMobileStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QWindowsMobileStyle) +8 QWindowsMobileStyle::metaObject +12 QWindowsMobileStyle::qt_metacast +16 QWindowsMobileStyle::qt_metacall +20 QWindowsMobileStyle::~QWindowsMobileStyle +24 QWindowsMobileStyle::~QWindowsMobileStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsMobileStyle::polish +60 QWindowsStyle::unpolish +64 QWindowsMobileStyle::polish +68 QWindowsStyle::unpolish +72 QWindowsMobileStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsMobileStyle::standardPalette +96 QWindowsMobileStyle::drawPrimitive +100 QWindowsMobileStyle::drawControl +104 QWindowsMobileStyle::subElementRect +108 QWindowsMobileStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QWindowsMobileStyle::subControlRect +120 QWindowsMobileStyle::pixelMetric +124 QWindowsMobileStyle::sizeFromContents +128 QWindowsMobileStyle::styleHint +132 QWindowsMobileStyle::standardPixmap +136 QWindowsMobileStyle::generatedIconPixmap + +Class QWindowsMobileStyle + size=12 align=4 + base size=12 base align=4 +QWindowsMobileStyle (0xb398d9c0) 0 + vptr=((& QWindowsMobileStyle::_ZTV19QWindowsMobileStyle) + 8u) + QWindowsStyle (0xb398da00) 0 + primary-for QWindowsMobileStyle (0xb398d9c0) + QCommonStyle (0xb398da40) 0 + primary-for QWindowsStyle (0xb398da00) + QStyle (0xb398da80) 0 + primary-for QCommonStyle (0xb398da40) + QObject (0xb39afa14) 0 + primary-for QStyle (0xb398da80) + +Vtable for QWindowsXPStyle +QWindowsXPStyle::_ZTV15QWindowsXPStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QWindowsXPStyle) +8 QWindowsXPStyle::metaObject +12 QWindowsXPStyle::qt_metacast +16 QWindowsXPStyle::qt_metacall +20 QWindowsXPStyle::~QWindowsXPStyle +24 QWindowsXPStyle::~QWindowsXPStyle +28 QObject::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsXPStyle::polish +60 QWindowsXPStyle::unpolish +64 QWindowsXPStyle::polish +68 QWindowsXPStyle::unpolish +72 QWindowsXPStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsXPStyle::standardPalette +96 QWindowsXPStyle::drawPrimitive +100 QWindowsXPStyle::drawControl +104 QWindowsXPStyle::subElementRect +108 QWindowsXPStyle::drawComplexControl +112 QCommonStyle::hitTestComplexControl +116 QWindowsXPStyle::subControlRect +120 QWindowsXPStyle::pixelMetric +124 QWindowsXPStyle::sizeFromContents +128 QWindowsXPStyle::styleHint +132 QWindowsXPStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsXPStyle + size=16 align=4 + base size=16 base align=4 +QWindowsXPStyle (0xb398dd40) 0 + vptr=((& QWindowsXPStyle::_ZTV15QWindowsXPStyle) + 8u) + QWindowsStyle (0xb398dd80) 0 + primary-for QWindowsXPStyle (0xb398dd40) + QCommonStyle (0xb398ddc0) 0 + primary-for QWindowsStyle (0xb398dd80) + QStyle (0xb398de00) 0 + primary-for QCommonStyle (0xb398ddc0) + QObject (0xb37c6528) 0 + primary-for QStyle (0xb398de00) + +Vtable for QWindowsVistaStyle +QWindowsVistaStyle::_ZTV18QWindowsVistaStyle: 35u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QWindowsVistaStyle) +8 QWindowsVistaStyle::metaObject +12 QWindowsVistaStyle::qt_metacast +16 QWindowsVistaStyle::qt_metacall +20 QWindowsVistaStyle::~QWindowsVistaStyle +24 QWindowsVistaStyle::~QWindowsVistaStyle +28 QWindowsVistaStyle::event +32 QWindowsStyle::eventFilter +36 QWindowsStyle::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWindowsVistaStyle::polish +60 QWindowsVistaStyle::unpolish +64 QWindowsVistaStyle::polish +68 QWindowsVistaStyle::unpolish +72 QWindowsVistaStyle::polish +76 QStyle::itemTextRect +80 QStyle::itemPixmapRect +84 QStyle::drawItemText +88 QStyle::drawItemPixmap +92 QWindowsVistaStyle::standardPalette +96 QWindowsVistaStyle::drawPrimitive +100 QWindowsVistaStyle::drawControl +104 QWindowsVistaStyle::subElementRect +108 QWindowsVistaStyle::drawComplexControl +112 QWindowsVistaStyle::hitTestComplexControl +116 QWindowsVistaStyle::subControlRect +120 QWindowsVistaStyle::pixelMetric +124 QWindowsVistaStyle::sizeFromContents +128 QWindowsVistaStyle::styleHint +132 QWindowsVistaStyle::standardPixmap +136 QCommonStyle::generatedIconPixmap + +Class QWindowsVistaStyle + size=16 align=4 + base size=16 base align=4 +QWindowsVistaStyle (0xb37d80c0) 0 + vptr=((& QWindowsVistaStyle::_ZTV18QWindowsVistaStyle) + 8u) + QWindowsXPStyle (0xb37d8100) 0 + primary-for QWindowsVistaStyle (0xb37d80c0) + QWindowsStyle (0xb37d8140) 0 + primary-for QWindowsXPStyle (0xb37d8100) + QCommonStyle (0xb37d8180) 0 + primary-for QWindowsStyle (0xb37d8140) + QStyle (0xb37d81c0) 0 + primary-for QCommonStyle (0xb37d8180) + QObject (0xb37d930c) 0 + primary-for QStyle (0xb37d81c0) + +Class QTextLength + size=12 align=4 + base size=12 base align=4 +QTextLength (0xb37eb168) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb37f3bf4) 0 + +Class QTextFormat + size=8 align=4 + base size=8 base align=4 +QTextFormat (0xb37f3474) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb382a0b4) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb382a03c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb382add4) 0 + +Class QTextCharFormat + size=8 align=4 + base size=8 base align=4 +QTextCharFormat (0xb37d8ec0) 0 + QTextFormat (0xb384999c) 0 + +Class QTextBlockFormat + size=8 align=4 + base size=8 base align=4 +QTextBlockFormat (0xb386ac80) 0 + QTextFormat (0xb3887294) 0 + +Class QTextListFormat + size=8 align=4 + base size=8 base align=4 +QTextListFormat (0xb3899240) 0 + QTextFormat (0xb38a1000) 0 + +Class QTextImageFormat + size=8 align=4 + base size=8 base align=4 +QTextImageFormat (0xb3899400) 0 + QTextCharFormat (0xb3899440) 0 + QTextFormat (0xb38a18e8) 0 + +Class QTextFrameFormat + size=8 align=4 + base size=8 base align=4 +QTextFrameFormat (0xb3899680) 0 + QTextFormat (0xb38ab21c) 0 + +Class QTextTableFormat + size=8 align=4 + base size=8 base align=4 +QTextTableFormat (0xb3899d00) 0 + QTextFrameFormat (0xb3899d40) 0 + QTextFormat (0xb36c8438) 0 + +Class QTextTableCellFormat + size=8 align=4 + base size=8 base align=4 +QTextTableCellFormat (0xb36d2240) 0 + QTextCharFormat (0xb36d2280) 0 + QTextFormat (0xb36d4708) 0 + +Class QTextInlineObject + size=8 align=4 + base size=8 base align=4 +QTextInlineObject (0xb36e36cc) 0 + +Class QTextLayout::FormatRange + size=16 align=4 + base size=16 base align=4 +QTextLayout::FormatRange (0xb36e3d98) 0 + +Class QTextLayout + size=4 align=4 + base size=4 base align=4 +QTextLayout (0xb36e3c30) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb36ef960) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb36ef8e8) 0 + +Class QTextLine + size=8 align=4 + base size=8 base align=4 +QTextLine (0xb36efc6c) 0 + +Vtable for QAbstractUndoItem +QAbstractUndoItem::_ZTV17QAbstractUndoItem: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QAbstractUndoItem) +8 __cxa_pure_virtual +12 __cxa_pure_virtual +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QAbstractUndoItem + size=4 align=4 + base size=4 base align=4 +QAbstractUndoItem (0xb370d5a0) 0 nearly-empty + vptr=((& QAbstractUndoItem::_ZTV17QAbstractUndoItem) + 8u) + +Vtable for QTextDocument +QTextDocument::_ZTV13QTextDocument: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QTextDocument) +8 QTextDocument::metaObject +12 QTextDocument::qt_metacast +16 QTextDocument::qt_metacall +20 QTextDocument::~QTextDocument +24 QTextDocument::~QTextDocument +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextDocument::clear +60 QTextDocument::createObject +64 QTextDocument::loadResource + +Class QTextDocument + size=8 align=4 + base size=8 base align=4 +QTextDocument (0xb36d2d40) 0 + vptr=((& QTextDocument::_ZTV13QTextDocument) + 8u) + QObject (0xb370d924) 0 + primary-for QTextDocument (0xb36d2d40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3726294) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb3735fb4) 0 + +Class QTextCursor + size=4 align=4 + base size=4 base align=4 +QTextCursor (0xb3735618) 0 + +Class QAbstractTextDocumentLayout::Selection + size=12 align=4 + base size=12 base align=4 +QAbstractTextDocumentLayout::Selection (0xb375b21c) 0 + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb375b618) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb375b5a0) 0 + +Class QAbstractTextDocumentLayout::PaintContext + size=48 align=4 + base size=48 base align=4 +QAbstractTextDocumentLayout::PaintContext (0xb375b258) 0 + +Vtable for QAbstractTextDocumentLayout +QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractTextDocumentLayout) +8 QAbstractTextDocumentLayout::metaObject +12 QAbstractTextDocumentLayout::qt_metacast +16 QAbstractTextDocumentLayout::qt_metacall +20 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +24 QAbstractTextDocumentLayout::~QAbstractTextDocumentLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 QAbstractTextDocumentLayout::resizeInlineObject +88 QAbstractTextDocumentLayout::positionInlineObject +92 QAbstractTextDocumentLayout::drawInlineObject + +Class QAbstractTextDocumentLayout + size=8 align=4 + base size=8 base align=4 +QAbstractTextDocumentLayout (0xb3734100) 0 + vptr=((& QAbstractTextDocumentLayout::_ZTV27QAbstractTextDocumentLayout) + 8u) + QObject (0xb375b12c) 0 + primary-for QAbstractTextDocumentLayout (0xb3734100) + +Vtable for QTextObjectInterface +QTextObjectInterface::_ZTV20QTextObjectInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QTextObjectInterface) +8 QTextObjectInterface::~QTextObjectInterface +12 QTextObjectInterface::~QTextObjectInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextObjectInterface + size=4 align=4 + base size=4 base align=4 +QTextObjectInterface (0xb378112c) 0 nearly-empty + vptr=((& QTextObjectInterface::_ZTV20QTextObjectInterface) + 8u) + +Class QFontDatabase + size=4 align=4 + base size=4 base align=4 +QFontDatabase (0xb37816cc) 0 + +Vtable for QTextObject +QTextObject::_ZTV11QTextObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextObject) +8 QTextObject::metaObject +12 QTextObject::qt_metacast +16 QTextObject::qt_metacall +20 QTextObject::~QTextObject +24 QTextObject::~QTextObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextObject + size=8 align=4 + base size=8 base align=4 +QTextObject (0xb3734940) 0 + vptr=((& QTextObject::_ZTV11QTextObject) + 8u) + QObject (0xb3781f3c) 0 + primary-for QTextObject (0xb3734940) + +Vtable for QTextBlockGroup +QTextBlockGroup::_ZTV15QTextBlockGroup: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QTextBlockGroup) +8 QTextBlockGroup::metaObject +12 QTextBlockGroup::qt_metacast +16 QTextBlockGroup::qt_metacall +20 QTextBlockGroup::~QTextBlockGroup +24 QTextBlockGroup::~QTextBlockGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextBlockGroup::blockInserted +60 QTextBlockGroup::blockRemoved +64 QTextBlockGroup::blockFormatChanged + +Class QTextBlockGroup + size=8 align=4 + base size=8 base align=4 +QTextBlockGroup (0xb3734c40) 0 + vptr=((& QTextBlockGroup::_ZTV15QTextBlockGroup) + 8u) + QTextObject (0xb3734c80) 0 + primary-for QTextBlockGroup (0xb3734c40) + QObject (0xb3796a8c) 0 + primary-for QTextObject (0xb3734c80) + +Vtable for QTextFrameLayoutData +QTextFrameLayoutData::_ZTV20QTextFrameLayoutData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QTextFrameLayoutData) +8 QTextFrameLayoutData::~QTextFrameLayoutData +12 QTextFrameLayoutData::~QTextFrameLayoutData + +Class QTextFrameLayoutData + size=4 align=4 + base size=4 base align=4 +QTextFrameLayoutData (0xb37a65a0) 0 nearly-empty + vptr=((& QTextFrameLayoutData::_ZTV20QTextFrameLayoutData) + 8u) + +Class QTextFrame::iterator + size=20 align=4 + base size=20 base align=4 +QTextFrame::iterator (0xb37a6b40) 0 + +Vtable for QTextFrame +QTextFrame::_ZTV10QTextFrame: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextFrame) +8 QTextFrame::metaObject +12 QTextFrame::qt_metacast +16 QTextFrame::qt_metacall +20 QTextFrame::~QTextFrame +24 QTextFrame::~QTextFrame +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextFrame + size=8 align=4 + base size=8 base align=4 +QTextFrame (0xb3734f40) 0 + vptr=((& QTextFrame::_ZTV10QTextFrame) + 8u) + QTextObject (0xb3734f80) 0 + primary-for QTextFrame (0xb3734f40) + QObject (0xb37a6708) 0 + primary-for QTextObject (0xb3734f80) + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb35c80f0) 0 empty + +Vtable for QTextBlockUserData +QTextBlockUserData::_ZTV18QTextBlockUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QTextBlockUserData) +8 QTextBlockUserData::~QTextBlockUserData +12 QTextBlockUserData::~QTextBlockUserData + +Class QTextBlockUserData + size=4 align=4 + base size=4 base align=4 +QTextBlockUserData (0xb35c8474) 0 nearly-empty + vptr=((& QTextBlockUserData::_ZTV18QTextBlockUserData) + 8u) + +Class QTextBlock::iterator + size=16 align=4 + base size=16 base align=4 +QTextBlock::iterator (0xb35c8a14) 0 + +Class QTextBlock + size=8 align=4 + base size=8 base align=4 +QTextBlock (0xb35c85dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb35e80f0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb35e81e0) 0 empty + +Class QTextFragment + size=12 align=4 + base size=12 base align=4 +QTextFragment (0xb35e8384) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb35f5744) 0 empty + +Vtable for QSyntaxHighlighter +QSyntaxHighlighter::_ZTV18QSyntaxHighlighter: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QSyntaxHighlighter) +8 QSyntaxHighlighter::metaObject +12 QSyntaxHighlighter::qt_metacast +16 QSyntaxHighlighter::qt_metacall +20 QSyntaxHighlighter::~QSyntaxHighlighter +24 QSyntaxHighlighter::~QSyntaxHighlighter +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual + +Class QSyntaxHighlighter + size=8 align=4 + base size=8 base align=4 +QSyntaxHighlighter (0xb35dfb80) 0 + vptr=((& QSyntaxHighlighter::_ZTV18QSyntaxHighlighter) + 8u) + QObject (0xb35f5834) 0 + primary-for QSyntaxHighlighter (0xb35dfb80) + +Class QTextDocumentFragment + size=4 align=4 + base size=4 base align=4 +QTextDocumentFragment (0xb3606438) 0 + +Vtable for QTextList +QTextList::_ZTV9QTextList: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTextList) +8 QTextList::metaObject +12 QTextList::qt_metacast +16 QTextList::qt_metacall +20 QTextList::~QTextList +24 QTextList::~QTextList +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTextBlockGroup::blockInserted +60 QTextBlockGroup::blockRemoved +64 QTextBlockGroup::blockFormatChanged + +Class QTextList + size=8 align=4 + base size=8 base align=4 +QTextList (0xb35dfe40) 0 + vptr=((& QTextList::_ZTV9QTextList) + 8u) + QTextBlockGroup (0xb35dfe80) 0 + primary-for QTextList (0xb35dfe40) + QTextObject (0xb35dfec0) 0 + primary-for QTextBlockGroup (0xb35dfe80) + QObject (0xb360699c) 0 + primary-for QTextObject (0xb35dfec0) + +Class QTextTableCell + size=8 align=4 + base size=8 base align=4 +QTextTableCell (0xb3616c30) 0 + +Vtable for QTextTable +QTextTable::_ZTV10QTextTable: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextTable) +8 QTextTable::metaObject +12 QTextTable::qt_metacast +16 QTextTable::qt_metacall +20 QTextTable::~QTextTable +24 QTextTable::~QTextTable +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTextTable + size=8 align=4 + base size=8 base align=4 +QTextTable (0xb3613980) 0 + vptr=((& QTextTable::_ZTV10QTextTable) + 8u) + QTextFrame (0xb36139c0) 0 + primary-for QTextTable (0xb3613980) + QTextObject (0xb3613a00) 0 + primary-for QTextFrame (0xb36139c0) + QObject (0xb3622e10) 0 + primary-for QTextObject (0xb3613a00) + +Vtable for QCompleter +QCompleter::_ZTV10QCompleter: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QCompleter) +8 QCompleter::metaObject +12 QCompleter::qt_metacast +16 QCompleter::qt_metacall +20 QCompleter::~QCompleter +24 QCompleter::~QCompleter +28 QCompleter::event +32 QCompleter::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCompleter::pathFromIndex +60 QCompleter::splitPath + +Class QCompleter + size=8 align=4 + base size=8 base align=4 +QCompleter (0xb3613fc0) 0 + vptr=((& QCompleter::_ZTV10QCompleter) + 8u) + QObject (0xb362ee10) 0 + primary-for QCompleter (0xb3613fc0) + +Class QDesktopServices + size=1 align=1 + base size=0 base align=1 +QDesktopServices (0xb3640ce4) 0 empty + +Vtable for QSystemTrayIcon +QSystemTrayIcon::_ZTV15QSystemTrayIcon: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSystemTrayIcon) +8 QSystemTrayIcon::metaObject +12 QSystemTrayIcon::qt_metacast +16 QSystemTrayIcon::qt_metacall +20 QSystemTrayIcon::~QSystemTrayIcon +24 QSystemTrayIcon::~QSystemTrayIcon +28 QSystemTrayIcon::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSystemTrayIcon + size=8 align=4 + base size=8 base align=4 +QSystemTrayIcon (0xb363c280) 0 + vptr=((& QSystemTrayIcon::_ZTV15QSystemTrayIcon) + 8u) + QObject (0xb3640dd4) 0 + primary-for QSystemTrayIcon (0xb363c280) + +Vtable for QUndoGroup +QUndoGroup::_ZTV10QUndoGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUndoGroup) +8 QUndoGroup::metaObject +12 QUndoGroup::qt_metacast +16 QUndoGroup::qt_metacall +20 QUndoGroup::~QUndoGroup +24 QUndoGroup::~QUndoGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QUndoGroup + size=8 align=4 + base size=8 base align=4 +QUndoGroup (0xb363c640) 0 + vptr=((& QUndoGroup::_ZTV10QUndoGroup) + 8u) + QObject (0xb3655e88) 0 + primary-for QUndoGroup (0xb363c640) + +Vtable for QUndoCommand +QUndoCommand::_ZTV12QUndoCommand: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QUndoCommand) +8 QUndoCommand::~QUndoCommand +12 QUndoCommand::~QUndoCommand +16 QUndoCommand::undo +20 QUndoCommand::redo +24 QUndoCommand::id +28 QUndoCommand::mergeWith + +Class QUndoCommand + size=8 align=4 + base size=8 base align=4 +QUndoCommand (0xb3663b04) 0 + vptr=((& QUndoCommand::_ZTV12QUndoCommand) + 8u) + +Vtable for QUndoStack +QUndoStack::_ZTV10QUndoStack: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUndoStack) +8 QUndoStack::metaObject +12 QUndoStack::qt_metacast +16 QUndoStack::qt_metacall +20 QUndoStack::~QUndoStack +24 QUndoStack::~QUndoStack +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QUndoStack + size=8 align=4 + base size=8 base align=4 +QUndoStack (0xb363c900) 0 + vptr=((& QUndoStack::_ZTV10QUndoStack) + 8u) + QObject (0xb3671078) 0 + primary-for QUndoStack (0xb363c900) + +Vtable for QUndoView +QUndoView::_ZTV9QUndoView: 103u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QUndoView) +8 QUndoView::metaObject +12 QUndoView::qt_metacast +16 QUndoView::qt_metacall +20 QUndoView::~QUndoView +24 QUndoView::~QUndoView +28 QListView::event +32 QObject::eventFilter +36 QListView::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractItemView::mousePressEvent +84 QListView::mouseReleaseEvent +88 QAbstractItemView::mouseDoubleClickEvent +92 QListView::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractItemView::keyPressEvent +104 QWidget::keyReleaseEvent +108 QAbstractItemView::focusInEvent +112 QAbstractItemView::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QListView::paintEvent +128 QWidget::moveEvent +132 QListView::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractItemView::dragEnterEvent +156 QListView::dragMoveEvent +160 QListView::dragLeaveEvent +164 QListView::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QAbstractItemView::inputMethodEvent +192 QAbstractItemView::inputMethodQuery +196 QAbstractItemView::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractItemView::viewportEvent +228 QListView::scrollContentsBy +232 QAbstractItemView::setModel +236 QAbstractItemView::setSelectionModel +240 QAbstractItemView::keyboardSearch +244 QListView::visualRect +248 QListView::scrollTo +252 QListView::indexAt +256 QAbstractItemView::sizeHintForRow +260 QAbstractItemView::sizeHintForColumn +264 QListView::reset +268 QListView::setRootIndex +272 QListView::doItemsLayout +276 QAbstractItemView::selectAll +280 QListView::dataChanged +284 QListView::rowsInserted +288 QListView::rowsAboutToBeRemoved +292 QListView::selectionChanged +296 QListView::currentChanged +300 QAbstractItemView::updateEditorData +304 QAbstractItemView::updateEditorGeometries +308 QListView::updateGeometries +312 QAbstractItemView::verticalScrollbarAction +316 QAbstractItemView::horizontalScrollbarAction +320 QAbstractItemView::verticalScrollbarValueChanged +324 QAbstractItemView::horizontalScrollbarValueChanged +328 QAbstractItemView::closeEditor +332 QAbstractItemView::commitData +336 QAbstractItemView::editorDestroyed +340 QListView::moveCursor +344 QListView::horizontalOffset +348 QListView::verticalOffset +352 QListView::isIndexHidden +356 QListView::setSelection +360 QListView::visualRegionForSelection +364 QListView::selectedIndexes +368 QAbstractItemView::edit +372 QAbstractItemView::selectionCommand +376 QListView::startDrag +380 QListView::viewOptions +384 (int (*)(...))-0x000000008 +388 (int (*)(...))(& _ZTI9QUndoView) +392 QUndoView::_ZThn8_N9QUndoViewD1Ev +396 QUndoView::_ZThn8_N9QUndoViewD0Ev +400 QWidget::_ZThn8_NK7QWidget7devTypeEv +404 QWidget::_ZThn8_NK7QWidget11paintEngineEv +408 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QUndoView + size=20 align=4 + base size=20 base align=4 +QUndoView (0xb363cc00) 0 + vptr=((& QUndoView::_ZTV9QUndoView) + 8u) + QListView (0xb363cc40) 0 + primary-for QUndoView (0xb363cc00) + QAbstractItemView (0xb363cc80) 0 + primary-for QListView (0xb363cc40) + QAbstractScrollArea (0xb363ccc0) 0 + primary-for QAbstractItemView (0xb363cc80) + QFrame (0xb363cd00) 0 + primary-for QAbstractScrollArea (0xb363ccc0) + QWidget (0xb3677b90) 0 + primary-for QFrame (0xb363cd00) + QObject (0xb3671d98) 0 + primary-for QWidget (0xb3677b90) + QPaintDevice (0xb3671dd4) 8 + vptr=((& QUndoView::_ZTV9QUndoView) + 392u) + +Vtable for QAbstractButton +QAbstractButton::_ZTV15QAbstractButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractButton) +8 QAbstractButton::metaObject +12 QAbstractButton::qt_metacast +16 QAbstractButton::qt_metacall +20 QAbstractButton::~QAbstractButton +24 QAbstractButton::~QAbstractButton +28 QAbstractButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 __cxa_pure_virtual +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI15QAbstractButton) +244 QAbstractButton::_ZThn8_N15QAbstractButtonD1Ev +248 QAbstractButton::_ZThn8_N15QAbstractButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QAbstractButton + size=20 align=4 + base size=20 base align=4 +QAbstractButton (0xb363cfc0) 0 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 8u) + QWidget (0xb3688b90) 0 + primary-for QAbstractButton (0xb363cfc0) + QObject (0xb3687a8c) 0 + primary-for QWidget (0xb3688b90) + QPaintDevice (0xb3687ac8) 8 + vptr=((& QAbstractButton::_ZTV15QAbstractButton) + 244u) + +Vtable for QButtonGroup +QButtonGroup::_ZTV12QButtonGroup: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QButtonGroup) +8 QButtonGroup::metaObject +12 QButtonGroup::qt_metacast +16 QButtonGroup::qt_metacall +20 QButtonGroup::~QButtonGroup +24 QButtonGroup::~QButtonGroup +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QButtonGroup + size=8 align=4 + base size=8 base align=4 +QButtonGroup (0xb36934c0) 0 + vptr=((& QButtonGroup::_ZTV12QButtonGroup) + 8u) + QObject (0xb36ac348) 0 + primary-for QButtonGroup (0xb36934c0) + +Vtable for QCalendarWidget +QCalendarWidget::_ZTV15QCalendarWidget: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QCalendarWidget) +8 QCalendarWidget::metaObject +12 QCalendarWidget::qt_metacast +16 QCalendarWidget::qt_metacall +20 QCalendarWidget::~QCalendarWidget +24 QCalendarWidget::~QCalendarWidget +28 QCalendarWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCalendarWidget::sizeHint +68 QCalendarWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QCalendarWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QCalendarWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QCalendarWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QCalendarWidget::paintCell +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI15QCalendarWidget) +236 QCalendarWidget::_ZThn8_N15QCalendarWidgetD1Ev +240 QCalendarWidget::_ZThn8_N15QCalendarWidgetD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCalendarWidget + size=20 align=4 + base size=20 base align=4 +QCalendarWidget (0xb3693800) 0 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 8u) + QWidget (0xb36b2af0) 0 + primary-for QCalendarWidget (0xb3693800) + QObject (0xb34ba0b4) 0 + primary-for QWidget (0xb36b2af0) + QPaintDevice (0xb34ba0f0) 8 + vptr=((& QCalendarWidget::_ZTV15QCalendarWidget) + 236u) + +Vtable for QCheckBox +QCheckBox::_ZTV9QCheckBox: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QCheckBox) +8 QCheckBox::metaObject +12 QCheckBox::qt_metacast +16 QCheckBox::qt_metacall +20 QCheckBox::~QCheckBox +24 QCheckBox::~QCheckBox +28 QCheckBox::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCheckBox::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QCheckBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QCheckBox::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QCheckBox::hitButton +228 QCheckBox::checkStateSet +232 QCheckBox::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI9QCheckBox) +244 QCheckBox::_ZThn8_N9QCheckBoxD1Ev +248 QCheckBox::_ZThn8_N9QCheckBoxD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCheckBox + size=20 align=4 + base size=20 base align=4 +QCheckBox (0xb3693b40) 0 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 8u) + QAbstractButton (0xb3693b80) 0 + primary-for QCheckBox (0xb3693b40) + QWidget (0xb34d00f0) 0 + primary-for QAbstractButton (0xb3693b80) + QObject (0xb34d30b4) 0 + primary-for QWidget (0xb34d00f0) + QPaintDevice (0xb34d30f0) 8 + vptr=((& QCheckBox::_ZTV9QCheckBox) + 244u) + +Vtable for QComboBox +QComboBox::_ZTV9QComboBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QComboBox) +8 QComboBox::metaObject +12 QComboBox::qt_metacast +16 QComboBox::qt_metacall +20 QComboBox::~QComboBox +24 QComboBox::~QComboBox +28 QComboBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QComboBox::sizeHint +68 QComboBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QComboBox::mousePressEvent +84 QComboBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QComboBox::wheelEvent +100 QComboBox::keyPressEvent +104 QComboBox::keyReleaseEvent +108 QComboBox::focusInEvent +112 QComboBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QComboBox::paintEvent +128 QWidget::moveEvent +132 QComboBox::resizeEvent +136 QWidget::closeEvent +140 QComboBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QComboBox::showEvent +172 QComboBox::hideEvent +176 QWidget::x11Event +180 QComboBox::changeEvent +184 QWidget::metric +188 QComboBox::inputMethodEvent +192 QComboBox::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QComboBox::showPopup +228 QComboBox::hidePopup +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI9QComboBox) +240 QComboBox::_ZThn8_N9QComboBoxD1Ev +244 QComboBox::_ZThn8_N9QComboBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QComboBox + size=20 align=4 + base size=20 base align=4 +QComboBox (0xb3693f00) 0 + vptr=((& QComboBox::_ZTV9QComboBox) + 8u) + QWidget (0xb34da690) 0 + primary-for QComboBox (0xb3693f00) + QObject (0xb34e2438) 0 + primary-for QWidget (0xb34da690) + QPaintDevice (0xb34e2474) 8 + vptr=((& QComboBox::_ZTV9QComboBox) + 240u) + +Vtable for QPushButton +QPushButton::_ZTV11QPushButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QPushButton) +8 QPushButton::metaObject +12 QPushButton::qt_metacast +16 QPushButton::qt_metacall +20 QPushButton::~QPushButton +24 QPushButton::~QPushButton +28 QPushButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QPushButton::sizeHint +68 QPushButton::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QPushButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QPushButton::focusInEvent +112 QPushButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QPushButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QPushButton) +244 QPushButton::_ZThn8_N11QPushButtonD1Ev +248 QPushButton::_ZThn8_N11QPushButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPushButton + size=20 align=4 + base size=20 base align=4 +QPushButton (0xb3502880) 0 + vptr=((& QPushButton::_ZTV11QPushButton) + 8u) + QAbstractButton (0xb35028c0) 0 + primary-for QPushButton (0xb3502880) + QWidget (0xb351a370) 0 + primary-for QAbstractButton (0xb35028c0) + QObject (0xb351b0b4) 0 + primary-for QWidget (0xb351a370) + QPaintDevice (0xb351b0f0) 8 + vptr=((& QPushButton::_ZTV11QPushButton) + 244u) + +Vtable for QCommandLinkButton +QCommandLinkButton::_ZTV18QCommandLinkButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QCommandLinkButton) +8 QCommandLinkButton::metaObject +12 QCommandLinkButton::qt_metacast +16 QCommandLinkButton::qt_metacall +20 QCommandLinkButton::~QCommandLinkButton +24 QCommandLinkButton::~QCommandLinkButton +28 QCommandLinkButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QCommandLinkButton::sizeHint +68 QCommandLinkButton::minimumSizeHint +72 QCommandLinkButton::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QPushButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QPushButton::focusInEvent +112 QPushButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QCommandLinkButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI18QCommandLinkButton) +244 QCommandLinkButton::_ZThn8_N18QCommandLinkButtonD1Ev +248 QCommandLinkButton::_ZThn8_N18QCommandLinkButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QCommandLinkButton + size=20 align=4 + base size=20 base align=4 +QCommandLinkButton (0xb3502c80) 0 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 8u) + QPushButton (0xb3502cc0) 0 + primary-for QCommandLinkButton (0xb3502c80) + QAbstractButton (0xb3502d00) 0 + primary-for QPushButton (0xb3502cc0) + QWidget (0xb35265f0) 0 + primary-for QAbstractButton (0xb3502d00) + QObject (0xb35304b0) 0 + primary-for QWidget (0xb35265f0) + QPaintDevice (0xb35304ec) 8 + vptr=((& QCommandLinkButton::_ZTV18QCommandLinkButton) + 244u) + +Vtable for QDateTimeEdit +QDateTimeEdit::_ZTV13QDateTimeEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QDateTimeEdit) +8 QDateTimeEdit::metaObject +12 QDateTimeEdit::qt_metacast +16 QDateTimeEdit::qt_metacall +20 QDateTimeEdit::~QDateTimeEdit +24 QDateTimeEdit::~QDateTimeEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI13QDateTimeEdit) +260 QDateTimeEdit::_ZThn8_N13QDateTimeEditD1Ev +264 QDateTimeEdit::_ZThn8_N13QDateTimeEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateTimeEdit + size=20 align=4 + base size=20 base align=4 +QDateTimeEdit (0xb3502fc0) 0 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 8u) + QAbstractSpinBox (0xb3542000) 0 + primary-for QDateTimeEdit (0xb3502fc0) + QWidget (0xb353d190) 0 + primary-for QAbstractSpinBox (0xb3542000) + QObject (0xb35401a4) 0 + primary-for QWidget (0xb353d190) + QPaintDevice (0xb35401e0) 8 + vptr=((& QDateTimeEdit::_ZTV13QDateTimeEdit) + 260u) + +Vtable for QTimeEdit +QTimeEdit::_ZTV9QTimeEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeEdit) +8 QTimeEdit::metaObject +12 QTimeEdit::qt_metacast +16 QTimeEdit::qt_metacall +20 QTimeEdit::~QTimeEdit +24 QTimeEdit::~QTimeEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI9QTimeEdit) +260 QTimeEdit::_ZThn8_N9QTimeEditD1Ev +264 QTimeEdit::_ZThn8_N9QTimeEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTimeEdit + size=20 align=4 + base size=20 base align=4 +QTimeEdit (0xb35422c0) 0 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 8u) + QDateTimeEdit (0xb3542300) 0 + primary-for QTimeEdit (0xb35422c0) + QAbstractSpinBox (0xb3542340) 0 + primary-for QDateTimeEdit (0xb3542300) + QWidget (0xb35524b0) 0 + primary-for QAbstractSpinBox (0xb3542340) + QObject (0xb3550960) 0 + primary-for QWidget (0xb35524b0) + QPaintDevice (0xb355099c) 8 + vptr=((& QTimeEdit::_ZTV9QTimeEdit) + 260u) + +Vtable for QDateEdit +QDateEdit::_ZTV9QDateEdit: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QDateEdit) +8 QDateEdit::metaObject +12 QDateEdit::qt_metacast +16 QDateEdit::qt_metacall +20 QDateEdit::~QDateEdit +24 QDateEdit::~QDateEdit +28 QDateTimeEdit::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDateTimeEdit::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDateTimeEdit::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QDateTimeEdit::wheelEvent +100 QDateTimeEdit::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QDateTimeEdit::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDateTimeEdit::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QDateTimeEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDateTimeEdit::validate +228 QDateTimeEdit::fixup +232 QDateTimeEdit::stepBy +236 QDateTimeEdit::clear +240 QDateTimeEdit::stepEnabled +244 QDateTimeEdit::dateTimeFromText +248 QDateTimeEdit::textFromDateTime +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI9QDateEdit) +260 QDateEdit::_ZThn8_N9QDateEditD1Ev +264 QDateEdit::_ZThn8_N9QDateEditD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDateEdit + size=20 align=4 + base size=20 base align=4 +QDateEdit (0xb3542580) 0 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 8u) + QDateTimeEdit (0xb35425c0) 0 + primary-for QDateEdit (0xb3542580) + QAbstractSpinBox (0xb3542600) 0 + primary-for QDateTimeEdit (0xb35425c0) + QWidget (0xb355e5f0) 0 + primary-for QAbstractSpinBox (0xb3542600) + QObject (0xb3565168) 0 + primary-for QWidget (0xb355e5f0) + QPaintDevice (0xb35651a4) 8 + vptr=((& QDateEdit::_ZTV9QDateEdit) + 260u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3565a50) 0 + +Vtable for QDial +QDial::_ZTV5QDial: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QDial) +8 QDial::metaObject +12 QDial::qt_metacast +16 QDial::qt_metacall +20 QDial::~QDial +24 QDial::~QDial +28 QDial::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QDial::sizeHint +68 QDial::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QDial::mousePressEvent +84 QDial::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QDial::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDial::paintEvent +128 QWidget::moveEvent +132 QDial::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDial::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI5QDial) +236 QDial::_ZThn8_N5QDialD1Ev +240 QDial::_ZThn8_N5QDialD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDial + size=20 align=4 + base size=20 base align=4 +QDial (0xb3542900) 0 + vptr=((& QDial::_ZTV5QDial) + 8u) + QAbstractSlider (0xb3542940) 0 + primary-for QDial (0xb3542900) + QWidget (0xb3575c30) 0 + primary-for QAbstractSlider (0xb3542940) + QObject (0xb35835dc) 0 + primary-for QWidget (0xb3575c30) + QPaintDevice (0xb3583618) 8 + vptr=((& QDial::_ZTV5QDial) + 236u) + +Vtable for QDialogButtonBox +QDialogButtonBox::_ZTV16QDialogButtonBox: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QDialogButtonBox) +8 QDialogButtonBox::metaObject +12 QDialogButtonBox::qt_metacast +16 QDialogButtonBox::qt_metacall +20 QDialogButtonBox::~QDialogButtonBox +24 QDialogButtonBox::~QDialogButtonBox +28 QDialogButtonBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QDialogButtonBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI16QDialogButtonBox) +232 QDialogButtonBox::_ZThn8_N16QDialogButtonBoxD1Ev +236 QDialogButtonBox::_ZThn8_N16QDialogButtonBoxD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDialogButtonBox + size=20 align=4 + base size=20 base align=4 +QDialogButtonBox (0xb3542c00) 0 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 8u) + QWidget (0xb359d1e0) 0 + primary-for QDialogButtonBox (0xb3542c00) + QObject (0xb359e384) 0 + primary-for QWidget (0xb359d1e0) + QPaintDevice (0xb359e3c0) 8 + vptr=((& QDialogButtonBox::_ZTV16QDialogButtonBox) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb35ab7f8) 0 + +Vtable for QDockWidget +QDockWidget::_ZTV11QDockWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDockWidget) +8 QDockWidget::metaObject +12 QDockWidget::qt_metacast +16 QDockWidget::qt_metacall +20 QDockWidget::~QDockWidget +24 QDockWidget::~QDockWidget +28 QDockWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QDockWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QDockWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QDockWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QDockWidget) +232 QDockWidget::_ZThn8_N11QDockWidgetD1Ev +236 QDockWidget::_ZThn8_N11QDockWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDockWidget + size=20 align=4 + base size=20 base align=4 +QDockWidget (0xb3542f80) 0 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 8u) + QWidget (0xb33ba730) 0 + primary-for QDockWidget (0xb3542f80) + QObject (0xb33c63c0) 0 + primary-for QWidget (0xb33ba730) + QPaintDevice (0xb33c63fc) 8 + vptr=((& QDockWidget::_ZTV11QDockWidget) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb33dea8c) 0 + +Vtable for QFocusFrame +QFocusFrame::_ZTV11QFocusFrame: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QFocusFrame) +8 QFocusFrame::metaObject +12 QFocusFrame::qt_metacast +16 QFocusFrame::qt_metacall +20 QFocusFrame::~QFocusFrame +24 QFocusFrame::~QFocusFrame +28 QFocusFrame::event +32 QFocusFrame::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFocusFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI11QFocusFrame) +232 QFocusFrame::_ZThn8_N11QFocusFrameD1Ev +236 QFocusFrame::_ZThn8_N11QFocusFrameD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFocusFrame + size=20 align=4 + base size=20 base align=4 +QFocusFrame (0xb33d3380) 0 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 8u) + QWidget (0xb33ee370) 0 + primary-for QFocusFrame (0xb33d3380) + QObject (0xb33ef654) 0 + primary-for QWidget (0xb33ee370) + QPaintDevice (0xb33ef690) 8 + vptr=((& QFocusFrame::_ZTV11QFocusFrame) + 232u) + +Vtable for QFontComboBox +QFontComboBox::_ZTV13QFontComboBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFontComboBox) +8 QFontComboBox::metaObject +12 QFontComboBox::qt_metacast +16 QFontComboBox::qt_metacall +20 QFontComboBox::~QFontComboBox +24 QFontComboBox::~QFontComboBox +28 QFontComboBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFontComboBox::sizeHint +68 QComboBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QComboBox::mousePressEvent +84 QComboBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QComboBox::wheelEvent +100 QComboBox::keyPressEvent +104 QComboBox::keyReleaseEvent +108 QComboBox::focusInEvent +112 QComboBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QComboBox::paintEvent +128 QWidget::moveEvent +132 QComboBox::resizeEvent +136 QWidget::closeEvent +140 QComboBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QComboBox::showEvent +172 QComboBox::hideEvent +176 QWidget::x11Event +180 QComboBox::changeEvent +184 QWidget::metric +188 QComboBox::inputMethodEvent +192 QComboBox::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QComboBox::showPopup +228 QComboBox::hidePopup +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI13QFontComboBox) +240 QFontComboBox::_ZThn8_N13QFontComboBoxD1Ev +244 QFontComboBox::_ZThn8_N13QFontComboBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QFontComboBox + size=20 align=4 + base size=20 base align=4 +QFontComboBox (0xb33d3640) 0 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 8u) + QComboBox (0xb33d3680) 0 + primary-for QFontComboBox (0xb33d3640) + QWidget (0xb340ba00) 0 + primary-for QComboBox (0xb33d3680) + QObject (0xb34163c0) 0 + primary-for QWidget (0xb340ba00) + QPaintDevice (0xb34163fc) 8 + vptr=((& QFontComboBox::_ZTV13QFontComboBox) + 240u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb34243c0) 0 + +Vtable for QGroupBox +QGroupBox::_ZTV9QGroupBox: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QGroupBox) +8 QGroupBox::metaObject +12 QGroupBox::qt_metacast +16 QGroupBox::qt_metacall +20 QGroupBox::~QGroupBox +24 QGroupBox::~QGroupBox +28 QGroupBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QGroupBox::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QGroupBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QGroupBox::mousePressEvent +84 QGroupBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QGroupBox::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QGroupBox::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QGroupBox::paintEvent +128 QWidget::moveEvent +132 QGroupBox::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QGroupBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QGroupBox) +232 QGroupBox::_ZThn8_N9QGroupBoxD1Ev +236 QGroupBox::_ZThn8_N9QGroupBoxD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QGroupBox + size=20 align=4 + base size=20 base align=4 +QGroupBox (0xb33d3a00) 0 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 8u) + QWidget (0xb342c6e0) 0 + primary-for QGroupBox (0xb33d3a00) + QObject (0xb3424f78) 0 + primary-for QWidget (0xb342c6e0) + QPaintDevice (0xb3424fb4) 8 + vptr=((& QGroupBox::_ZTV9QGroupBox) + 232u) + +Vtable for QLabel +QLabel::_ZTV6QLabel: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QLabel) +8 QLabel::metaObject +12 QLabel::qt_metacast +16 QLabel::qt_metacall +20 QLabel::~QLabel +24 QLabel::~QLabel +28 QLabel::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLabel::sizeHint +68 QLabel::minimumSizeHint +72 QLabel::heightForWidth +76 QWidget::paintEngine +80 QLabel::mousePressEvent +84 QLabel::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QLabel::mouseMoveEvent +96 QWidget::wheelEvent +100 QLabel::keyPressEvent +104 QWidget::keyReleaseEvent +108 QLabel::focusInEvent +112 QLabel::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLabel::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QLabel::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QLabel::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QLabel::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI6QLabel) +232 QLabel::_ZThn8_N6QLabelD1Ev +236 QLabel::_ZThn8_N6QLabelD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLabel + size=20 align=4 + base size=20 base align=4 +QLabel (0xb33d3cc0) 0 + vptr=((& QLabel::_ZTV6QLabel) + 8u) + QFrame (0xb33d3d00) 0 + primary-for QLabel (0xb33d3cc0) + QWidget (0xb344cf00) 0 + primary-for QFrame (0xb33d3d00) + QObject (0xb3447d98) 0 + primary-for QWidget (0xb344cf00) + QPaintDevice (0xb3447dd4) 8 + vptr=((& QLabel::_ZTV6QLabel) + 232u) + +Vtable for QLCDNumber +QLCDNumber::_ZTV10QLCDNumber: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QLCDNumber) +8 QLCDNumber::metaObject +12 QLCDNumber::qt_metacast +16 QLCDNumber::qt_metacall +20 QLCDNumber::~QLCDNumber +24 QLCDNumber::~QLCDNumber +28 QLCDNumber::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QLCDNumber::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QLCDNumber::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QLCDNumber) +232 QLCDNumber::_ZThn8_N10QLCDNumberD1Ev +236 QLCDNumber::_ZThn8_N10QLCDNumberD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QLCDNumber + size=20 align=4 + base size=20 base align=4 +QLCDNumber (0xb346d000) 0 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 8u) + QFrame (0xb346d040) 0 + primary-for QLCDNumber (0xb346d000) + QWidget (0xb3464d20) 0 + primary-for QFrame (0xb346d040) + QObject (0xb345cdd4) 0 + primary-for QWidget (0xb3464d20) + QPaintDevice (0xb345ce10) 8 + vptr=((& QLCDNumber::_ZTV10QLCDNumber) + 232u) + +Vtable for QMainWindow +QMainWindow::_ZTV11QMainWindow: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QMainWindow) +8 QMainWindow::metaObject +12 QMainWindow::qt_metacast +16 QMainWindow::qt_metacall +20 QMainWindow::~QMainWindow +24 QMainWindow::~QMainWindow +28 QMainWindow::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QMainWindow::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QMainWindow::createPopupMenu +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI11QMainWindow) +236 QMainWindow::_ZThn8_N11QMainWindowD1Ev +240 QMainWindow::_ZThn8_N11QMainWindowD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMainWindow + size=20 align=4 + base size=20 base align=4 +QMainWindow (0xb346d380) 0 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 8u) + QWidget (0xb34778c0) 0 + primary-for QMainWindow (0xb346d380) + QObject (0xb347f294) 0 + primary-for QWidget (0xb34778c0) + QPaintDevice (0xb347f2d0) 8 + vptr=((& QMainWindow::_ZTV11QMainWindow) + 236u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3496438) 0 + +Vtable for QMdiArea +QMdiArea::_ZTV8QMdiArea: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QMdiArea) +8 QMdiArea::metaObject +12 QMdiArea::qt_metacast +16 QMdiArea::qt_metacall +20 QMdiArea::~QMdiArea +24 QMdiArea::~QMdiArea +28 QMdiArea::event +32 QMdiArea::eventFilter +36 QMdiArea::timerEvent +40 QMdiArea::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMdiArea::sizeHint +68 QMdiArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractScrollArea::mousePressEvent +84 QAbstractScrollArea::mouseReleaseEvent +88 QAbstractScrollArea::mouseDoubleClickEvent +92 QAbstractScrollArea::mouseMoveEvent +96 QAbstractScrollArea::wheelEvent +100 QAbstractScrollArea::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QMdiArea::paintEvent +128 QWidget::moveEvent +132 QMdiArea::resizeEvent +136 QWidget::closeEvent +140 QAbstractScrollArea::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QAbstractScrollArea::dragEnterEvent +156 QAbstractScrollArea::dragMoveEvent +160 QAbstractScrollArea::dragLeaveEvent +164 QAbstractScrollArea::dropEvent +168 QMdiArea::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QMdiArea::viewportEvent +228 QMdiArea::scrollContentsBy +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI8QMdiArea) +240 QMdiArea::_ZThn8_N8QMdiAreaD1Ev +244 QMdiArea::_ZThn8_N8QMdiAreaD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiArea + size=20 align=4 + base size=20 base align=4 +QMdiArea (0xb346d700) 0 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 8u) + QAbstractScrollArea (0xb346d740) 0 + primary-for QMdiArea (0xb346d700) + QFrame (0xb346d780) 0 + primary-for QAbstractScrollArea (0xb346d740) + QWidget (0xb349e3c0) 0 + primary-for QFrame (0xb346d780) + QObject (0xb32b8000) 0 + primary-for QWidget (0xb349e3c0) + QPaintDevice (0xb32b803c) 8 + vptr=((& QMdiArea::_ZTV8QMdiArea) + 240u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb32ca474) 0 + +Vtable for QMdiSubWindow +QMdiSubWindow::_ZTV13QMdiSubWindow: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QMdiSubWindow) +8 QMdiSubWindow::metaObject +12 QMdiSubWindow::qt_metacast +16 QMdiSubWindow::qt_metacall +20 QMdiSubWindow::~QMdiSubWindow +24 QMdiSubWindow::~QMdiSubWindow +28 QMdiSubWindow::event +32 QMdiSubWindow::eventFilter +36 QMdiSubWindow::timerEvent +40 QMdiSubWindow::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMdiSubWindow::sizeHint +68 QMdiSubWindow::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QMdiSubWindow::mousePressEvent +84 QMdiSubWindow::mouseReleaseEvent +88 QMdiSubWindow::mouseDoubleClickEvent +92 QMdiSubWindow::mouseMoveEvent +96 QWidget::wheelEvent +100 QMdiSubWindow::keyPressEvent +104 QWidget::keyReleaseEvent +108 QMdiSubWindow::focusInEvent +112 QMdiSubWindow::focusOutEvent +116 QWidget::enterEvent +120 QMdiSubWindow::leaveEvent +124 QMdiSubWindow::paintEvent +128 QMdiSubWindow::moveEvent +132 QMdiSubWindow::resizeEvent +136 QMdiSubWindow::closeEvent +140 QMdiSubWindow::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QMdiSubWindow::showEvent +172 QMdiSubWindow::hideEvent +176 QWidget::x11Event +180 QMdiSubWindow::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI13QMdiSubWindow) +232 QMdiSubWindow::_ZThn8_N13QMdiSubWindowD1Ev +236 QMdiSubWindow::_ZThn8_N13QMdiSubWindowD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMdiSubWindow + size=20 align=4 + base size=20 base align=4 +QMdiSubWindow (0xb346db00) 0 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 8u) + QWidget (0xb32de140) 0 + primary-for QMdiSubWindow (0xb346db00) + QObject (0xb32eb03c) 0 + primary-for QWidget (0xb32de140) + QPaintDevice (0xb32eb078) 8 + vptr=((& QMdiSubWindow::_ZTV13QMdiSubWindow) + 232u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb32fb168) 0 + +Vtable for QMenu +QMenu::_ZTV5QMenu: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QMenu) +8 QMenu::metaObject +12 QMenu::qt_metacast +16 QMenu::qt_metacall +20 QMenu::~QMenu +24 QMenu::~QMenu +28 QMenu::event +32 QObject::eventFilter +36 QMenu::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QMenu::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QMenu::mousePressEvent +84 QMenu::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QMenu::mouseMoveEvent +96 QMenu::wheelEvent +100 QMenu::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QMenu::enterEvent +120 QMenu::leaveEvent +124 QMenu::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QMenu::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QMenu::hideEvent +176 QWidget::x11Event +180 QMenu::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QMenu::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI5QMenu) +232 QMenu::_ZThn8_N5QMenuD1Ev +236 QMenu::_ZThn8_N5QMenuD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenu + size=20 align=4 + base size=20 base align=4 +QMenu (0xb346dec0) 0 + vptr=((& QMenu::_ZTV5QMenu) + 8u) + QWidget (0xb330d0a0) 0 + primary-for QMenu (0xb346dec0) + QObject (0xb32fbd20) 0 + primary-for QWidget (0xb330d0a0) + QPaintDevice (0xb32fbd5c) 8 + vptr=((& QMenu::_ZTV5QMenu) + 232u) + +Vtable for QMenuBar +QMenuBar::_ZTV8QMenuBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QMenuBar) +8 QMenuBar::metaObject +12 QMenuBar::qt_metacast +16 QMenuBar::qt_metacall +20 QMenuBar::~QMenuBar +24 QMenuBar::~QMenuBar +28 QMenuBar::event +32 QMenuBar::eventFilter +36 QMenuBar::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QMenuBar::setVisible +64 QMenuBar::sizeHint +68 QMenuBar::minimumSizeHint +72 QMenuBar::heightForWidth +76 QWidget::paintEngine +80 QMenuBar::mousePressEvent +84 QMenuBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QMenuBar::mouseMoveEvent +96 QWidget::wheelEvent +100 QMenuBar::keyPressEvent +104 QWidget::keyReleaseEvent +108 QMenuBar::focusInEvent +112 QMenuBar::focusOutEvent +116 QWidget::enterEvent +120 QMenuBar::leaveEvent +124 QMenuBar::paintEvent +128 QWidget::moveEvent +132 QMenuBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QMenuBar::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QMenuBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI8QMenuBar) +232 QMenuBar::_ZThn8_N8QMenuBarD1Ev +236 QMenuBar::_ZThn8_N8QMenuBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QMenuBar + size=20 align=4 + base size=20 base align=4 +QMenuBar (0xb335ea00) 0 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 8u) + QWidget (0xb33589b0) 0 + primary-for QMenuBar (0xb335ea00) + QObject (0xb336f1e0) 0 + primary-for QWidget (0xb33589b0) + QPaintDevice (0xb336f21c) 8 + vptr=((& QMenuBar::_ZTV8QMenuBar) + 232u) + +Vtable for QMenuItem +QMenuItem::_ZTV9QMenuItem: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMenuItem) +8 QMenuItem::metaObject +12 QMenuItem::qt_metacast +16 QMenuItem::qt_metacall +20 QMenuItem::~QMenuItem +24 QMenuItem::~QMenuItem +28 QAction::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QMenuItem + size=8 align=4 + base size=8 base align=4 +QMenuItem (0xb31ba540) 0 + vptr=((& QMenuItem::_ZTV9QMenuItem) + 8u) + QAction (0xb31ba580) 0 + primary-for QMenuItem (0xb31ba540) + QObject (0xb31bd6cc) 0 + primary-for QAction (0xb31ba580) + +Class QTextEdit::ExtraSelection + size=12 align=4 + base size=12 base align=4 +QTextEdit::ExtraSelection (0xb31cf4ec) 0 + +Vtable for QTextEdit +QTextEdit::_ZTV9QTextEdit: 69u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTextEdit) +8 QTextEdit::metaObject +12 QTextEdit::qt_metacast +16 QTextEdit::qt_metacall +20 QTextEdit::~QTextEdit +24 QTextEdit::~QTextEdit +28 QTextEdit::event +32 QObject::eventFilter +36 QTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTextEdit::mousePressEvent +84 QTextEdit::mouseReleaseEvent +88 QTextEdit::mouseDoubleClickEvent +92 QTextEdit::mouseMoveEvent +96 QTextEdit::wheelEvent +100 QTextEdit::keyPressEvent +104 QTextEdit::keyReleaseEvent +108 QTextEdit::focusInEvent +112 QTextEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTextEdit::paintEvent +128 QWidget::moveEvent +132 QTextEdit::resizeEvent +136 QWidget::closeEvent +140 QTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QTextEdit::dragEnterEvent +156 QTextEdit::dragMoveEvent +160 QTextEdit::dragLeaveEvent +164 QTextEdit::dropEvent +168 QTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTextEdit::changeEvent +184 QWidget::metric +188 QTextEdit::inputMethodEvent +192 QTextEdit::inputMethodQuery +196 QTextEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QTextEdit::scrollContentsBy +232 QTextEdit::loadResource +236 QTextEdit::createMimeDataFromSelection +240 QTextEdit::canInsertFromMimeData +244 QTextEdit::insertFromMimeData +248 (int (*)(...))-0x000000008 +252 (int (*)(...))(& _ZTI9QTextEdit) +256 QTextEdit::_ZThn8_N9QTextEditD1Ev +260 QTextEdit::_ZThn8_N9QTextEditD0Ev +264 QWidget::_ZThn8_NK7QWidget7devTypeEv +268 QWidget::_ZThn8_NK7QWidget11paintEngineEv +272 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextEdit + size=20 align=4 + base size=20 base align=4 +QTextEdit (0xb31ba7c0) 0 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 8u) + QAbstractScrollArea (0xb31ba800) 0 + primary-for QTextEdit (0xb31ba7c0) + QFrame (0xb31ba840) 0 + primary-for QAbstractScrollArea (0xb31ba800) + QWidget (0xb31c3af0) 0 + primary-for QFrame (0xb31ba840) + QObject (0xb31bdd98) 0 + primary-for QWidget (0xb31c3af0) + QPaintDevice (0xb31bddd4) 8 + vptr=((& QTextEdit::_ZTV9QTextEdit) + 256u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb3201d20) 0 + +Vtable for QPlainTextEdit +QPlainTextEdit::_ZTV14QPlainTextEdit: 69u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QPlainTextEdit) +8 QPlainTextEdit::metaObject +12 QPlainTextEdit::qt_metacast +16 QPlainTextEdit::qt_metacall +20 QPlainTextEdit::~QPlainTextEdit +24 QPlainTextEdit::~QPlainTextEdit +28 QPlainTextEdit::event +32 QObject::eventFilter +36 QPlainTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QPlainTextEdit::mousePressEvent +84 QPlainTextEdit::mouseReleaseEvent +88 QPlainTextEdit::mouseDoubleClickEvent +92 QPlainTextEdit::mouseMoveEvent +96 QPlainTextEdit::wheelEvent +100 QPlainTextEdit::keyPressEvent +104 QPlainTextEdit::keyReleaseEvent +108 QPlainTextEdit::focusInEvent +112 QPlainTextEdit::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QPlainTextEdit::paintEvent +128 QWidget::moveEvent +132 QPlainTextEdit::resizeEvent +136 QWidget::closeEvent +140 QPlainTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QPlainTextEdit::dragEnterEvent +156 QPlainTextEdit::dragMoveEvent +160 QPlainTextEdit::dragLeaveEvent +164 QPlainTextEdit::dropEvent +168 QPlainTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QPlainTextEdit::changeEvent +184 QWidget::metric +188 QPlainTextEdit::inputMethodEvent +192 QPlainTextEdit::inputMethodQuery +196 QPlainTextEdit::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QPlainTextEdit::scrollContentsBy +232 QPlainTextEdit::loadResource +236 QPlainTextEdit::createMimeDataFromSelection +240 QPlainTextEdit::canInsertFromMimeData +244 QPlainTextEdit::insertFromMimeData +248 (int (*)(...))-0x000000008 +252 (int (*)(...))(& _ZTI14QPlainTextEdit) +256 QPlainTextEdit::_ZThn8_N14QPlainTextEditD1Ev +260 QPlainTextEdit::_ZThn8_N14QPlainTextEditD0Ev +264 QWidget::_ZThn8_NK7QWidget7devTypeEv +268 QWidget::_ZThn8_NK7QWidget11paintEngineEv +272 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPlainTextEdit + size=20 align=4 + base size=20 base align=4 +QPlainTextEdit (0xb31fd440) 0 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 8u) + QAbstractScrollArea (0xb31fd480) 0 + primary-for QPlainTextEdit (0xb31fd440) + QFrame (0xb31fd4c0) 0 + primary-for QAbstractScrollArea (0xb31fd480) + QWidget (0xb320bbe0) 0 + primary-for QFrame (0xb31fd4c0) + QObject (0xb320c8e8) 0 + primary-for QWidget (0xb320bbe0) + QPaintDevice (0xb320c924) 8 + vptr=((& QPlainTextEdit::_ZTV14QPlainTextEdit) + 256u) + +Vtable for QPlainTextDocumentLayout +QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QPlainTextDocumentLayout) +8 QPlainTextDocumentLayout::metaObject +12 QPlainTextDocumentLayout::qt_metacast +16 QPlainTextDocumentLayout::qt_metacall +20 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +24 QPlainTextDocumentLayout::~QPlainTextDocumentLayout +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QPlainTextDocumentLayout::draw +60 QPlainTextDocumentLayout::hitTest +64 QPlainTextDocumentLayout::pageCount +68 QPlainTextDocumentLayout::documentSize +72 QPlainTextDocumentLayout::frameBoundingRect +76 QPlainTextDocumentLayout::blockBoundingRect +80 QPlainTextDocumentLayout::documentChanged +84 QAbstractTextDocumentLayout::resizeInlineObject +88 QAbstractTextDocumentLayout::positionInlineObject +92 QAbstractTextDocumentLayout::drawInlineObject + +Class QPlainTextDocumentLayout + size=8 align=4 + base size=8 base align=4 +QPlainTextDocumentLayout (0xb31fd940) 0 + vptr=((& QPlainTextDocumentLayout::_ZTV24QPlainTextDocumentLayout) + 8u) + QAbstractTextDocumentLayout (0xb31fd980) 0 + primary-for QPlainTextDocumentLayout (0xb31fd940) + QObject (0xb32466cc) 0 + primary-for QAbstractTextDocumentLayout (0xb31fd980) + +Vtable for QPrintPreviewWidget +QPrintPreviewWidget::_ZTV19QPrintPreviewWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +8 QPrintPreviewWidget::metaObject +12 QPrintPreviewWidget::qt_metacast +16 QPrintPreviewWidget::qt_metacall +20 QPrintPreviewWidget::~QPrintPreviewWidget +24 QPrintPreviewWidget::~QPrintPreviewWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QPrintPreviewWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI19QPrintPreviewWidget) +232 QPrintPreviewWidget::_ZThn8_N19QPrintPreviewWidgetD1Ev +236 QPrintPreviewWidget::_ZThn8_N19QPrintPreviewWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QPrintPreviewWidget + size=24 align=4 + base size=24 base align=4 +QPrintPreviewWidget (0xb31fdc40) 0 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 8u) + QWidget (0xb32514b0) 0 + primary-for QPrintPreviewWidget (0xb31fdc40) + QObject (0xb3258000) 0 + primary-for QWidget (0xb32514b0) + QPaintDevice (0xb325803c) 8 + vptr=((& QPrintPreviewWidget::_ZTV19QPrintPreviewWidget) + 232u) + +Vtable for QProgressBar +QProgressBar::_ZTV12QProgressBar: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QProgressBar) +8 QProgressBar::metaObject +12 QProgressBar::qt_metacast +16 QProgressBar::qt_metacall +20 QProgressBar::~QProgressBar +24 QProgressBar::~QProgressBar +28 QProgressBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QProgressBar::sizeHint +68 QProgressBar::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QProgressBar::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QProgressBar::text +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI12QProgressBar) +236 QProgressBar::_ZThn8_N12QProgressBarD1Ev +240 QProgressBar::_ZThn8_N12QProgressBarD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QProgressBar + size=20 align=4 + base size=20 base align=4 +QProgressBar (0xb31fdf00) 0 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 8u) + QWidget (0xb3260550) 0 + primary-for QProgressBar (0xb31fdf00) + QObject (0xb3258d98) 0 + primary-for QWidget (0xb3260550) + QPaintDevice (0xb3258dd4) 8 + vptr=((& QProgressBar::_ZTV12QProgressBar) + 236u) + +Vtable for QRadioButton +QRadioButton::_ZTV12QRadioButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QRadioButton) +8 QRadioButton::metaObject +12 QRadioButton::qt_metacast +16 QRadioButton::qt_metacall +20 QRadioButton::~QRadioButton +24 QRadioButton::~QRadioButton +28 QRadioButton::event +32 QObject::eventFilter +36 QAbstractButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QRadioButton::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractButton::mousePressEvent +84 QAbstractButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QRadioButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QRadioButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QAbstractButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QRadioButton::hitButton +228 QAbstractButton::checkStateSet +232 QAbstractButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI12QRadioButton) +244 QRadioButton::_ZThn8_N12QRadioButtonD1Ev +248 QRadioButton::_ZThn8_N12QRadioButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QRadioButton + size=20 align=4 + base size=20 base align=4 +QRadioButton (0xb32751c0) 0 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 8u) + QAbstractButton (0xb3275200) 0 + primary-for QRadioButton (0xb32751c0) + QWidget (0xb3273550) 0 + primary-for QAbstractButton (0xb3275200) + QObject (0xb3270c6c) 0 + primary-for QWidget (0xb3273550) + QPaintDevice (0xb3270ca8) 8 + vptr=((& QRadioButton::_ZTV12QRadioButton) + 244u) + +Vtable for QScrollBar +QScrollBar::_ZTV10QScrollBar: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QScrollBar) +8 QScrollBar::metaObject +12 QScrollBar::qt_metacast +16 QScrollBar::qt_metacall +20 QScrollBar::~QScrollBar +24 QScrollBar::~QScrollBar +28 QScrollBar::event +32 QObject::eventFilter +36 QAbstractSlider::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QScrollBar::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QScrollBar::mousePressEvent +84 QScrollBar::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QScrollBar::mouseMoveEvent +96 QAbstractSlider::wheelEvent +100 QAbstractSlider::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QScrollBar::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QScrollBar::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QScrollBar::hideEvent +176 QWidget::x11Event +180 QAbstractSlider::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QScrollBar::sliderChange +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI10QScrollBar) +236 QScrollBar::_ZThn8_N10QScrollBarD1Ev +240 QScrollBar::_ZThn8_N10QScrollBarD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QScrollBar + size=20 align=4 + base size=20 base align=4 +QScrollBar (0xb32754c0) 0 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 8u) + QAbstractSlider (0xb3275500) 0 + primary-for QScrollBar (0xb32754c0) + QWidget (0xb3284410) 0 + primary-for QAbstractSlider (0xb3275500) + QObject (0xb3281a14) 0 + primary-for QWidget (0xb3284410) + QPaintDevice (0xb3281a50) 8 + vptr=((& QScrollBar::_ZTV10QScrollBar) + 236u) + +Vtable for QSizeGrip +QSizeGrip::_ZTV9QSizeGrip: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSizeGrip) +8 QSizeGrip::metaObject +12 QSizeGrip::qt_metacast +16 QSizeGrip::qt_metacall +20 QSizeGrip::~QSizeGrip +24 QSizeGrip::~QSizeGrip +28 QSizeGrip::event +32 QSizeGrip::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QSizeGrip::setVisible +64 QSizeGrip::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSizeGrip::mousePressEvent +84 QSizeGrip::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSizeGrip::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSizeGrip::paintEvent +128 QSizeGrip::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QSizeGrip::showEvent +172 QSizeGrip::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI9QSizeGrip) +232 QSizeGrip::_ZThn8_N9QSizeGripD1Ev +236 QSizeGrip::_ZThn8_N9QSizeGripD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSizeGrip + size=20 align=4 + base size=20 base align=4 +QSizeGrip (0xb3275800) 0 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 8u) + QWidget (0xb3291f50) 0 + primary-for QSizeGrip (0xb3275800) + QObject (0xb32909d8) 0 + primary-for QWidget (0xb3291f50) + QPaintDevice (0xb3290a14) 8 + vptr=((& QSizeGrip::_ZTV9QSizeGrip) + 232u) + +Vtable for QSpinBox +QSpinBox::_ZTV8QSpinBox: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QSpinBox) +8 QSpinBox::metaObject +12 QSpinBox::qt_metacast +16 QSpinBox::qt_metacall +20 QSpinBox::~QSpinBox +24 QSpinBox::~QSpinBox +28 QSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSpinBox::validate +228 QSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 QSpinBox::valueFromText +248 QSpinBox::textFromValue +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI8QSpinBox) +260 QSpinBox::_ZThn8_N8QSpinBoxD1Ev +264 QSpinBox::_ZThn8_N8QSpinBoxD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSpinBox + size=20 align=4 + base size=20 base align=4 +QSpinBox (0xb3275ac0) 0 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 8u) + QAbstractSpinBox (0xb3275b00) 0 + primary-for QSpinBox (0xb3275ac0) + QWidget (0xb32a1b40) 0 + primary-for QAbstractSpinBox (0xb3275b00) + QObject (0xb32a66cc) 0 + primary-for QWidget (0xb32a1b40) + QPaintDevice (0xb32a6708) 8 + vptr=((& QSpinBox::_ZTV8QSpinBox) + 260u) + +Vtable for QDoubleSpinBox +QDoubleSpinBox::_ZTV14QDoubleSpinBox: 70u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QDoubleSpinBox) +8 QDoubleSpinBox::metaObject +12 QDoubleSpinBox::qt_metacast +16 QDoubleSpinBox::qt_metacall +20 QDoubleSpinBox::~QDoubleSpinBox +24 QDoubleSpinBox::~QDoubleSpinBox +28 QAbstractSpinBox::event +32 QObject::eventFilter +36 QAbstractSpinBox::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractSpinBox::sizeHint +68 QAbstractSpinBox::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QAbstractSpinBox::mousePressEvent +84 QAbstractSpinBox::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractSpinBox::mouseMoveEvent +96 QAbstractSpinBox::wheelEvent +100 QAbstractSpinBox::keyPressEvent +104 QAbstractSpinBox::keyReleaseEvent +108 QAbstractSpinBox::focusInEvent +112 QAbstractSpinBox::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QAbstractSpinBox::paintEvent +128 QWidget::moveEvent +132 QAbstractSpinBox::resizeEvent +136 QAbstractSpinBox::closeEvent +140 QAbstractSpinBox::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QAbstractSpinBox::showEvent +172 QAbstractSpinBox::hideEvent +176 QWidget::x11Event +180 QAbstractSpinBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QDoubleSpinBox::validate +228 QDoubleSpinBox::fixup +232 QAbstractSpinBox::stepBy +236 QAbstractSpinBox::clear +240 QAbstractSpinBox::stepEnabled +244 QDoubleSpinBox::valueFromText +248 QDoubleSpinBox::textFromValue +252 (int (*)(...))-0x000000008 +256 (int (*)(...))(& _ZTI14QDoubleSpinBox) +260 QDoubleSpinBox::_ZThn8_N14QDoubleSpinBoxD1Ev +264 QDoubleSpinBox::_ZThn8_N14QDoubleSpinBoxD0Ev +268 QWidget::_ZThn8_NK7QWidget7devTypeEv +272 QWidget::_ZThn8_NK7QWidget11paintEngineEv +276 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QDoubleSpinBox + size=20 align=4 + base size=20 base align=4 +QDoubleSpinBox (0xb3275f00) 0 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 8u) + QAbstractSpinBox (0xb3275f40) 0 + primary-for QDoubleSpinBox (0xb3275f00) + QWidget (0xb30b7550) 0 + primary-for QAbstractSpinBox (0xb3275f40) + QObject (0xb30baac8) 0 + primary-for QWidget (0xb30b7550) + QPaintDevice (0xb30bab04) 8 + vptr=((& QDoubleSpinBox::_ZTV14QDoubleSpinBox) + 260u) + +Vtable for QSplashScreen +QSplashScreen::_ZTV13QSplashScreen: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSplashScreen) +8 QSplashScreen::metaObject +12 QSplashScreen::qt_metacast +16 QSplashScreen::qt_metacall +20 QSplashScreen::~QSplashScreen +24 QSplashScreen::~QSplashScreen +28 QSplashScreen::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSplashScreen::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSplashScreen::drawContents +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI13QSplashScreen) +236 QSplashScreen::_ZThn8_N13QSplashScreenD1Ev +240 QSplashScreen::_ZThn8_N13QSplashScreenD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplashScreen + size=20 align=4 + base size=20 base align=4 +QSplashScreen (0xb30c9200) 0 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 8u) + QWidget (0xb30ca370) 0 + primary-for QSplashScreen (0xb30c9200) + QObject (0xb30c8780) 0 + primary-for QWidget (0xb30ca370) + QPaintDevice (0xb30c87bc) 8 + vptr=((& QSplashScreen::_ZTV13QSplashScreen) + 236u) + +Vtable for QSplitter +QSplitter::_ZTV9QSplitter: 64u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSplitter) +8 QSplitter::metaObject +12 QSplitter::qt_metacast +16 QSplitter::qt_metacall +20 QSplitter::~QSplitter +24 QSplitter::~QSplitter +28 QSplitter::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QSplitter::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSplitter::sizeHint +68 QSplitter::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QSplitter::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QSplitter::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QSplitter::createHandle +228 (int (*)(...))-0x000000008 +232 (int (*)(...))(& _ZTI9QSplitter) +236 QSplitter::_ZThn8_N9QSplitterD1Ev +240 QSplitter::_ZThn8_N9QSplitterD0Ev +244 QWidget::_ZThn8_NK7QWidget7devTypeEv +248 QWidget::_ZThn8_NK7QWidget11paintEngineEv +252 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitter + size=20 align=4 + base size=20 base align=4 +QSplitter (0xb30c9540) 0 + vptr=((& QSplitter::_ZTV9QSplitter) + 8u) + QFrame (0xb30c9580) 0 + primary-for QSplitter (0xb30c9540) + QWidget (0xb30e02d0) 0 + primary-for QFrame (0xb30c9580) + QObject (0xb30de7bc) 0 + primary-for QWidget (0xb30e02d0) + QPaintDevice (0xb30de7f8) 8 + vptr=((& QSplitter::_ZTV9QSplitter) + 236u) + +Vtable for QSplitterHandle +QSplitterHandle::_ZTV15QSplitterHandle: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSplitterHandle) +8 QSplitterHandle::metaObject +12 QSplitterHandle::qt_metacast +16 QSplitterHandle::qt_metacall +20 QSplitterHandle::~QSplitterHandle +24 QSplitterHandle::~QSplitterHandle +28 QSplitterHandle::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSplitterHandle::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QSplitterHandle::mousePressEvent +84 QSplitterHandle::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QSplitterHandle::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSplitterHandle::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI15QSplitterHandle) +232 QSplitterHandle::_ZThn8_N15QSplitterHandleD1Ev +236 QSplitterHandle::_ZThn8_N15QSplitterHandleD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSplitterHandle + size=20 align=4 + base size=20 base align=4 +QSplitterHandle (0xb30c9980) 0 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 8u) + QWidget (0xb30edaf0) 0 + primary-for QSplitterHandle (0xb30c9980) + QObject (0xb30eff78) 0 + primary-for QWidget (0xb30edaf0) + QPaintDevice (0xb30effb4) 8 + vptr=((& QSplitterHandle::_ZTV15QSplitterHandle) + 232u) + +Vtable for QStackedWidget +QStackedWidget::_ZTV14QStackedWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QStackedWidget) +8 QStackedWidget::metaObject +12 QStackedWidget::qt_metacast +16 QStackedWidget::qt_metacall +20 QStackedWidget::~QStackedWidget +24 QStackedWidget::~QStackedWidget +28 QStackedWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QFrame::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI14QStackedWidget) +232 QStackedWidget::_ZThn8_N14QStackedWidgetD1Ev +236 QStackedWidget::_ZThn8_N14QStackedWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStackedWidget + size=20 align=4 + base size=20 base align=4 +QStackedWidget (0xb30c9c40) 0 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 8u) + QFrame (0xb30c9c80) 0 + primary-for QStackedWidget (0xb30c9c40) + QWidget (0xb3100460) 0 + primary-for QFrame (0xb30c9c80) + QObject (0xb30fab04) 0 + primary-for QWidget (0xb3100460) + QPaintDevice (0xb30fab40) 8 + vptr=((& QStackedWidget::_ZTV14QStackedWidget) + 232u) + +Vtable for QStatusBar +QStatusBar::_ZTV10QStatusBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QStatusBar) +8 QStatusBar::metaObject +12 QStatusBar::qt_metacast +16 QStatusBar::qt_metacall +20 QStatusBar::~QStatusBar +24 QStatusBar::~QStatusBar +28 QStatusBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QStatusBar::paintEvent +128 QWidget::moveEvent +132 QStatusBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QStatusBar::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QStatusBar) +232 QStatusBar::_ZThn8_N10QStatusBarD1Ev +236 QStatusBar::_ZThn8_N10QStatusBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QStatusBar + size=20 align=4 + base size=20 base align=4 +QStatusBar (0xb30c9f40) 0 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 8u) + QWidget (0xb310ae10) 0 + primary-for QStatusBar (0xb30c9f40) + QObject (0xb310b9d8) 0 + primary-for QWidget (0xb310ae10) + QPaintDevice (0xb310ba14) 8 + vptr=((& QStatusBar::_ZTV10QStatusBar) + 232u) + +Vtable for QTextBrowser +QTextBrowser::_ZTV12QTextBrowser: 74u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextBrowser) +8 QTextBrowser::metaObject +12 QTextBrowser::qt_metacast +16 QTextBrowser::qt_metacall +20 QTextBrowser::~QTextBrowser +24 QTextBrowser::~QTextBrowser +28 QTextBrowser::event +32 QObject::eventFilter +36 QTextEdit::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QAbstractScrollArea::sizeHint +68 QAbstractScrollArea::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QTextBrowser::mousePressEvent +84 QTextBrowser::mouseReleaseEvent +88 QTextEdit::mouseDoubleClickEvent +92 QTextBrowser::mouseMoveEvent +96 QTextEdit::wheelEvent +100 QTextBrowser::keyPressEvent +104 QTextEdit::keyReleaseEvent +108 QTextEdit::focusInEvent +112 QTextBrowser::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QTextBrowser::paintEvent +128 QWidget::moveEvent +132 QTextEdit::resizeEvent +136 QWidget::closeEvent +140 QTextEdit::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QTextEdit::dragEnterEvent +156 QTextEdit::dragMoveEvent +160 QTextEdit::dragLeaveEvent +164 QTextEdit::dropEvent +168 QTextEdit::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QTextEdit::changeEvent +184 QWidget::metric +188 QTextEdit::inputMethodEvent +192 QTextEdit::inputMethodQuery +196 QTextBrowser::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QAbstractScrollArea::viewportEvent +228 QTextEdit::scrollContentsBy +232 QTextBrowser::loadResource +236 QTextEdit::createMimeDataFromSelection +240 QTextEdit::canInsertFromMimeData +244 QTextEdit::insertFromMimeData +248 QTextBrowser::setSource +252 QTextBrowser::backward +256 QTextBrowser::forward +260 QTextBrowser::home +264 QTextBrowser::reload +268 (int (*)(...))-0x000000008 +272 (int (*)(...))(& _ZTI12QTextBrowser) +276 QTextBrowser::_ZThn8_N12QTextBrowserD1Ev +280 QTextBrowser::_ZThn8_N12QTextBrowserD0Ev +284 QWidget::_ZThn8_NK7QWidget7devTypeEv +288 QWidget::_ZThn8_NK7QWidget11paintEngineEv +292 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QTextBrowser + size=20 align=4 + base size=20 base align=4 +QTextBrowser (0xb3121340) 0 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 8u) + QTextEdit (0xb3121380) 0 + primary-for QTextBrowser (0xb3121340) + QAbstractScrollArea (0xb31213c0) 0 + primary-for QTextEdit (0xb3121380) + QFrame (0xb3121400) 0 + primary-for QAbstractScrollArea (0xb31213c0) + QWidget (0xb3127140) 0 + primary-for QFrame (0xb3121400) + QObject (0xb311fc6c) 0 + primary-for QWidget (0xb3127140) + QPaintDevice (0xb311fca8) 8 + vptr=((& QTextBrowser::_ZTV12QTextBrowser) + 276u) + +Vtable for QToolBar +QToolBar::_ZTV8QToolBar: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QToolBar) +8 QToolBar::metaObject +12 QToolBar::qt_metacast +16 QToolBar::qt_metacall +20 QToolBar::~QToolBar +24 QToolBar::~QToolBar +28 QToolBar::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QToolBar::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QToolBar::paintEvent +128 QWidget::moveEvent +132 QToolBar::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QToolBar::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolBar::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI8QToolBar) +232 QToolBar::_ZThn8_N8QToolBarD1Ev +236 QToolBar::_ZThn8_N8QToolBarD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBar + size=20 align=4 + base size=20 base align=4 +QToolBar (0xb31216c0) 0 + vptr=((& QToolBar::_ZTV8QToolBar) + 8u) + QWidget (0xb3131820) 0 + primary-for QToolBar (0xb31216c0) + QObject (0xb312f960) 0 + primary-for QWidget (0xb3131820) + QPaintDevice (0xb312f99c) 8 + vptr=((& QToolBar::_ZTV8QToolBar) + 232u) + +Vtable for QToolBox +QToolBox::_ZTV8QToolBox: 65u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QToolBox) +8 QToolBox::metaObject +12 QToolBox::qt_metacast +16 QToolBox::qt_metacall +20 QToolBox::~QToolBox +24 QToolBox::~QToolBox +28 QToolBox::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QFrame::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QFrame::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QToolBox::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolBox::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QToolBox::itemInserted +228 QToolBox::itemRemoved +232 (int (*)(...))-0x000000008 +236 (int (*)(...))(& _ZTI8QToolBox) +240 QToolBox::_ZThn8_N8QToolBoxD1Ev +244 QToolBox::_ZThn8_N8QToolBoxD0Ev +248 QWidget::_ZThn8_NK7QWidget7devTypeEv +252 QWidget::_ZThn8_NK7QWidget11paintEngineEv +256 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolBox + size=20 align=4 + base size=20 base align=4 +QToolBox (0xb3121a80) 0 + vptr=((& QToolBox::_ZTV8QToolBox) + 8u) + QFrame (0xb3121ac0) 0 + primary-for QToolBox (0xb3121a80) + QWidget (0xb3147d20) 0 + primary-for QFrame (0xb3121ac0) + QObject (0xb3146f78) 0 + primary-for QWidget (0xb3147d20) + QPaintDevice (0xb3146fb4) 8 + vptr=((& QToolBox::_ZTV8QToolBox) + 240u) + +Vtable for QToolButton +QToolButton::_ZTV11QToolButton: 66u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QToolButton) +8 QToolButton::metaObject +12 QToolButton::qt_metacast +16 QToolButton::qt_metacall +20 QToolButton::~QToolButton +24 QToolButton::~QToolButton +28 QToolButton::event +32 QObject::eventFilter +36 QToolButton::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QToolButton::sizeHint +68 QToolButton::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QToolButton::mousePressEvent +84 QToolButton::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QAbstractButton::mouseMoveEvent +96 QWidget::wheelEvent +100 QAbstractButton::keyPressEvent +104 QAbstractButton::keyReleaseEvent +108 QAbstractButton::focusInEvent +112 QAbstractButton::focusOutEvent +116 QToolButton::enterEvent +120 QToolButton::leaveEvent +124 QToolButton::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QToolButton::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QToolButton::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 QToolButton::hitButton +228 QAbstractButton::checkStateSet +232 QToolButton::nextCheckState +236 (int (*)(...))-0x000000008 +240 (int (*)(...))(& _ZTI11QToolButton) +244 QToolButton::_ZThn8_N11QToolButtonD1Ev +248 QToolButton::_ZThn8_N11QToolButtonD0Ev +252 QWidget::_ZThn8_NK7QWidget7devTypeEv +256 QWidget::_ZThn8_NK7QWidget11paintEngineEv +260 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QToolButton + size=20 align=4 + base size=20 base align=4 +QToolButton (0xb31740c0) 0 + vptr=((& QToolButton::_ZTV11QToolButton) + 8u) + QAbstractButton (0xb3174100) 0 + primary-for QToolButton (0xb31740c0) + QWidget (0xb31724b0) 0 + primary-for QAbstractButton (0xb3174100) + QObject (0xb31753c0) 0 + primary-for QWidget (0xb31724b0) + QPaintDevice (0xb31753fc) 8 + vptr=((& QToolButton::_ZTV11QToolButton) + 244u) + +Vtable for QWorkspace +QWorkspace::_ZTV10QWorkspace: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QWorkspace) +8 QWorkspace::metaObject +12 QWorkspace::qt_metacast +16 QWorkspace::qt_metacall +20 QWorkspace::~QWorkspace +24 QWorkspace::~QWorkspace +28 QWorkspace::event +32 QWorkspace::eventFilter +36 QObject::timerEvent +40 QWorkspace::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QWorkspace::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWorkspace::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QWorkspace::paintEvent +128 QWidget::moveEvent +132 QWorkspace::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWorkspace::showEvent +172 QWorkspace::hideEvent +176 QWidget::x11Event +180 QWorkspace::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QWorkspace) +232 QWorkspace::_ZThn8_N10QWorkspaceD1Ev +236 QWorkspace::_ZThn8_N10QWorkspaceD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QWorkspace + size=20 align=4 + base size=20 base align=4 +QWorkspace (0xb31747c0) 0 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 8u) + QWidget (0xb3188910) 0 + primary-for QWorkspace (0xb31747c0) + QObject (0xb3193a50) 0 + primary-for QWidget (0xb3188910) + QPaintDevice (0xb3193a8c) 8 + vptr=((& QWorkspace::_ZTV10QWorkspace) + 232u) + +Vtable for QGraphicsSvgItem +QGraphicsSvgItem::_ZTV16QGraphicsSvgItem: 56u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QGraphicsSvgItem) +8 QGraphicsSvgItem::metaObject +12 QGraphicsSvgItem::qt_metacast +16 QGraphicsSvgItem::qt_metacall +20 QGraphicsSvgItem::~QGraphicsSvgItem +24 QGraphicsSvgItem::~QGraphicsSvgItem +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QGraphicsSvgItem::boundingRect +60 QGraphicsSvgItem::paint +64 QGraphicsSvgItem::type +68 (int (*)(...))-0x000000008 +72 (int (*)(...))(& _ZTI16QGraphicsSvgItem) +76 QGraphicsSvgItem::_ZThn8_N16QGraphicsSvgItemD1Ev +80 QGraphicsSvgItem::_ZThn8_N16QGraphicsSvgItemD0Ev +84 QGraphicsItem::advance +88 QGraphicsSvgItem::_ZThn8_NK16QGraphicsSvgItem12boundingRectEv +92 QGraphicsItem::shape +96 QGraphicsItem::contains +100 QGraphicsItem::collidesWithItem +104 QGraphicsItem::collidesWithPath +108 QGraphicsItem::isObscuredBy +112 QGraphicsItem::opaqueArea +116 QGraphicsSvgItem::_ZThn8_N16QGraphicsSvgItem5paintEP8QPainterPK24QStyleOptionGraphicsItemP7QWidget +120 QGraphicsSvgItem::_ZThn8_NK16QGraphicsSvgItem4typeEv +124 QGraphicsItem::sceneEventFilter +128 QGraphicsItem::sceneEvent +132 QGraphicsItem::contextMenuEvent +136 QGraphicsItem::dragEnterEvent +140 QGraphicsItem::dragLeaveEvent +144 QGraphicsItem::dragMoveEvent +148 QGraphicsItem::dropEvent +152 QGraphicsItem::focusInEvent +156 QGraphicsItem::focusOutEvent +160 QGraphicsItem::hoverEnterEvent +164 QGraphicsItem::hoverMoveEvent +168 QGraphicsItem::hoverLeaveEvent +172 QGraphicsItem::keyPressEvent +176 QGraphicsItem::keyReleaseEvent +180 QGraphicsItem::mousePressEvent +184 QGraphicsItem::mouseMoveEvent +188 QGraphicsItem::mouseReleaseEvent +192 QGraphicsItem::mouseDoubleClickEvent +196 QGraphicsItem::wheelEvent +200 QGraphicsItem::inputMethodEvent +204 QGraphicsItem::inputMethodQuery +208 QGraphicsItem::itemChange +212 QGraphicsItem::supportsExtension +216 QGraphicsItem::setExtension +220 QGraphicsItem::extension + +Class QGraphicsSvgItem + size=16 align=4 + base size=16 base align=4 +QGraphicsSvgItem (0xb31a0e10) 0 + vptr=((& QGraphicsSvgItem::_ZTV16QGraphicsSvgItem) + 8u) + QObject (0xb31a2ac8) 0 + primary-for QGraphicsSvgItem (0xb31a0e10) + QGraphicsItem (0xb31a2b04) 8 + vptr=((& QGraphicsSvgItem::_ZTV16QGraphicsSvgItem) + 76u) + +Vtable for QSvgGenerator +QSvgGenerator::_ZTV13QSvgGenerator: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSvgGenerator) +8 QSvgGenerator::~QSvgGenerator +12 QSvgGenerator::~QSvgGenerator +16 QPaintDevice::devType +20 QSvgGenerator::paintEngine +24 QSvgGenerator::metric + +Class QSvgGenerator + size=12 align=4 + base size=12 base align=4 +QSvgGenerator (0xb3174d00) 0 + vptr=((& QSvgGenerator::_ZTV13QSvgGenerator) + 8u) + QPaintDevice (0xb31b3924) 0 + primary-for QSvgGenerator (0xb3174d00) + +Vtable for QSvgRenderer +QSvgRenderer::_ZTV12QSvgRenderer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QSvgRenderer) +8 QSvgRenderer::metaObject +12 QSvgRenderer::qt_metacast +16 QSvgRenderer::qt_metacall +20 QSvgRenderer::~QSvgRenderer +24 QSvgRenderer::~QSvgRenderer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSvgRenderer + size=8 align=4 + base size=8 base align=4 +QSvgRenderer (0xb3174e40) 0 + vptr=((& QSvgRenderer::_ZTV12QSvgRenderer) + 8u) + QObject (0xb31b3d20) 0 + primary-for QSvgRenderer (0xb3174e40) + +Vtable for QSvgWidget +QSvgWidget::_ZTV10QSvgWidget: 63u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QSvgWidget) +8 QSvgWidget::metaObject +12 QSvgWidget::qt_metacast +16 QSvgWidget::qt_metacall +20 QSvgWidget::~QSvgWidget +24 QSvgWidget::~QSvgWidget +28 QWidget::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QWidget::devType +60 QWidget::setVisible +64 QSvgWidget::sizeHint +68 QWidget::minimumSizeHint +72 QWidget::heightForWidth +76 QWidget::paintEngine +80 QWidget::mousePressEvent +84 QWidget::mouseReleaseEvent +88 QWidget::mouseDoubleClickEvent +92 QWidget::mouseMoveEvent +96 QWidget::wheelEvent +100 QWidget::keyPressEvent +104 QWidget::keyReleaseEvent +108 QWidget::focusInEvent +112 QWidget::focusOutEvent +116 QWidget::enterEvent +120 QWidget::leaveEvent +124 QSvgWidget::paintEvent +128 QWidget::moveEvent +132 QWidget::resizeEvent +136 QWidget::closeEvent +140 QWidget::contextMenuEvent +144 QWidget::tabletEvent +148 QWidget::actionEvent +152 QWidget::dragEnterEvent +156 QWidget::dragMoveEvent +160 QWidget::dragLeaveEvent +164 QWidget::dropEvent +168 QWidget::showEvent +172 QWidget::hideEvent +176 QWidget::x11Event +180 QWidget::changeEvent +184 QWidget::metric +188 QWidget::inputMethodEvent +192 QWidget::inputMethodQuery +196 QWidget::focusNextPrevChild +200 QWidget::styleChange +204 QWidget::enabledChange +208 QWidget::paletteChange +212 QWidget::fontChange +216 QWidget::windowActivationChange +220 QWidget::languageChange +224 (int (*)(...))-0x000000008 +228 (int (*)(...))(& _ZTI10QSvgWidget) +232 QSvgWidget::_ZThn8_N10QSvgWidgetD1Ev +236 QSvgWidget::_ZThn8_N10QSvgWidgetD0Ev +240 QWidget::_ZThn8_NK7QWidget7devTypeEv +244 QWidget::_ZThn8_NK7QWidget11paintEngineEv +248 QWidget::_ZThn8_NK7QWidget6metricEN12QPaintDevice17PaintDeviceMetricE + +Class QSvgWidget + size=20 align=4 + base size=20 base align=4 +QSvgWidget (0xb2fcb100) 0 + vptr=((& QSvgWidget::_ZTV10QSvgWidget) + 8u) + QWidget (0xb2fc9320) 0 + primary-for QSvgWidget (0xb2fcb100) + QObject (0xb2fc5744) 0 + primary-for QWidget (0xb2fc9320) + QPaintDevice (0xb2fc5780) 8 + vptr=((& QSvgWidget::_ZTV10QSvgWidget) + 232u) + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb3028870) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb3040e10) 0 + +Class QVectorTypedData + size=24 align=4 + base size=24 base align=4 +QVectorTypedData (0xb2f0d12c) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2f0dc30) 0 + +Class QVectorTypedData + size=36 align=4 + base size=36 base align=4 +QVectorTypedData (0xb2f2b708) 0 + +Class QVectorTypedData + size=48 align=4 + base size=48 base align=4 +QVectorTypedData (0xb2f9bf3c) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2fb30f0) 0 + +Class QVectorTypedData + size=48 align=4 + base size=48 base align=4 +QVectorTypedData (0xb2fb32d0) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2fb34b0) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2e74c6c) 0 + +Class QVectorTypedData > + size=20 align=4 + base size=20 base align=4 +QVectorTypedData > (0xb2e74e4c) 0 + +Class QVectorTypedData + size=28 align=4 + base size=28 base align=4 +QVectorTypedData (0xb2c76000) 0 + +Class QVectorTypedData + size=32 align=4 + base size=32 base align=4 +QVectorTypedData (0xb2c76474) 0 + +Class QVectorTypedData + size=28 align=4 + base size=28 base align=4 +QVectorTypedData (0xb2c76e4c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2cbbb7c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2d1303c) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb2d130b4) 0 + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb2d2afb4) 0 empty + +Class QHashNode + size=16 align=4 + base size=13 base align=4 +QHashNode (0xb2d3a2d0) 0 + +Class QHashNode + size=16 align=4 + base size=16 base align=4 +QHashNode (0xb2d6fec4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2b84474) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2b847bc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2b95078) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2b954b0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2b95a50) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2ba8b04) 0 empty + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb2bb4168) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2bb4294) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2bb44ec) 0 + +Class QVector::realloc(int, int) [with T = QPoint]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPoint]:: (0xb2bb4ca8) 0 + +Class QVector::realloc(int, int) [with T = QPointF]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPointF]:: (0xb2be63fc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2be6b7c) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2be6bf4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb2c24078) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2c240f0) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2c24564) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb2c2499c) 0 + +Class QVector::realloc(int, int) [with T = QTextLength]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QTextLength]:: (0xb2c24d20) 0 + +Class QHashDummyNode + size=12 align=4 + base size=12 base align=4 +QHashDummyNode (0xb2c562d0) 0 + +Class QVector::realloc(int, int) [with T = QPainterPath::Element]:: + size=4 align=4 + base size=4 base align=4 +QVector::realloc(int, int) [with T = QPainterPath::Element]:: (0xb2c56960) 0 + diff --git a/tests/auto/bic/data/QtTest.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtTest.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..e19076b --- /dev/null +++ b/tests/auto/bic/data/QtTest.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,4594 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb79373fc) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb7937438) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7d96b80) 0 empty + QUintForSize<4> (0xb79374b0) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb79375dc) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb7937618) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7d96d40) 0 empty + QIntForSize<4> (0xb7937690) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb7937a14) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb794903c) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb79499d8) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb7949a8c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7949c6c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7949d5c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7949e4c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7949f3c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e03c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e12c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e21c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e30c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e3fc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e4ec) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e5dc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e6cc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e7bc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e8ac) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb795e99c) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb795ea8c) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb797e528) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb797e99c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb79a8654) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb6b8e12c) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6bb9280) 0 + QBasicAtomicInt (0xb6bbd0f0) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6bcb03c) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6bff21c) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6bcb618) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb6c2e21c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6c7a30c) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6c7a5a0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6c7aec4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6ac47f8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6acf12c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6acfa50) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6ae2384) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6ae2ca8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6af65dc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6af6f00) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b0a834) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b18168) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b18a8c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6b2f3c0) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb6b2fce4) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb6b7b000) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb6982528) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb6b2fe4c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6991078) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb69f5168) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb6a43a14) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb68aeb40) 0 + QString (0xb68f84b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb68f87bc) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb6907654) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb695d3c0) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb6966140) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb695d6cc) 0 nearly-empty + primary-for std::bad_exception (0xb6966140) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb6966280) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb695d99c) 0 nearly-empty + primary-for std::bad_alloc (0xb6966280) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb695dc6c) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb695dec4) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb695de88) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb681612c) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb6808f00) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb6808474) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6827780) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6827708) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb6841a14) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb6841f78) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb684b564) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb6855040) 0 + QGenericArgument (0xb684b99c) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb684be88) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb684bca8) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6870000) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6863f78) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb6863ec4) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb687012c) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb66a4690) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb66a6ec0) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb66bf000) 0 + primary-for QIODevice (0xb66a6ec0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb66db2d0) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb66f51a4) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb671921c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb673ca14) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb673cb04) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6749078) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6749000) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb671afc0) 0 + QList (0xb67490b4) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb6764e10) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb677c03c) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb658d0b4) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb675ef80) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb658d690) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb675ef80) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb6592af0) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb658d9d8) 0 + primary-for QTextCodecPlugin (0xb6592af0) + QTextCodecFactoryInterface (0xb6597100) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb658da14) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb6597100) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb65a2258) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb65a2e4c) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb65a2b40) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb65979c0) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb65b403c) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb65979c0) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb6597a80) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb6597ac0) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb6597a80) + std::exception (0xb65b41e0) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb6597ac0) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb65b4384) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb65b4564) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb65b45dc) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb65b45a0) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb6656e88) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb6656e4c) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb6479780) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6479834) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb65087bc) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb65088ac) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6508834) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb6508924) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb650899c) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb65089d8) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb6508a14) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6508a8c) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb6508ac8) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6559258) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb6559ec4) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb6516e40) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb656bf3c) 0 + primary-for QTextIStream (0xb6516e40) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb637e100) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb65789d8) 0 + primary-for QTextOStream (0xb637e100) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb6389438) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb63894b0) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb63893c0) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6389528) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb63895a0) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6389618) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb6389690) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb63896cc) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb6389708) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb6389780) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb63897f8) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb6389834) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb6389960) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb63898e8) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb63898ac) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb63899d8) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb6389ac8) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb6389a50) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb6389b40) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb6389c30) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb6389bb8) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6389ce4) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb6389d5c) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb6389dd4) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb6389e10) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb6389e4c) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb6389e88) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb6444dd4) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb6444d98) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb62a7b7c) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb62c07bc) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb62c0744) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb62c0b04) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb62c0654) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb62c0c30) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb62ea2d0) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb62ea348) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb63067c0) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb62eae88) 0 + primary-for QFutureInterface (0xb63067c0) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb633a618) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb635e700) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb635cca8) 0 + primary-for QFutureWatcherBase (0xb635e700) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb635ee00) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb635ee40) 0 + primary-for QFutureWatcher (0xb635ee00) + QObject (0xb63747bc) 0 + primary-for QFutureWatcherBase (0xb635ee40) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb618b6cc) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb6181900) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb618b834) 0 + primary-for QThread (0xb6181900) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb6181c40) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb619ae10) 0 + primary-for QThreadPool (0xb6181c40) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb61ad7f8) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb61adac8) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb61b9300) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb61be7bc) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb61b9300) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb61befb4) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb61b9c80) 0 + QtConcurrent::ThreadEngineStarterBase (0xb61d2000) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb61b9e40) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb61b9e80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb61d24b0) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb61b9e80) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb61d2ac8) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb61d2b04) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb61d8180) 0 empty + std::input_iterator_tag (0xb61d2b40) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb61d8200) 0 empty + std::forward_iterator_tag (0xb61d8240) 0 empty + std::input_iterator_tag (0xb61d2b7c) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb61d82c0) 0 empty + std::bidirectional_iterator_tag (0xb61d8300) 0 empty + std::forward_iterator_tag (0xb61d8340) 0 empty + std::input_iterator_tag (0xb61d2bb8) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb61d2ec4) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb61d2f00) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb61d2f78) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb61ef12c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef21c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef294) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef30c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef384) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef3fc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef474) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef4ec) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef564) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef5dc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef654) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef6cc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef744) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61ef7bc) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb61ef8ac) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb61ef924) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb61ef99c) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb61efd20) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb61efd98) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb61efe88) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb61eff00) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb61eff78) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb62021a4) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb62021e0) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb620221c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6202258) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6202294) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb62022d0) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6202348) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6202384) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb62023c0) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb62023fc) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6202438) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6202474) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb6202e4c) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb626a438) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb626a870) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb626aa8c) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb626ae88) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb60b3000) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb60b3168) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb60b3870) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb60de294) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb60e0bb8) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb60e0e10) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb60e0e4c) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb60e0ec4) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb60e0f00) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb60e0f78) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb610b1a4) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb610b30c) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb610b294) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb610b348) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb610b384) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb61658ac) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb6165b7c) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5f68800) 0 empty + __gnu_cxx::new_allocator (0xb6165bb8) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb6165bf4) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5f688c0) 0 empty + __gnu_cxx::new_allocator (0xb6165c30) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb6165e4c) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb600a744) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb600a780) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb600db80) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb600a7bc) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5e88438) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5ea7140) 0 + std::allocator (0xb5ea7180) 0 empty + __gnu_cxx::new_allocator (0xb5e884b0) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5e883c0) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5e884ec) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5ea7300) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5e88528) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5e885dc) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5ea7500) 0 + std::allocator (0xb5ea7540) 0 empty + __gnu_cxx::new_allocator (0xb5e88654) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5e88564) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5e88690) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5e88744) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5ea76c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5e886cc) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5e88780) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5f3cbf4) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5f465a0) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5f468e8) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5f54680) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5f59294) 0 + primary-for std::collate (0xb5f54680) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5f54780) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5f59384) 0 + primary-for std::collate (0xb5f54780) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5f597f8) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5f59834) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5d75700) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5f59870) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5d75840) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5d75880) 0 + primary-for std::collate_byname (0xb5d75840) + std::locale::facet (0xb5f598e8) 0 + primary-for std::collate (0xb5d75880) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5d75900) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5d75940) 0 + primary-for std::collate_byname (0xb5d75900) + std::locale::facet (0xb5f599d8) 0 + primary-for std::collate (0xb5d75940) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5d75f80) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5d8b7bc) 0 nearly-empty + primary-for std::ios_base::failure (0xb5d75f80) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5d98a50) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5d9b000) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5d9b3fc) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5d8b780) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5dbce10) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5dbcec4) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5dbcf3c) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5e44140) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5e3f294) 0 + primary-for std::ctype (0xb5e44140) + std::ctype_base (0xb5e3f2d0) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5e4ca00) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5e5ce4c) 0 + primary-for std::__ctype_abstract_base (0xb5e4ca00) + std::ctype_base (0xb5e5ce88) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5e50840) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5c68870) 0 + primary-for std::ctype (0xb5e50840) + std::locale::facet (0xb5e5cf78) 0 + primary-for std::__ctype_abstract_base (0xb5c68870) + std::ctype_base (0xb5e5cfb4) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5e50a00) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5c70d20) 0 + primary-for std::ctype_byname (0xb5e50a00) + std::locale::facet (0xb5c712d0) 0 + primary-for std::ctype (0xb5c70d20) + std::ctype_base (0xb5c7130c) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5e50a80) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5e50ac0) 0 + primary-for std::ctype_byname (0xb5e50a80) + std::__ctype_abstract_base (0xb5c75640) 0 + primary-for std::ctype (0xb5e50ac0) + std::locale::facet (0xb5c71474) 0 + primary-for std::__ctype_abstract_base (0xb5c75640) + std::ctype_base (0xb5c714b0) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5c71ec4) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5c854c0) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5c81690) 0 + primary-for std::numpunct (0xb5c854c0) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5c85580) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5c81780) 0 + primary-for std::numpunct (0xb5c85580) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5cb9dd4) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5d07ac0) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5d07b00) 0 + primary-for std::numpunct_byname (0xb5d07ac0) + std::locale::facet (0xb5d0c3fc) 0 + primary-for std::numpunct (0xb5d07b00) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5d07b40) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5d0c4ec) 0 + primary-for std::num_get > > (0xb5d07b40) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5d07bc0) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5d0c5dc) 0 + primary-for std::num_put > > (0xb5d07bc0) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5d07c40) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5d07c80) 0 + primary-for std::numpunct_byname (0xb5d07c40) + std::locale::facet (0xb5d0c6cc) 0 + primary-for std::numpunct (0xb5d07c80) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5d07d00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5d0c7bc) 0 + primary-for std::num_get > > (0xb5d07d00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5d07d80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5d0c8ac) 0 + primary-for std::num_put > > (0xb5d07d80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5d5adc0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5d0c780) 0 + primary-for std::basic_ios > (0xb5d5adc0) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5d5ae00) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5b7003c) 0 + primary-for std::basic_ios > (0xb5d5ae00) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5ba6a80) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5ba6ac0) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb5b70d20) 4 + primary-for std::basic_ios > (0xb5ba6ac0) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5b70f00) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5ba6c00) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5ba6c40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5b70f3c) 4 + primary-for std::basic_ios > (0xb5ba6c40) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5bcc000) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5be54c0) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5be5500) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5bcc564) 8 + primary-for std::basic_ios > (0xb5be5500) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5be55c0) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5be5600) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5bcc8e8) 8 + primary-for std::basic_ios > (0xb5be5600) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5bcc654) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5bcc99c) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5c114c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5bccfb4) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5c165a0) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb5c4d3c0 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb5c4d440 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5c56cd0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb5c4d3c0) 0 + primary-for std::basic_iostream > (0xb5c56cd0) + subvttidx=4u + std::basic_ios > (0xb5c4d400) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5c165dc) 12 + primary-for std::basic_ios > (0xb5c4d400) + std::basic_ostream > (0xb5c4d440) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb5c4d400) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5c16870) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb5c4d740 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb5c4d7c0 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5c63d70) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb5c4d740) 0 + primary-for std::basic_iostream > (0xb5c63d70) + subvttidx=4u + std::basic_ios > (0xb5c4d780) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb5c168ac) 12 + primary-for std::basic_ios > (0xb5c4d780) + std::basic_ostream > (0xb5c4d7c0) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb5c4d780) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb5a7803c) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb5c16960) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb5c16690) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb5c16000) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb5a783fc) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5a78c6c) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb59950f0) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb5997500) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb5988a40) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb5997500) + QFutureInterfaceBase (0xb59952d0) 0 + primary-for QFutureInterface (0xb5988a40) + QRunnable (0xb599530c) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb5988ac0) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb5997910) 0 + primary-for QtConcurrent::RunFunctionTask (0xb5988ac0) + QFutureInterface (0xb5988b00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb5997910) + QFutureInterfaceBase (0xb59954b0) 0 + primary-for QFutureInterface (0xb5988b00) + QRunnable (0xb59954ec) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb58fa744) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb58ebe40) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb58ebe80) 0 + primary-for QFile (0xb58ebe40) + QObject (0xb58fa834) 0 + primary-for QIODevice (0xb58ebe80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb59281a4) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb5928d5c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb594b3fc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb594b708) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb595c474) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb595c3fc) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb595c564) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb577eac8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb577ebb8) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb57bb744) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb57bb780) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb57a4280) 0 + QAbstractFileEngine::ExtensionOption (0xb57bb7bc) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb57a4300) 0 + QAbstractFileEngine::ExtensionReturn (0xb57bb8ac) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb57a4380) 0 + QAbstractFileEngine::ExtensionOption (0xb57bb8e8) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb57ace88) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57bbf78) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb57cddd4) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb57cdf78) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb57a45c0) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb57a4600) 0 + primary-for QBuffer (0xb57a45c0) + QObject (0xb57d9474) 0 + primary-for QIODevice (0xb57a4600) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb57ec12c) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57ec924) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb57a4a40) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb57f9708) 0 + primary-for QFileSystemWatcher (0xb57a4a40) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb57a4d00) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb58100b4) 0 + primary-for QFSFileEngine (0xb57a4d00) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb57a4e00) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb57a4e40) 0 + primary-for QProcess (0xb57a4e00) + QObject (0xb5810a8c) 0 + primary-for QIODevice (0xb57a4e40) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb58314b0) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb58508e8) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb5850960) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb58316cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5856168) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb58562d0) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb56646cc) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb5664bb8) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5689000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56891e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56893c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56895a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5689780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5689960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5689b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5689d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5689f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56930f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56932d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56934b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5693690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5693870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5693a50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5693c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5693e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5698000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56981e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56983c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56985a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5698780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5698960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5698b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5698d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5698f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56a10f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56a12d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56a14b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56a1690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56a1870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56a1a50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56a1c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56a1e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ab000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ab1e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ab3c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ab5a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ab780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56ab960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56abb40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56abd20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56abf00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b00f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b02d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b04b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b0690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b0870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b0a50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b0c30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b0e10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b8000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b81e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56b83c0) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb56d1258) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb56d1438) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb56d130c) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb56d1b04) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb56b85a0) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb56f603c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb56eafb4) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb56f612c) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb56f60b4) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb57284b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5728ac8) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5728ca8) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5728e88) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb5735300) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb573e078) 0 + primary-for QSettings (0xb5735300) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb5735f00) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb5735f40) 0 + primary-for QTemporaryFile (0xb5735f00) + QIODevice (0xb5735f80) 0 + primary-for QFile (0xb5735f40) + QObject (0xb5569dd4) 0 + primary-for QIODevice (0xb5735f80) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb5579f3c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5584e4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55ac8e8) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb5576b00) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb55bb744) 0 + primary-for QEventLoop (0xb5576b00) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55bbd5c) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb5576e80) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb55dc12c) 0 + primary-for QAbstractEventDispatcher (0xb5576e80) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb55dc870) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb56033c0) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb56034b0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5603bf4) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb55eca40) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb5603ce4) 0 + primary-for QAbstractItemModel (0xb55eca40) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb55ecf00) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb55ecf40) 0 + primary-for QAbstractTableModel (0xb55ecf00) + QObject (0xb562f870) 0 + primary-for QAbstractItemModel (0xb55ecf40) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb563c180) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb563c1c0) 0 + primary-for QAbstractListModel (0xb563c180) + QObject (0xb56402d0) 0 + primary-for QAbstractItemModel (0xb563c1c0) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb5651d5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb545a4ec) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb545a5dc) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb563cbc0) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb546c2d0) 0 + primary-for QTimerEvent (0xb563cbc0) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb563cc80) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb546c528) 0 + primary-for QChildEvent (0xb563cc80) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb563ce40) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb546cd98) 0 + primary-for QCustomEvent (0xb563ce40) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb563cf40) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb547b0f0) 0 + primary-for QDynamicPropertyChangeEvent (0xb563cf40) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb5480000) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb547b348) 0 + primary-for QCoreApplication (0xb5480000) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb5490d98) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb54c312c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54c35dc) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb54c36cc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54c3b04) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb54c3bf4) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb54c3f00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb54d8258) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb54d5280) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb54d8348) 0 + primary-for QMimeData (0xb54d5280) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb54d5540) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb54d8ec4) 0 + primary-for QObjectCleanupHandler (0xb54d5540) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb54d5780) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb54ea744) 0 + primary-for QSharedMemory (0xb54d5780) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb54d5a40) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb54fd528) 0 + primary-for QSignalMapper (0xb54d5a40) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb54d5d00) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb5509690) 0 + primary-for QSocketNotifier (0xb54d5d00) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb5517708) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb551c080) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb5517c30) 0 + primary-for QTimer (0xb551c080) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb551c500) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb5525d98) 0 + primary-for QTranslator (0xb551c500) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb551c800) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb5536bb8) 0 + primary-for QLibrary (0xb551c800) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5545b04) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb551cb80) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb5555690) 0 + primary-for QPluginLoader (0xb551cb80) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb5368258) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb537b0b4) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb537b744) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb537b438) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb5388c30) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb5388924) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb5390e10) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb53970f0) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb53974ec) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb53d021c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53d0f00) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb53dd1a4) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb53ddb7c) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb53ddf00) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb540d8ac) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb540d99c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5414f78) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb5421000) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5428708) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb54288e8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5440744) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb544f8e8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb523d834) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb524f8ac) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb524fc6c) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb5271dd4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb527e7f8) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb52a6438) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb530a744) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb531d834) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb51393c0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5142438) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb516021c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb517c0f0) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb51b6ce4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51da1e0) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb52138ac) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb5226ac8) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb5037800) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb5042474) 0 + primary-for QTimeLine (0xb5037800) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb5055834) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb50799d8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5082f78) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb50920b4) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb509203c) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb5083280) 0 + QVector (0xb50920f0) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb509212c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5092b40) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb5092c6c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50b2834) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb50b2960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50c68e8) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb50c6a14) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb50c6bb8) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb50f71a4) 0 + +Class QList >:: + size=4 align=4 + base size=4 base align=4 +QList >:: (0xb50f77f8) 0 + +Class QList > + size=4 align=4 + base size=4 base align=4 +QList > (0xb50f7780) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb50f7a50) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb50f79d8) 0 + +Vtable for QSignalSpy +QSignalSpy::_ZTV10QSignalSpy: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QSignalSpy) +8 QObject::metaObject +12 QObject::qt_metacast +16 QSignalSpy::qt_metacall +20 QSignalSpy::~QSignalSpy +24 QSignalSpy::~QSignalSpy +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalSpy + size=20 align=4 + base size=20 base align=4 +QSignalSpy (0xb5110a00) 0 + vptr=((& QSignalSpy::_ZTV10QSignalSpy) + 8u) + QObject (0xb50f7834) 0 + primary-for QSignalSpy (0xb5110a00) + QList > (0xb50f7870) 8 + +Class QTestData + size=4 align=4 + base size=4 base align=4 +QTestData (0xb4f4d4ec) 0 + +Vtable for QTestEventLoop +QTestEventLoop::_ZTV14QTestEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTestEventLoop) +8 QTestEventLoop::metaObject +12 QTestEventLoop::qt_metacast +16 QTestEventLoop::qt_metacall +20 QTestEventLoop::~QTestEventLoop +24 QTestEventLoop::~QTestEventLoop +28 QObject::event +32 QObject::eventFilter +36 QTestEventLoop::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTestEventLoop + size=20 align=4 + base size=20 base align=4 +QTestEventLoop (0xb4f8b700) 0 + vptr=((& QTestEventLoop::_ZTV14QTestEventLoop) + 8u) + QObject (0xb4fa40f0) 0 + primary-for QTestEventLoop (0xb4f8b700) + +Class QPointer + size=4 align=4 + base size=4 base align=4 +QPointer (0xb4fb21a4) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4fff99c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb5014f3c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4e9f690) 0 + +Class QTypeInfo > + size=1 align=1 + base size=0 base align=1 +QTypeInfo > (0xb4e9f870) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ed9d5c) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb4ed9dd4) 0 + +Class QList >::Node + size=4 align=4 + base size=4 base align=4 +QList >::Node (0xb4f0bec4) 0 + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb4d335a0) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4d336cc) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4d33e10) 0 + diff --git a/tests/auto/bic/data/QtXml.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtXml.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..b39d2ed --- /dev/null +++ b/tests/auto/bic/data/QtXml.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,4953 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb78937bc) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb78937f8) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7cf3b40) 0 empty + QUintForSize<4> (0xb7893870) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb789399c) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb78939d8) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7cf3d00) 0 empty + QIntForSize<4> (0xb7893a50) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb7893dd4) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb789f3fc) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb789fd98) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb789fe4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b703c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b712c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b721c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b730c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b73fc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b74ec) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b75dc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b76cc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b77bc) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b78ac) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b799c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b7a8c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b7b7c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b7c6c) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb78b7d5c) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb78b7e4c) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb78d08e8) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb78d0d5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7902a14) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb6ae54ec) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6b14240) 0 + QBasicAtomicInt (0xb6b0d4b0) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6b1e3fc) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6b5a5dc) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6b1e9d8) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb6b895dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6bce6cc) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6bce960) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a19294) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a19bb8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a2b4ec) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a2be10) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a3d744) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a48078) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a4899c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a602d0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a60bf4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a71528) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a71e4c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6a89780) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb6a970b4) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb6ad83c0) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb6add8e8) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb6a9721c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68e9438) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb694c528) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb69a0dd4) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb680db00) 0 + QString (0xb684c870) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb684cb7c) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb6865a14) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb68ae780) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb68c4100) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb68aea8c) 0 nearly-empty + primary-for std::bad_exception (0xb68c4100) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb68c4240) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb68aed5c) 0 nearly-empty + primary-for std::bad_alloc (0xb68c4240) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb68aebb8) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb68d31e0) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb68d31a4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb67704ec) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb67702d0) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb6757834) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6781b40) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6781ac8) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb679cdd4) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb67a5348) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb67a5924) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb67b1000) 0 + QGenericArgument (0xb67a5d5c) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb67b4258) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb67b4078) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb67cb3c0) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb67cb348) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb67cb294) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb67cb4ec) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb65ffa50) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb6604e80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb66153c0) 0 + primary-for QIODevice (0xb6604e80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6631690) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb664e564) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb666f5dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6696dd4) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb6696ec4) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb66a3438) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb66a33c0) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb6676f80) 0 + QList (0xb66a3474) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb66ce1e0) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb66ce3fc) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb64e8474) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb66baf40) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb64e8a50) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb66baf40) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb64ef960) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb64e8d98) 0 + primary-for QTextCodecPlugin (0xb64ef960) + QTextCodecFactoryInterface (0xb64f30c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb64e8dd4) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb64f30c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb64fb618) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb650621c) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb64fbf00) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb64f3980) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb65113fc) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb64f3980) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb64f3a40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb64f3a80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb64f3a40) + std::exception (0xb65115a0) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb64f3a80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb6511744) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb6511924) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb651199c) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb6511960) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb65cd258) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb65cd21c) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb65d5b40) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb65d5bf4) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6458b7c) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb6458c6c) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6458bf4) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb6458ce4) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6458d5c) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb6458d98) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb6458dd4) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6458e4c) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb6458e88) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb64b4618) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb64c2294) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb6474e00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb64ce30c) 0 + primary-for QTextIStream (0xb6474e00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb62dc0c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb64ced98) 0 + primary-for QTextOStream (0xb62dc0c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb62e0834) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb62e08ac) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb62e07bc) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62e0924) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62e099c) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb62e0a14) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb62e0a8c) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb62e0ac8) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb62e0b04) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb62e0b7c) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb62e0bf4) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb62e0c30) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb62e0d5c) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb62e0ce4) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb62e0ca8) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb62e0dd4) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb62e0ec4) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb62e0e4c) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb62e0f3c) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb62fa000) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb62e0fb4) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb62fa0b4) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb62fa12c) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb62fa1a4) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb62fa1e0) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb62fa21c) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb62fa258) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb63bf1a4) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb63bf168) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb6200f3c) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb621cb7c) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb621cb04) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb621cec4) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb621ca14) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb621ce88) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb62386cc) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb6238744) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb6262780) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb626621c) 0 + primary-for QFutureInterface (0xb6262780) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb62919d8) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb62bb6c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb62c5078) 0 + primary-for QFutureWatcherBase (0xb62bb6c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb62bbdc0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb62bbe00) 0 + primary-for QFutureWatcher (0xb62bbdc0) + QObject (0xb62c5bb8) 0 + primary-for QFutureWatcherBase (0xb62bbe00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb60e0a8c) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb60de8c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb60f1384) 0 + primary-for QThread (0xb60de8c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb60dec00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb61041a4) 0 + primary-for QThreadPool (0xb60dec00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb6104bb8) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb6104e88) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb61172c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb6113b7c) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb61172c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb6126348) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb6117c40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb61263c0) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb6117e00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb6117e40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb6126870) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb6117e40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb6126e88) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb6126ec4) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb6138140) 0 empty + std::input_iterator_tag (0xb6126f00) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb61381c0) 0 empty + std::forward_iterator_tag (0xb6138200) 0 empty + std::input_iterator_tag (0xb6126f3c) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb6138280) 0 empty + std::bidirectional_iterator_tag (0xb61382c0) 0 empty + std::forward_iterator_tag (0xb6138300) 0 empty + std::input_iterator_tag (0xb6126f78) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb614421c) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb6144258) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb61442d0) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb61444ec) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61445dc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6144654) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61446cc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6144744) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61447bc) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6144834) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb61448ac) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6144924) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb614499c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6144a14) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6144a8c) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6144b04) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb6144b7c) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb6144c6c) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb6144ce4) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb6144d5c) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb615c0f0) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb615c168) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb615c258) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb615c2d0) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb615c348) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb615c564) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb615c5a0) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb615c5dc) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb615c618) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb615c654) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb615c690) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb615c708) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb615c744) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb615c780) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb615c7bc) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb615c7f8) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb615c834) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb617c21c) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb61be7f8) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb61bec30) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb61bee4c) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb6003258) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb60033c0) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb6003528) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb6003c30) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb6037654) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb603ef78) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb604a1e0) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb604a21c) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb604a294) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb604a2d0) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb604a348) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb604a564) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb604a6cc) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb604a654) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb604a708) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb604a744) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb60c0c6c) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb60c0f3c) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb60d37c0) 0 empty + __gnu_cxx::new_allocator (0xb60c0f78) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb60c0fb4) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb60d3880) 0 empty + __gnu_cxx::new_allocator (0xb5eda000) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb5eda21c) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5f2fb04) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5f2fb40) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5f69b40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5f2fb7c) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5dcf7f8) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5e02100) 0 + std::allocator (0xb5e02140) 0 empty + __gnu_cxx::new_allocator (0xb5dcf870) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5dcf780) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5dcf8ac) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5e022c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5dcf8e8) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5dcf99c) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5e024c0) 0 + std::allocator (0xb5e02500) 0 empty + __gnu_cxx::new_allocator (0xb5dcfa14) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5dcf924) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5dcfa50) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5dcfb04) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5e02680) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5dcfa8c) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5dcfb40) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5e96fb4) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5ea099c) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5ea0ce4) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5eb1640) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5eb0654) 0 + primary-for std::collate (0xb5eb1640) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5eb1740) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5eb0744) 0 + primary-for std::collate (0xb5eb1740) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5eb0bb8) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5eb0bf4) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5cd06c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5eb0c30) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5cd0800) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5cd0840) 0 + primary-for std::collate_byname (0xb5cd0800) + std::locale::facet (0xb5eb0ca8) 0 + primary-for std::collate (0xb5cd0840) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5cd08c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5cd0900) 0 + primary-for std::collate_byname (0xb5cd08c0) + std::locale::facet (0xb5eb0d98) 0 + primary-for std::collate (0xb5cd0900) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5cd0f40) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5ce4b7c) 0 nearly-empty + primary-for std::ios_base::failure (0xb5cd0f40) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5cf5e10) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5cf63c0) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5cf67bc) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5ce4b40) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5d371e0) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5d37474) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5d37708) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5d9dfa0) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5d8b654) 0 + primary-for std::ctype (0xb5d9dfa0) + std::ctype_base (0xb5d8b690) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5daa870) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5dbc21c) 0 + primary-for std::__ctype_abstract_base (0xb5daa870) + std::ctype_base (0xb5dbc258) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5dae800) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5bc76e0) 0 + primary-for std::ctype (0xb5dae800) + std::locale::facet (0xb5dbc348) 0 + primary-for std::__ctype_abstract_base (0xb5bc76e0) + std::ctype_base (0xb5dbc384) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5dae9c0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5bcee60) 0 + primary-for std::ctype_byname (0xb5dae9c0) + std::locale::facet (0xb5bcd690) 0 + primary-for std::ctype (0xb5bcee60) + std::ctype_base (0xb5bcd6cc) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5daea40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5daea80) 0 + primary-for std::ctype_byname (0xb5daea40) + std::__ctype_abstract_base (0xb5bd24b0) 0 + primary-for std::ctype (0xb5daea80) + std::locale::facet (0xb5bcd834) 0 + primary-for std::__ctype_abstract_base (0xb5bd24b0) + std::ctype_base (0xb5bcd870) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5bd91e0) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5be0480) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5bd9a50) 0 + primary-for std::numpunct (0xb5be0480) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5be0540) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5bd9b40) 0 + primary-for std::numpunct (0xb5be0540) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5c4a1a4) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5c64a80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5c64ac0) 0 + primary-for std::numpunct_byname (0xb5c64a80) + std::locale::facet (0xb5c4a7f8) 0 + primary-for std::numpunct (0xb5c64ac0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5c64b00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5c4a8e8) 0 + primary-for std::num_get > > (0xb5c64b00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5c64b80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5c4a9d8) 0 + primary-for std::num_put > > (0xb5c64b80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5c64c00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5c64c40) 0 + primary-for std::numpunct_byname (0xb5c64c00) + std::locale::facet (0xb5c4aac8) 0 + primary-for std::numpunct (0xb5c64c40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5c64cc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5c4abb8) 0 + primary-for std::num_get > > (0xb5c64cc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5c64d40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5c4aca8) 0 + primary-for std::num_put > > (0xb5c64d40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5cb8d80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5cb930c) 0 + primary-for std::basic_ios > (0xb5cb8d80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5cb8dc0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5cb93fc) 0 + primary-for std::basic_ios > (0xb5cb8dc0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5b00a40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5b00a80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb5b06078) 4 + primary-for std::basic_ios > (0xb5b00a80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5b06258) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5b00bc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5b00c00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5b06294) 4 + primary-for std::basic_ios > (0xb5b00c00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb5b06438) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5b42480) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5b424c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5b0699c) 8 + primary-for std::basic_ios > (0xb5b424c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5b42580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5b425c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5b06d20) 8 + primary-for std::basic_ios > (0xb5b425c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5b64348) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5b64384) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5b6e480) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5b643c0) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5b6499c) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb5ba9380 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb5ba9400 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5bb2b40) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb5ba9380) 0 + primary-for std::basic_iostream > (0xb5bb2b40) + subvttidx=4u + std::basic_ios > (0xb5ba93c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5b649d8) 12 + primary-for std::basic_ios > (0xb5ba93c0) + std::basic_ostream > (0xb5ba9400) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb5ba93c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5b64c6c) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb5ba9700 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb5ba9780 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5bc0be0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb5ba9700) 0 + primary-for std::basic_iostream > (0xb5bc0be0) + subvttidx=4u + std::basic_ios > (0xb5ba9740) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb5b64ca8) 12 + primary-for std::basic_ios > (0xb5ba9740) + std::basic_ostream > (0xb5ba9780) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb5ba9740) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb59cb474) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb59cb3fc) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb59cb384) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb59cb2d0) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb59cb834) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb59cbf00) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb58ea4b0) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb58f5370) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb58e4a00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb58f5370) + QFutureInterfaceBase (0xb58ea690) 0 + primary-for QFutureInterface (0xb58e4a00) + QRunnable (0xb58ea6cc) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb58e4a80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb58f5780) 0 + primary-for QtConcurrent::RunFunctionTask (0xb58e4a80) + QFutureInterface (0xb58e4ac0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb58f5780) + QFutureInterfaceBase (0xb58ea870) 0 + primary-for QFutureInterface (0xb58e4ac0) + QRunnable (0xb58ea8ac) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb584ab04) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb5847e00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb5847e40) 0 + primary-for QFile (0xb5847e00) + QObject (0xb584abf4) 0 + primary-for QIODevice (0xb5847e40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5880564) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb588f12c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb58a17bc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb58a1ac8) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb58b2834) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb58b27bc) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb58b2924) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56d1e88) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56d1f78) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb5711b04) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb5711b40) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb5702240) 0 + QAbstractFileEngine::ExtensionOption (0xb5711b7c) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb57022c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb5711c6c) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb5702340) 0 + QAbstractFileEngine::ExtensionOption (0xb5711ca8) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb5711258) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5723348) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb572f1a4) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb572f348) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb5702580) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb57025c0) 0 + primary-for QBuffer (0xb5702580) + QObject (0xb572f870) 0 + primary-for QIODevice (0xb57025c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb57454ec) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5745ce4) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb5702a00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb5754ac8) 0 + primary-for QFileSystemWatcher (0xb5702a00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb5702cc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb5768474) 0 + primary-for QFSFileEngine (0xb5702cc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb5702dc0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb5702e00) 0 + primary-for QProcess (0xb5702dc0) + QObject (0xb5768e4c) 0 + primary-for QIODevice (0xb5702e00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb5787870) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb57a6ca8) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb57a6d20) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb5787a8c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb57b4528) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57b4690) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb55b9a8c) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb55b9f78) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55da3c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55da5a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55da780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55da960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55dab40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55dad20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55daf00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ed0f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ed2d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ed4b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ed690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ed870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55eda50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55edc30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55ede10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55f5000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55f51e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55f53c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55f55a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55f5780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55f5960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55f5b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55f5d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55f5f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fd0f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fd2d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fd4b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fd690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fd870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fda50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fdc30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55fde10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5607000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56071e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56073c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56075a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5607780) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5607960) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5607b40) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5607d20) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5607f00) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560c0f0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560c2d0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560c4b0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560c690) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560c870) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560ca50) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560cc30) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb560ce10) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5615000) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56151e0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56153c0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb56155a0) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5615780) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb5628618) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb56287f8) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb56286cc) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb5628ec4) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb5615960) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb56503fc) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb5650384) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb56504ec) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb5650474) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb5684870) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5684e88) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5698078) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5698258) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb56932c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb5698438) 0 + primary-for QSettings (0xb56932c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb5693ec0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb5693f00) 0 + primary-for QTemporaryFile (0xb5693ec0) + QIODevice (0xb5693f40) 0 + primary-for QFile (0xb5693f00) + QObject (0xb54d0168) 0 + primary-for QIODevice (0xb5693f40) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb54df2d0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb54ec21c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5503ca8) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb54dbac0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb5515b04) 0 + primary-for QEventLoop (0xb54dbac0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb552912c) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb54dbe40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb55394ec) 0 + primary-for QAbstractEventDispatcher (0xb54dbe40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb554c384) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb555f780) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb555f870) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb555ffb4) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb5549a00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb5569078) 0 + primary-for QAbstractItemModel (0xb5549a00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb5549ec0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb5549f00) 0 + primary-for QAbstractTableModel (0xb5549ec0) + QObject (0xb5589c30) 0 + primary-for QAbstractItemModel (0xb5549f00) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb559b140) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb559b180) 0 + primary-for QAbstractListModel (0xb559b140) + QObject (0xb55956cc) 0 + primary-for QAbstractItemModel (0xb559b180) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb55b712c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb55b78ac) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb55b799c) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb559bb80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb53c6690) 0 + primary-for QTimerEvent (0xb559bb80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb559bc40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb53c68e8) 0 + primary-for QChildEvent (0xb559bc40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb559be00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb53d40f0) 0 + primary-for QCustomEvent (0xb559be00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb559bf00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb53d44ec) 0 + primary-for QDynamicPropertyChangeEvent (0xb559bf00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb559bfc0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb53d4744) 0 + primary-for QCoreApplication (0xb559bfc0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb53f4168) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb53f44ec) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53f499c) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb53f4a8c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53f4ec4) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb53f4fb4) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb542f2d0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb542f618) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb5435240) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb542f708) 0 + primary-for QMimeData (0xb5435240) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb5435500) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb5444258) 0 + primary-for QObjectCleanupHandler (0xb5435500) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb5435740) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb5444b04) 0 + primary-for QSharedMemory (0xb5435740) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb5435a00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb5454924) 0 + primary-for QSignalMapper (0xb5435a00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb5435cc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb5461a8c) 0 + primary-for QSocketNotifier (0xb5435cc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb546db04) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb5476040) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb547a000) 0 + primary-for QTimer (0xb5476040) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb54764c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb548c12c) 0 + primary-for QTranslator (0xb54764c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb54767c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb548cf78) 0 + primary-for QLibrary (0xb54767c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb549eec4) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb5476b40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb54b0a50) 0 + primary-for QPluginLoader (0xb5476b40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb52c0654) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb52d3474) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb52d3b04) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb52d37f8) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb52eb000) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb52e3ce4) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb52f01e0) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb52f04b0) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb52f08ac) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb53285dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53312d0) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb5331564) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb5331f3c) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb535a2d0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5366c6c) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb5366d5c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb537d2d0) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb537d3c0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5384ac8) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb5384ca8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb539bb7c) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb53a9ca8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5199c30) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb51a8c6c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51be03c) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb51d41a4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51d4bb8) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb52017f8) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb5255b04) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5277bf4) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb5293780) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb509d8ac) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb50bd5dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50d64b0) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb511d0b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51355dc) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb516ec6c) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb517ae88) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb51937c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb4f9d834) 0 + primary-for QTimeLine (0xb51937c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb4faebf4) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb4fced98) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fe830c) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4fe8474) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4fe83fc) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb4fe0240) 0 + QVector (0xb4fe84b0) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb4fe84ec) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fe8f00) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb500c03c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb500cbf4) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb500cd20) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb501cca8) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb501cdd4) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb501cf78) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb504d564) 0 + +Class QDomImplementation + size=4 align=4 + base size=4 base align=4 +QDomImplementation (0xb504db40) 0 + +Class QDomNode + size=4 align=4 + base size=4 base align=4 +QDomNode (0xb506103c) 0 + +Class QDomNodeList + size=4 align=4 + base size=4 base align=4 +QDomNodeList (0xb5067258) 0 + +Class QDomDocumentType + size=4 align=4 + base size=4 base align=4 +QDomDocumentType (0xb5076000) 0 + QDomNode (0xb5067a14) 0 + +Class QDomDocument + size=4 align=4 + base size=4 base align=4 +QDomDocument (0xb50760c0) 0 + QDomNode (0xb5067fb4) 0 + +Class QDomNamedNodeMap + size=4 align=4 + base size=4 base align=4 +QDomNamedNodeMap (0xb5079744) 0 + +Class QDomDocumentFragment + size=4 align=4 + base size=4 base align=4 +QDomDocumentFragment (0xb5076280) 0 + QDomNode (0xb5079e10) 0 + +Class QDomCharacterData + size=4 align=4 + base size=4 base align=4 +QDomCharacterData (0xb5076340) 0 + QDomNode (0xb50893c0) 0 + +Class QDomAttr + size=4 align=4 + base size=4 base align=4 +QDomAttr (0xb5076380) 0 + QDomNode (0xb50898e8) 0 + +Class QDomElement + size=4 align=4 + base size=4 base align=4 +QDomElement (0xb5076480) 0 + QDomNode (0xb5089e88) 0 + +Class QDomText + size=4 align=4 + base size=4 base align=4 +QDomText (0xb5076640) 0 + QDomCharacterData (0xb5076680) 0 + QDomNode (0xb508f708) 0 + +Class QDomComment + size=4 align=4 + base size=4 base align=4 +QDomComment (0xb5076740) 0 + QDomCharacterData (0xb5076780) 0 + QDomNode (0xb508fd5c) 0 + +Class QDomCDATASection + size=4 align=4 + base size=4 base align=4 +QDomCDATASection (0xb5076840) 0 + QDomText (0xb5076880) 0 + QDomCharacterData (0xb50768c0) 0 + QDomNode (0xb4e9c30c) 0 + +Class QDomNotation + size=4 align=4 + base size=4 base align=4 +QDomNotation (0xb5076980) 0 + QDomNode (0xb4e9c8ac) 0 + +Class QDomEntity + size=4 align=4 + base size=4 base align=4 +QDomEntity (0xb5076a40) 0 + QDomNode (0xb4e9ce4c) 0 + +Class QDomEntityReference + size=4 align=4 + base size=4 base align=4 +QDomEntityReference (0xb5076b00) 0 + QDomNode (0xb4ea13fc) 0 + +Class QDomProcessingInstruction + size=4 align=4 + base size=4 base align=4 +QDomProcessingInstruction (0xb5076bc0) 0 + QDomNode (0xb4ea199c) 0 + +Class QXmlNamespaceSupport + size=4 align=4 + base size=4 base align=4 +QXmlNamespaceSupport (0xb4ea1f3c) 0 + +Class QXmlAttributes::Attribute + size=16 align=4 + base size=16 base align=4 +QXmlAttributes::Attribute (0xb4eac2d0) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4eac5dc) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4eac564) 0 + +Vtable for QXmlAttributes +QXmlAttributes::_ZTV14QXmlAttributes: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QXmlAttributes) +8 QXmlAttributes::~QXmlAttributes +12 QXmlAttributes::~QXmlAttributes + +Class QXmlAttributes + size=12 align=4 + base size=12 base align=4 +QXmlAttributes (0xb4eac21c) 0 + vptr=((& QXmlAttributes::_ZTV14QXmlAttributes) + 8u) + +Vtable for QXmlInputSource +QXmlInputSource::_ZTV15QXmlInputSource: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QXmlInputSource) +8 QXmlInputSource::~QXmlInputSource +12 QXmlInputSource::~QXmlInputSource +16 QXmlInputSource::setData +20 QXmlInputSource::setData +24 QXmlInputSource::fetchData +28 QXmlInputSource::data +32 QXmlInputSource::next +36 QXmlInputSource::reset +40 QXmlInputSource::fromRawData + +Class QXmlInputSource + size=8 align=4 + base size=8 base align=4 +QXmlInputSource (0xb4eaca50) 0 + vptr=((& QXmlInputSource::_ZTV15QXmlInputSource) + 8u) + +Class QXmlParseException + size=4 align=4 + base size=4 base align=4 +QXmlParseException (0xb4eacca8) 0 + +Vtable for QXmlReader +QXmlReader::_ZTV10QXmlReader: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QXmlReader) +8 QXmlReader::~QXmlReader +12 QXmlReader::~QXmlReader +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual + +Class QXmlReader + size=4 align=4 + base size=4 base align=4 +QXmlReader (0xb4eace10) 0 nearly-empty + vptr=((& QXmlReader::_ZTV10QXmlReader) + 8u) + +Vtable for QXmlSimpleReader +QXmlSimpleReader::_ZTV16QXmlSimpleReader: 26u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QXmlSimpleReader) +8 QXmlSimpleReader::~QXmlSimpleReader +12 QXmlSimpleReader::~QXmlSimpleReader +16 QXmlSimpleReader::feature +20 QXmlSimpleReader::setFeature +24 QXmlSimpleReader::hasFeature +28 QXmlSimpleReader::property +32 QXmlSimpleReader::setProperty +36 QXmlSimpleReader::hasProperty +40 QXmlSimpleReader::setEntityResolver +44 QXmlSimpleReader::entityResolver +48 QXmlSimpleReader::setDTDHandler +52 QXmlSimpleReader::DTDHandler +56 QXmlSimpleReader::setContentHandler +60 QXmlSimpleReader::contentHandler +64 QXmlSimpleReader::setErrorHandler +68 QXmlSimpleReader::errorHandler +72 QXmlSimpleReader::setLexicalHandler +76 QXmlSimpleReader::lexicalHandler +80 QXmlSimpleReader::setDeclHandler +84 QXmlSimpleReader::declHandler +88 QXmlSimpleReader::parse +92 QXmlSimpleReader::parse +96 QXmlSimpleReader::parse +100 QXmlSimpleReader::parseContinue + +Class QXmlSimpleReader + size=8 align=4 + base size=8 base align=4 +QXmlSimpleReader (0xb4ed2100) 0 + vptr=((& QXmlSimpleReader::_ZTV16QXmlSimpleReader) + 8u) + QXmlReader (0xb4ed8078) 0 nearly-empty + primary-for QXmlSimpleReader (0xb4ed2100) + +Vtable for QXmlLocator +QXmlLocator::_ZTV11QXmlLocator: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QXmlLocator) +8 QXmlLocator::~QXmlLocator +12 QXmlLocator::~QXmlLocator +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QXmlLocator + size=4 align=4 + base size=4 base align=4 +QXmlLocator (0xb4ed8618) 0 nearly-empty + vptr=((& QXmlLocator::_ZTV11QXmlLocator) + 8u) + +Vtable for QXmlContentHandler +QXmlContentHandler::_ZTV18QXmlContentHandler: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlContentHandler) +8 QXmlContentHandler::~QXmlContentHandler +12 QXmlContentHandler::~QXmlContentHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QXmlContentHandler + size=4 align=4 + base size=4 base align=4 +QXmlContentHandler (0xb4ed87f8) 0 nearly-empty + vptr=((& QXmlContentHandler::_ZTV18QXmlContentHandler) + 8u) + +Vtable for QXmlErrorHandler +QXmlErrorHandler::_ZTV16QXmlErrorHandler: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QXmlErrorHandler) +8 QXmlErrorHandler::~QXmlErrorHandler +12 QXmlErrorHandler::~QXmlErrorHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QXmlErrorHandler + size=4 align=4 + base size=4 base align=4 +QXmlErrorHandler (0xb4ed8b40) 0 nearly-empty + vptr=((& QXmlErrorHandler::_ZTV16QXmlErrorHandler) + 8u) + +Vtable for QXmlDTDHandler +QXmlDTDHandler::_ZTV14QXmlDTDHandler: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QXmlDTDHandler) +8 QXmlDTDHandler::~QXmlDTDHandler +12 QXmlDTDHandler::~QXmlDTDHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual + +Class QXmlDTDHandler + size=4 align=4 + base size=4 base align=4 +QXmlDTDHandler (0xb4ed8e88) 0 nearly-empty + vptr=((& QXmlDTDHandler::_ZTV14QXmlDTDHandler) + 8u) + +Vtable for QXmlEntityResolver +QXmlEntityResolver::_ZTV18QXmlEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlEntityResolver) +8 QXmlEntityResolver::~QXmlEntityResolver +12 QXmlEntityResolver::~QXmlEntityResolver +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QXmlEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlEntityResolver (0xb4eee0b4) 0 nearly-empty + vptr=((& QXmlEntityResolver::_ZTV18QXmlEntityResolver) + 8u) + +Vtable for QXmlLexicalHandler +QXmlLexicalHandler::_ZTV18QXmlLexicalHandler: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlLexicalHandler) +8 QXmlLexicalHandler::~QXmlLexicalHandler +12 QXmlLexicalHandler::~QXmlLexicalHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual + +Class QXmlLexicalHandler + size=4 align=4 + base size=4 base align=4 +QXmlLexicalHandler (0xb4eee438) 0 nearly-empty + vptr=((& QXmlLexicalHandler::_ZTV18QXmlLexicalHandler) + 8u) + +Vtable for QXmlDeclHandler +QXmlDeclHandler::_ZTV15QXmlDeclHandler: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QXmlDeclHandler) +8 QXmlDeclHandler::~QXmlDeclHandler +12 QXmlDeclHandler::~QXmlDeclHandler +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual + +Class QXmlDeclHandler + size=4 align=4 + base size=4 base align=4 +QXmlDeclHandler (0xb4eee780) 0 nearly-empty + vptr=((& QXmlDeclHandler::_ZTV15QXmlDeclHandler) + 8u) + +Vtable for QXmlDefaultHandler +QXmlDefaultHandler::_ZTV18QXmlDefaultHandler: 73u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +8 QXmlDefaultHandler::~QXmlDefaultHandler +12 QXmlDefaultHandler::~QXmlDefaultHandler +16 QXmlDefaultHandler::setDocumentLocator +20 QXmlDefaultHandler::startDocument +24 QXmlDefaultHandler::endDocument +28 QXmlDefaultHandler::startPrefixMapping +32 QXmlDefaultHandler::endPrefixMapping +36 QXmlDefaultHandler::startElement +40 QXmlDefaultHandler::endElement +44 QXmlDefaultHandler::characters +48 QXmlDefaultHandler::ignorableWhitespace +52 QXmlDefaultHandler::processingInstruction +56 QXmlDefaultHandler::skippedEntity +60 QXmlDefaultHandler::errorString +64 QXmlDefaultHandler::warning +68 QXmlDefaultHandler::error +72 QXmlDefaultHandler::fatalError +76 QXmlDefaultHandler::notationDecl +80 QXmlDefaultHandler::unparsedEntityDecl +84 QXmlDefaultHandler::resolveEntity +88 QXmlDefaultHandler::startDTD +92 QXmlDefaultHandler::endDTD +96 QXmlDefaultHandler::startEntity +100 QXmlDefaultHandler::endEntity +104 QXmlDefaultHandler::startCDATA +108 QXmlDefaultHandler::endCDATA +112 QXmlDefaultHandler::comment +116 QXmlDefaultHandler::attributeDecl +120 QXmlDefaultHandler::internalEntityDecl +124 QXmlDefaultHandler::externalEntityDecl +128 (int (*)(...))-0x000000004 +132 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +136 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandlerD1Ev +140 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandlerD0Ev +144 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandler7warningERK18QXmlParseException +148 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandler5errorERK18QXmlParseException +152 QXmlDefaultHandler::_ZThn4_N18QXmlDefaultHandler10fatalErrorERK18QXmlParseException +156 QXmlDefaultHandler::_ZThn4_NK18QXmlDefaultHandler11errorStringEv +160 (int (*)(...))-0x000000008 +164 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +168 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD1Ev +172 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandlerD0Ev +176 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler12notationDeclERK7QStringS2_S2_ +180 QXmlDefaultHandler::_ZThn8_N18QXmlDefaultHandler18unparsedEntityDeclERK7QStringS2_S2_S2_ +184 QXmlDefaultHandler::_ZThn8_NK18QXmlDefaultHandler11errorStringEv +188 (int (*)(...))-0x00000000c +192 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +196 QXmlDefaultHandler::_ZThn12_N18QXmlDefaultHandlerD1Ev +200 QXmlDefaultHandler::_ZThn12_N18QXmlDefaultHandlerD0Ev +204 QXmlDefaultHandler::_ZThn12_N18QXmlDefaultHandler13resolveEntityERK7QStringS2_RP15QXmlInputSource +208 QXmlDefaultHandler::_ZThn12_NK18QXmlDefaultHandler11errorStringEv +212 (int (*)(...))-0x000000010 +216 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +220 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD1Ev +224 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandlerD0Ev +228 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler8startDTDERK7QStringS2_S2_ +232 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler6endDTDEv +236 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler11startEntityERK7QString +240 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler9endEntityERK7QString +244 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler10startCDATAEv +248 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler8endCDATAEv +252 QXmlDefaultHandler::_ZThn16_N18QXmlDefaultHandler7commentERK7QString +256 QXmlDefaultHandler::_ZThn16_NK18QXmlDefaultHandler11errorStringEv +260 (int (*)(...))-0x000000014 +264 (int (*)(...))(& _ZTI18QXmlDefaultHandler) +268 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandlerD1Ev +272 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandlerD0Ev +276 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandler13attributeDeclERK7QStringS2_S2_S2_S2_ +280 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandler18internalEntityDeclERK7QStringS2_ +284 QXmlDefaultHandler::_ZThn20_N18QXmlDefaultHandler18externalEntityDeclERK7QStringS2_S2_ +288 QXmlDefaultHandler::_ZThn20_NK18QXmlDefaultHandler11errorStringEv + +Class QXmlDefaultHandler + size=28 align=4 + base size=28 base align=4 +QXmlDefaultHandler (0xb4ef87e8) 0 + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 8u) + QXmlContentHandler (0xb4eeeac8) 0 nearly-empty + primary-for QXmlDefaultHandler (0xb4ef87e8) + QXmlErrorHandler (0xb4eeeb04) 4 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 136u) + QXmlDTDHandler (0xb4eeeb40) 8 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 168u) + QXmlEntityResolver (0xb4eeeb7c) 12 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 196u) + QXmlLexicalHandler (0xb4eeebb8) 16 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 220u) + QXmlDeclHandler (0xb4eeebf4) 20 nearly-empty + vptr=((& QXmlDefaultHandler::_ZTV18QXmlDefaultHandler) + 268u) + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4f658ac) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4f78e4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4e2e438) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb4e2e4b0) 0 + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb4e561e0) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4e5630c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4e56564) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4e565dc) 0 + diff --git a/tests/auto/bic/data/QtXmlPatterns.4.4.0.linux-gcc-ia32.txt b/tests/auto/bic/data/QtXmlPatterns.4.4.0.linux-gcc-ia32.txt new file mode 100644 index 0000000..ffc05cd --- /dev/null +++ b/tests/auto/bic/data/QtXmlPatterns.4.4.0.linux-gcc-ia32.txt @@ -0,0 +1,5467 @@ +Class QUintForSize<4> + size=1 align=1 + base size=0 base align=1 +QUintForSize<4> (0xb77a33c0) 0 empty + +Class QUintForSize<8> + size=1 align=1 + base size=0 base align=1 +QUintForSize<8> (0xb77a33fc) 0 empty + +Class QUintForType + size=1 align=1 + base size=1 base align=1 +QUintForType (0xb7bfab40) 0 empty + QUintForSize<4> (0xb77a3474) 0 empty + +Class QIntForSize<4> + size=1 align=1 + base size=0 base align=1 +QIntForSize<4> (0xb77a35a0) 0 empty + +Class QIntForSize<8> + size=1 align=1 + base size=0 base align=1 +QIntForSize<8> (0xb77a35dc) 0 empty + +Class QIntForType + size=1 align=1 + base size=1 base align=1 +QIntForType (0xb7bfad00) 0 empty + QIntForSize<4> (0xb77a3654) 0 empty + +Class QSysInfo + size=1 align=1 + base size=0 base align=1 +QSysInfo (0xb77a39d8) 0 empty + +Class QBool + size=1 align=1 + base size=1 base align=1 +QBool (0xb77b7000) 0 + +Class qIsNull(double)::U + size=8 align=4 + base size=8 base align=4 +qIsNull(double)::U (0xb77b799c) 0 + +Class qIsNull(float)::U + size=4 align=4 + base size=4 base align=4 +qIsNull(float)::U (0xb77b7a50) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77b7c30) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77b7d20) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77b7e10) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77b7f00) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd000) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd0f0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd1e0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd2d0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd3c0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd4b0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd5a0) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd690) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd780) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd870) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb77cd960) 0 empty + +Class QFlag + size=4 align=4 + base size=4 base align=4 +QFlag (0xb77cda50) 0 + +Class QLatin1Char + size=1 align=1 + base size=1 base align=1 +QLatin1Char (0xb77eb4ec) 0 + +Class QChar + size=2 align=2 + base size=2 base align=2 +QChar (0xb77eb960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb7815618) 0 empty + +Class QBasicAtomicInt + size=4 align=4 + base size=4 base align=4 +QBasicAtomicInt (0xb69dd0f0) 0 + +Class QAtomicInt + size=4 align=4 + base size=4 base align=4 +QAtomicInt (0xb6a04240) 0 + QBasicAtomicInt (0xb6a080b4) 0 + +Class __locale_struct + size=116 align=4 + base size=116 base align=4 +__locale_struct (0xb6a1c000) 0 + +Class QByteArray::Data + size=20 align=4 + base size=20 base align=4 +QByteArray::Data (0xb6a4b1e0) 0 + +Class QByteArray + size=4 align=4 + base size=4 base align=4 +QByteArray (0xb6a1c5dc) 0 + +Class QByteRef + size=8 align=4 + base size=8 base align=4 +QByteRef (0xb6a7a1e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb68c72d0) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68c7564) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb68c7e88) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb690f7bc) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb691b0f0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb691ba14) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb692e348) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb692ec6c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69435a0) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6943ec4) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb69577f8) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb696312c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6963a50) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb697c384) 0 + +Class QInternal + size=1 align=1 + base size=0 base align=1 +QInternal (0xb697cca8) 0 empty + +Class QString::Null + size=1 align=1 + base size=0 base align=1 +QString::Null (0xb69c1fb4) 0 empty + +Class QString::Data + size=20 align=4 + base size=20 base align=4 +QString::Data (0xb67d14ec) 0 + +Class QString + size=4 align=4 + base size=4 base align=4 +QString (0xb697ce10) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb67e003c) 0 + +Class QLatin1String + size=4 align=4 + base size=4 base align=4 +QLatin1String (0xb684412c) 0 + +Class QCharRef + size=8 align=4 + base size=8 base align=4 +QCharRef (0xb68929d8) 0 + +Class QConstString + size=4 align=4 + base size=4 base align=4 +QConstString (0xb66fdb00) 0 + QString (0xb6745474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb6745780) 0 empty + +Class QStringRef + size=12 align=4 + base size=12 base align=4 +QStringRef (0xb6755618) 0 + +Vtable for std::exception +std::exception::_ZTVSt9exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9exception) +8 std::exception::~exception +12 std::exception::~exception +16 std::exception::what + +Class std::exception + size=4 align=4 + base size=4 base align=4 +std::exception (0xb67aa384) 0 nearly-empty + vptr=((& std::exception::_ZTVSt9exception) + 8u) + +Vtable for std::bad_exception +std::bad_exception::_ZTVSt13bad_exception: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt13bad_exception) +8 std::bad_exception::~bad_exception +12 std::bad_exception::~bad_exception +16 std::bad_exception::what + +Class std::bad_exception + size=4 align=4 + base size=4 base align=4 +std::bad_exception (0xb67b4100) 0 nearly-empty + vptr=((& std::bad_exception::_ZTVSt13bad_exception) + 8u) + std::exception (0xb67aa690) 0 nearly-empty + primary-for std::bad_exception (0xb67b4100) + +Vtable for std::bad_alloc +std::bad_alloc::_ZTVSt9bad_alloc: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9bad_alloc) +8 std::bad_alloc::~bad_alloc +12 std::bad_alloc::~bad_alloc +16 std::bad_alloc::what + +Class std::bad_alloc + size=4 align=4 + base size=4 base align=4 +std::bad_alloc (0xb67b4240) 0 nearly-empty + vptr=((& std::bad_alloc::_ZTVSt9bad_alloc) + 8u) + std::exception (0xb67aa960) 0 nearly-empty + primary-for std::bad_alloc (0xb67b4240) + +Class std::nothrow_t + size=1 align=1 + base size=0 base align=1 +std::nothrow_t (0xb67aac30) 0 empty + +Class QListData::Data + size=24 align=4 + base size=24 base align=4 +QListData::Data (0xb67aae88) 0 + +Class QListData + size=4 align=4 + base size=4 base align=4 +QListData (0xb67aae4c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb66630f0) 0 + +Class QTextCodec::ConverterState + size=28 align=4 + base size=28 base align=4 +QTextCodec::ConverterState (0xb6656ec4) 0 + +Vtable for QTextCodec +QTextCodec::_ZTV10QTextCodec: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTextCodec) +8 __cxa_pure_virtual +12 QTextCodec::aliases +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QTextCodec::~QTextCodec +32 QTextCodec::~QTextCodec + +Class QTextCodec + size=4 align=4 + base size=4 base align=4 +QTextCodec (0xb6656438) 0 nearly-empty + vptr=((& QTextCodec::_ZTV10QTextCodec) + 8u) + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb6675744) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb66756cc) 0 + +Class QTextEncoder + size=32 align=4 + base size=32 base align=4 +QTextEncoder (0xb668f9d8) 0 + +Class QTextDecoder + size=32 align=4 + base size=32 base align=4 +QTextDecoder (0xb668ff3c) 0 + +Class QGenericArgument + size=8 align=4 + base size=8 base align=4 +QGenericArgument (0xb6699528) 0 + +Class QGenericReturnArgument + size=8 align=4 + base size=8 base align=4 +QGenericReturnArgument (0xb66a2000) 0 + QGenericArgument (0xb6699960) 0 + +Class QMetaObject:: + size=16 align=4 + base size=16 base align=4 +QMetaObject:: (0xb6699e4c) 0 + +Class QMetaObject + size=16 align=4 + base size=16 base align=4 +QMetaObject (0xb6699c6c) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb66b1fb4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb66b1f3c) 0 + +Vtable for QObjectData +QObjectData::_ZTV11QObjectData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QObjectData) +8 __cxa_pure_virtual +12 __cxa_pure_virtual + +Class QObjectData + size=24 align=4 + base size=24 base align=4 +QObjectData (0xb66b1e88) 0 + vptr=((& QObjectData::_ZTV11QObjectData) + 8u) + +Vtable for QObject +QObject::_ZTV7QObject: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QObject) +8 QObject::metaObject +12 QObject::qt_metacast +16 QObject::qt_metacall +20 QObject::~QObject +24 QObject::~QObject +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObject + size=8 align=4 + base size=8 base align=4 +QObject (0xb64d00f0) 0 + vptr=((& QObject::_ZTV7QObject) + 8u) + +Vtable for QObjectUserData +QObjectUserData::_ZTV15QObjectUserData: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QObjectUserData) +8 QObjectUserData::~QObjectUserData +12 QObjectUserData::~QObjectUserData + +Class QObjectUserData + size=4 align=4 + base size=4 base align=4 +QObjectUserData (0xb64f1654) 0 nearly-empty + vptr=((& QObjectUserData::_ZTV15QObjectUserData) + 8u) + +Vtable for QIODevice +QIODevice::_ZTV9QIODevice: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QIODevice) +8 QIODevice::metaObject +12 QIODevice::qt_metacast +16 QIODevice::qt_metacall +20 QIODevice::~QIODevice +24 QIODevice::~QIODevice +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QIODevice::open +64 QIODevice::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 __cxa_pure_virtual + +Class QIODevice + size=8 align=4 + base size=8 base align=4 +QIODevice (0xb64f5e80) 0 + vptr=((& QIODevice::_ZTV9QIODevice) + 8u) + QObject (0xb64f1fb4) 0 + primary-for QIODevice (0xb64f5e80) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb6527294) 0 + +Vtable for QDataStream +QDataStream::_ZTV11QDataStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QDataStream) +8 QDataStream::~QDataStream +12 QDataStream::~QDataStream + +Class QDataStream + size=28 align=4 + base size=28 base align=4 +QDataStream (0xb6542168) 0 + vptr=((& QDataStream::_ZTV11QDataStream) + 8u) + +Class QRegExp + size=4 align=4 + base size=4 base align=4 +QRegExp (0xb65681e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb65889d8) 0 empty + +Class QStringMatcher + size=1036 align=4 + base size=1036 base align=4 +QStringMatcher (0xb6588ac8) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb659603c) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb6588fb4) 0 + +Class QStringList + size=4 align=4 + base size=4 base align=4 +QStringList (0xb6566f80) 0 + QList (0xb6596078) 0 + +Class QList::iterator + size=4 align=4 + base size=4 base align=4 +QList::iterator (0xb65b1dd4) 0 + +Class QList::const_iterator + size=4 align=4 + base size=4 base align=4 +QList::const_iterator (0xb63c1000) 0 + +Vtable for QFactoryInterface +QFactoryInterface::_ZTV17QFactoryInterface: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QFactoryInterface) +8 QFactoryInterface::~QFactoryInterface +12 QFactoryInterface::~QFactoryInterface +16 __cxa_pure_virtual + +Class QFactoryInterface + size=4 align=4 + base size=4 base align=4 +QFactoryInterface (0xb63d9078) 0 nearly-empty + vptr=((& QFactoryInterface::_ZTV17QFactoryInterface) + 8u) + +Vtable for QTextCodecFactoryInterface +QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QTextCodecFactoryInterface) +8 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +12 QTextCodecFactoryInterface::~QTextCodecFactoryInterface +16 __cxa_pure_virtual +20 __cxa_pure_virtual + +Class QTextCodecFactoryInterface + size=4 align=4 + base size=4 base align=4 +QTextCodecFactoryInterface (0xb65abf40) 0 nearly-empty + vptr=((& QTextCodecFactoryInterface::_ZTV26QTextCodecFactoryInterface) + 8u) + QFactoryInterface (0xb63d9654) 0 nearly-empty + primary-for QTextCodecFactoryInterface (0xb65abf40) + +Vtable for QTextCodecPlugin +QTextCodecPlugin::_ZTV16QTextCodecPlugin: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QTextCodecPlugin) +8 QTextCodecPlugin::metaObject +12 QTextCodecPlugin::qt_metacast +16 QTextCodecPlugin::qt_metacall +20 QTextCodecPlugin::~QTextCodecPlugin +24 QTextCodecPlugin::~QTextCodecPlugin +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 QTextCodecPlugin::keys +80 QTextCodecPlugin::create +84 (int (*)(...))-0x000000008 +88 (int (*)(...))(& _ZTI16QTextCodecPlugin) +92 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD1Ev +96 QTextCodecPlugin::_ZThn8_N16QTextCodecPluginD0Ev +100 QTextCodecPlugin::_ZThn8_NK16QTextCodecPlugin4keysEv +104 QTextCodecPlugin::_ZThn8_N16QTextCodecPlugin6createERK7QString + +Class QTextCodecPlugin + size=12 align=4 + base size=12 base align=4 +QTextCodecPlugin (0xb63df960) 0 + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 8u) + QObject (0xb63d999c) 0 + primary-for QTextCodecPlugin (0xb63df960) + QTextCodecFactoryInterface (0xb63e40c0) 8 nearly-empty + vptr=((& QTextCodecPlugin::_ZTV16QTextCodecPlugin) + 92u) + QFactoryInterface (0xb63d99d8) 8 nearly-empty + primary-for QTextCodecFactoryInterface (0xb63e40c0) + +Class QMutex + size=4 align=4 + base size=4 base align=4 +QMutex (0xb63f021c) 0 + +Class QMutexLocker:: + size=4 align=4 + base size=4 base align=4 +QMutexLocker:: (0xb63f0e10) 0 + +Class QMutexLocker + size=4 align=4 + base size=4 base align=4 +QMutexLocker (0xb63f0b04) 0 + +Vtable for QtConcurrent::Exception +QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent9ExceptionE) +8 QtConcurrent::Exception::~Exception +12 QtConcurrent::Exception::~Exception +16 std::exception::what +20 QtConcurrent::Exception::raise +24 QtConcurrent::Exception::clone + +Class QtConcurrent::Exception + size=4 align=4 + base size=4 base align=4 +QtConcurrent::Exception (0xb63e4980) 0 nearly-empty + vptr=((& QtConcurrent::Exception::_ZTVN12QtConcurrent9ExceptionE) + 8u) + std::exception (0xb6401000) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb63e4980) + +Vtable for QtConcurrent::UnhandledException +QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent18UnhandledExceptionE) +8 QtConcurrent::UnhandledException::~UnhandledException +12 QtConcurrent::UnhandledException::~UnhandledException +16 std::exception::what +20 QtConcurrent::UnhandledException::raise +24 QtConcurrent::UnhandledException::clone + +Class QtConcurrent::UnhandledException + size=4 align=4 + base size=4 base align=4 +QtConcurrent::UnhandledException (0xb63e4a40) 0 nearly-empty + vptr=((& QtConcurrent::UnhandledException::_ZTVN12QtConcurrent18UnhandledExceptionE) + 8u) + QtConcurrent::Exception (0xb63e4a80) 0 nearly-empty + primary-for QtConcurrent::UnhandledException (0xb63e4a40) + std::exception (0xb64011a4) 0 nearly-empty + primary-for QtConcurrent::Exception (0xb63e4a80) + +Class QtConcurrent::internal::ExceptionHolder + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionHolder (0xb6401348) 0 + +Class QtConcurrent::internal::ExceptionStore + size=4 align=4 + base size=4 base align=4 +QtConcurrent::internal::ExceptionStore (0xb6401528) 0 + +Class QMapData::Node + size=8 align=4 + base size=8 base align=4 +QMapData::Node (0xb64015a0) 0 + +Class QMapData + size=72 align=4 + base size=72 base align=4 +QMapData (0xb6401564) 0 + +Class QHashData::Node + size=8 align=4 + base size=8 base align=4 +QHashData::Node (0xb64a7e4c) 0 + +Class QHashData + size=32 align=4 + base size=32 base align=4 +QHashData (0xb64a7e10) 0 + +Class QHashDummyValue + size=1 align=1 + base size=0 base align=1 +QHashDummyValue (0xb62c6744) 0 empty + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb62c67f8) 0 empty + +Class + size=8 align=4 + base size=8 base align=4 + (0xb6356780) 0 + +Class :: + size=4 align=4 + base size=4 base align=4 +:: (0xb6356870) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb63567f8) 0 + +Class + size=12 align=4 + base size=12 base align=4 + (0xb63568e8) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6356960) 0 + +Class _IO_marker + size=12 align=4 + base size=12 base align=4 +_IO_marker (0xb635699c) 0 + +Class _IO_FILE + size=148 align=4 + base size=148 base align=4 +_IO_FILE (0xb63569d8) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb6356a50) 0 + +Vtable for QTextStream +QTextStream::_ZTV11QTextStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTextStream) +8 QTextStream::~QTextStream +12 QTextStream::~QTextStream + +Class QTextStream + size=8 align=4 + base size=8 base align=4 +QTextStream (0xb6356a8c) 0 + vptr=((& QTextStream::_ZTV11QTextStream) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb63a621c) 0 + +Class QTextStreamManipulator + size=24 align=4 + base size=22 base align=4 +QTextStreamManipulator (0xb63a6e88) 0 + +Vtable for QTextIStream +QTextIStream::_ZTV12QTextIStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextIStream) +8 QTextIStream::~QTextIStream +12 QTextIStream::~QTextIStream + +Class QTextIStream + size=8 align=4 + base size=8 base align=4 +QTextIStream (0xb6364e00) 0 + vptr=((& QTextIStream::_ZTV12QTextIStream) + 8u) + QTextStream (0xb63b8f00) 0 + primary-for QTextIStream (0xb6364e00) + +Vtable for QTextOStream +QTextOStream::_ZTV12QTextOStream: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QTextOStream) +8 QTextOStream::~QTextOStream +12 QTextOStream::~QTextOStream + +Class QTextOStream + size=8 align=4 + base size=8 base align=4 +QTextOStream (0xb61cc0c0) 0 + vptr=((& QTextOStream::_ZTV12QTextOStream) + 8u) + QTextStream (0xb61c599c) 0 + primary-for QTextOStream (0xb61cc0c0) + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb61d53fc) 0 + +Class wait:: + size=4 align=4 + base size=4 base align=4 +wait:: (0xb61d5474) 0 + +Class wait + size=4 align=4 + base size=4 base align=4 +wait (0xb61d5384) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb61d54ec) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb61d5564) 0 + +Class + size=16 align=4 + base size=16 base align=4 + (0xb61d55dc) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb61d5654) 0 + +Class timespec + size=8 align=4 + base size=8 base align=4 +timespec (0xb61d5690) 0 + +Class timeval + size=8 align=4 + base size=8 base align=4 +timeval (0xb61d56cc) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb61d5744) 0 + +Class + size=36 align=4 + base size=36 base align=4 + (0xb61d57bc) 0 + +Class __pthread_internal_slist + size=4 align=4 + base size=4 base align=4 +__pthread_internal_slist (0xb61d57f8) 0 + +Class ::__pthread_mutex_s:: + size=4 align=4 + base size=4 base align=4 +::__pthread_mutex_s:: (0xb61d5924) 0 + +Class ::__pthread_mutex_s + size=24 align=4 + base size=24 base align=4 +::__pthread_mutex_s (0xb61d58ac) 0 + +Class + size=24 align=4 + base size=24 base align=4 + (0xb61d5870) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb61d599c) 0 + +Class :: + size=44 align=4 + base size=44 base align=4 +:: (0xb61d5a8c) 0 + +Class + size=48 align=4 + base size=48 base align=4 + (0xb61d5a14) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb61d5b04) 0 + +Class :: + size=32 align=4 + base size=32 base align=4 +:: (0xb61d5bf4) 0 + +Class + size=32 align=4 + base size=32 base align=4 + (0xb61d5b7c) 0 + +Class + size=8 align=4 + base size=8 base align=4 + (0xb61d5ca8) 0 + +Class + size=20 align=4 + base size=20 base align=4 + (0xb61d5d20) 0 + +Class + size=4 align=4 + base size=4 base align=4 + (0xb61d5d98) 0 + +Class random_data + size=28 align=4 + base size=28 base align=4 +random_data (0xb61d5dd4) 0 + +Class drand48_data + size=24 align=4 + base size=24 base align=4 +drand48_data (0xb61d5e10) 0 + +Class QVectorData + size=16 align=4 + base size=16 base align=4 +QVectorData (0xb61d5e4c) 0 + +Class QDebug::Stream + size=24 align=4 + base size=22 base align=4 +QDebug::Stream (0xb6291d98) 0 + +Class QDebug + size=4 align=4 + base size=4 base align=4 +QDebug (0xb6291d5c) 0 + +Class QtConcurrent::ResultItem + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultItem (0xb60f7b40) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb610f780) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb610f708) 0 + +Class QMap::const_iterator + size=4 align=4 + base size=4 base align=4 +QMap::const_iterator (0xb610fac8) 0 + +Class QtConcurrent::ResultIteratorBase + size=8 align=4 + base size=8 base align=4 +QtConcurrent::ResultIteratorBase (0xb610f618) 0 + +Vtable for QtConcurrent::ResultStoreBase +QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15ResultStoreBaseE) +8 QtConcurrent::ResultStoreBase::~ResultStoreBase +12 QtConcurrent::ResultStoreBase::~ResultStoreBase + +Class QtConcurrent::ResultStoreBase + size=28 align=4 + base size=28 base align=4 +QtConcurrent::ResultStoreBase (0xb610fbf4) 0 + vptr=((& QtConcurrent::ResultStoreBase::_ZTVN12QtConcurrent15ResultStoreBaseE) + 8u) + +Class QMap::iterator + size=4 align=4 + base size=4 base align=4 +QMap::iterator (0xb6138294) 0 + +Vtable for QFutureInterfaceBase +QFutureInterfaceBase::_ZTV20QFutureInterfaceBase: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QFutureInterfaceBase) +8 QFutureInterfaceBase::~QFutureInterfaceBase +12 QFutureInterfaceBase::~QFutureInterfaceBase + +Class QFutureInterfaceBase + size=8 align=4 + base size=8 base align=4 +QFutureInterfaceBase (0xb613830c) 0 + vptr=((& QFutureInterfaceBase::_ZTV20QFutureInterfaceBase) + 8u) + +Vtable for QFutureInterface +QFutureInterface::_ZTV16QFutureInterfaceIvE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QFutureInterfaceIvE) +8 QFutureInterface::~QFutureInterface +12 QFutureInterface::~QFutureInterface + +Class QFutureInterface + size=8 align=4 + base size=8 base align=4 +QFutureInterface (0xb6154780) 0 + vptr=((& QFutureInterface::_ZTV16QFutureInterfaceIvE) + 8u) + QFutureInterfaceBase (0xb6138e4c) 0 + primary-for QFutureInterface (0xb6154780) + +Class QFuture + size=8 align=4 + base size=8 base align=4 +QFuture (0xb61895dc) 0 + +Vtable for QFutureWatcherBase +QFutureWatcherBase::_ZTV18QFutureWatcherBase: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFutureWatcherBase) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcherBase::~QFutureWatcherBase +24 QFutureWatcherBase::~QFutureWatcherBase +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class QFutureWatcherBase + size=8 align=4 + base size=8 base align=4 +QFutureWatcherBase (0xb61ad6c0) 0 + vptr=((& QFutureWatcherBase::_ZTV18QFutureWatcherBase) + 8u) + QObject (0xb61abc6c) 0 + primary-for QFutureWatcherBase (0xb61ad6c0) + +Vtable for QFutureWatcher +QFutureWatcher::_ZTV14QFutureWatcherIvE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QFutureWatcherIvE) +8 QFutureWatcherBase::metaObject +12 QFutureWatcherBase::qt_metacast +16 QFutureWatcherBase::qt_metacall +20 QFutureWatcher::~QFutureWatcher +24 QFutureWatcher::~QFutureWatcher +28 QFutureWatcherBase::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QFutureWatcherBase::connectNotify +52 QFutureWatcherBase::disconnectNotify +56 QFutureWatcher::futureInterface +60 QFutureWatcher::futureInterface + +Class QFutureWatcher + size=16 align=4 + base size=16 base align=4 +QFutureWatcher (0xb61addc0) 0 + vptr=((& QFutureWatcher::_ZTV14QFutureWatcherIvE) + 8u) + QFutureWatcherBase (0xb61ade00) 0 + primary-for QFutureWatcher (0xb61addc0) + QObject (0xb5fc1780) 0 + primary-for QFutureWatcherBase (0xb61ade00) + +Vtable for QRunnable +QRunnable::_ZTV9QRunnable: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QRunnable) +8 __cxa_pure_virtual +12 QRunnable::~QRunnable +16 QRunnable::~QRunnable + +Class QRunnable + size=8 align=4 + base size=8 base align=4 +QRunnable (0xb5fd7690) 0 + vptr=((& QRunnable::_ZTV9QRunnable) + 8u) + +Vtable for QThread +QThread::_ZTV7QThread: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QThread) +8 QThread::metaObject +12 QThread::qt_metacast +16 QThread::qt_metacall +20 QThread::~QThread +24 QThread::~QThread +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QThread::run + +Class QThread + size=8 align=4 + base size=8 base align=4 +QThread (0xb5fce8c0) 0 + vptr=((& QThread::_ZTV7QThread) + 8u) + QObject (0xb5fd7fb4) 0 + primary-for QThread (0xb5fce8c0) + +Vtable for QThreadPool +QThreadPool::_ZTV11QThreadPool: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QThreadPool) +8 QThreadPool::metaObject +12 QThreadPool::qt_metacast +16 QThreadPool::qt_metacall +20 QThreadPool::~QThreadPool +24 QThreadPool::~QThreadPool +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QThreadPool + size=8 align=4 + base size=8 base align=4 +QThreadPool (0xb5fcec00) 0 + vptr=((& QThreadPool::_ZTV11QThreadPool) + 8u) + QObject (0xb5fe6dd4) 0 + primary-for QThreadPool (0xb5fcec00) + +Class QWaitCondition + size=4 align=4 + base size=4 base align=4 +QWaitCondition (0xb5ffb7bc) 0 + +Class QtConcurrent::ThreadEngineSemaphore + size=12 align=4 + base size=12 base align=4 +QtConcurrent::ThreadEngineSemaphore (0xb5ffba8c) 0 + +Vtable for QtConcurrent::ThreadEngineBase +QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent16ThreadEngineBaseE) +8 QtConcurrent::ThreadEngineBase::run +12 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +16 QtConcurrent::ThreadEngineBase::~ThreadEngineBase +20 QtConcurrent::ThreadEngineBase::start +24 QtConcurrent::ThreadEngineBase::finish +28 QtConcurrent::ThreadEngineBase::threadFunction +32 QtConcurrent::ThreadEngineBase::shouldStartThread +36 QtConcurrent::ThreadEngineBase::shouldThrottleThread +40 __cxa_pure_virtual + +Class QtConcurrent::ThreadEngineBase + size=32 align=4 + base size=32 base align=4 +QtConcurrent::ThreadEngineBase (0xb60082c0) 0 + vptr=((& QtConcurrent::ThreadEngineBase::_ZTVN12QtConcurrent16ThreadEngineBaseE) + 8u) + QRunnable (0xb6009780) 0 + primary-for QtConcurrent::ThreadEngineBase (0xb60082c0) + +Class QtConcurrent::ThreadEngineStarterBase + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarterBase (0xb6009f78) 0 + +Class QtConcurrent::ThreadEngineStarter + size=4 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngineStarter (0xb6008c40) 0 + QtConcurrent::ThreadEngineStarterBase (0xb60098ac) 0 + +Vtable for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE: 26u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +12 QtConcurrent::ThreadEngine::result [with T = void] +16 QtConcurrent::ThreadEngine::asynchronousFinish [with T = void] +20 QtConcurrent::ThreadEngine::~ThreadEngine +24 QtConcurrent::ThreadEngine::~ThreadEngine +28 -4u +32 0u +36 0u +40 0u +44 0u +48 0u +52 -4u +56 0u +60 (int (*)(...))-0x000000004 +64 (int (*)(...))(& _ZTIN12QtConcurrent12ThreadEngineIvEE) +68 QtConcurrent::ThreadEngineBase::run +72 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED1Ev +76 QtConcurrent::ThreadEngine::_ZTv0_n16_N12QtConcurrent12ThreadEngineIvED0Ev +80 QtConcurrent::ThreadEngineBase::start +84 QtConcurrent::ThreadEngineBase::finish +88 QtConcurrent::ThreadEngineBase::threadFunction +92 QtConcurrent::ThreadEngineBase::shouldStartThread +96 QtConcurrent::ThreadEngineBase::shouldThrottleThread +100 QtConcurrent::ThreadEngine::_ZTv0_n40_N12QtConcurrent12ThreadEngineIvE18asynchronousFinishEv + +VTT for QtConcurrent::ThreadEngine +QtConcurrent::ThreadEngine::_ZTTN12QtConcurrent12ThreadEngineIvEE: 2u entries +0 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) +4 ((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + +Class QtConcurrent::ThreadEngine + size=36 align=4 + base size=4 base align=4 +QtConcurrent::ThreadEngine (0xb6008e00) 0 nearly-empty + vptridx=0u vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 12u) + QtConcurrent::ThreadEngineBase (0xb6008e40) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& QtConcurrent::ThreadEngine::_ZTVN12QtConcurrent12ThreadEngineIvEE) + 68u) + QRunnable (0xb601f474) 4 + primary-for QtConcurrent::ThreadEngineBase (0xb6008e40) + +Class std::input_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::input_iterator_tag (0xb601fa8c) 0 empty + +Class std::output_iterator_tag + size=1 align=1 + base size=0 base align=1 +std::output_iterator_tag (0xb601fac8) 0 empty + +Class std::forward_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::forward_iterator_tag (0xb6029140) 0 empty + std::input_iterator_tag (0xb601fb04) 0 empty + +Class std::bidirectional_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::bidirectional_iterator_tag (0xb60291c0) 0 empty + std::forward_iterator_tag (0xb6029200) 0 empty + std::input_iterator_tag (0xb601fb40) 0 empty + +Class std::random_access_iterator_tag + size=1 align=1 + base size=1 base align=1 +std::random_access_iterator_tag (0xb6029280) 0 empty + std::bidirectional_iterator_tag (0xb60292c0) 0 empty + std::forward_iterator_tag (0xb6029300) 0 empty + std::input_iterator_tag (0xb601fb7c) 0 empty + +Class std::__true_type + size=1 align=1 + base size=0 base align=1 +std::__true_type (0xb601fe88) 0 empty + +Class std::__false_type + size=1 align=1 + base size=0 base align=1 +std::__false_type (0xb601fec4) 0 empty + +Class std::__truth_type + size=1 align=1 + base size=0 base align=1 +std::__truth_type (0xb601ff3c) 0 empty + +Class std::__is_void + size=1 align=1 + base size=0 base align=1 +std::__is_void (0xb603e0f0) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e1e0) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e258) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e2d0) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e348) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e3c0) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e438) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e4b0) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e528) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e5a0) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e618) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e690) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e708) 0 empty + +Class std::__is_integer + size=1 align=1 + base size=0 base align=1 +std::__is_integer (0xb603e780) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb603e870) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb603e8e8) 0 empty + +Class std::__is_floating + size=1 align=1 + base size=0 base align=1 +std::__is_floating (0xb603e960) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb603ece4) 0 empty + +Class std::__is_char + size=1 align=1 + base size=0 base align=1 +std::__is_char (0xb603ed5c) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb603ee4c) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb603eec4) 0 empty + +Class std::__is_byte + size=1 align=1 + base size=0 base align=1 +std::__is_byte (0xb603ef3c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6051168) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60511a4) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb60511e0) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb605121c) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6051258) 0 empty + +Class __gnu_cxx::__add_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__add_unsigned (0xb6051294) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb605130c) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6051348) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6051384) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60513c0) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb60513fc) 0 empty + +Class __gnu_cxx::__remove_unsigned + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__remove_unsigned (0xb6051438) 0 empty + +Class std::iterator + size=1 align=1 + base size=0 base align=1 +std::iterator (0xb6051e10) 0 empty + +Class std::__iter_swap + size=1 align=1 + base size=0 base align=1 +std::__iter_swap (0xb60b83fc) 0 empty + +Class std::__copy_move + size=1 align=1 + base size=0 base align=1 +std::__copy_move (0xb60b8834) 0 empty + +Class std::__copy_move_backward + size=1 align=1 + base size=0 base align=1 +std::__copy_move_backward (0xb60b8a50) 0 empty + +Class std::__equal + size=1 align=1 + base size=0 base align=1 +std::__equal (0xb60b8e4c) 0 empty + +Class std::__lc_rai + size=1 align=1 + base size=0 base align=1 +std::__lc_rai (0xb60b8fb4) 0 empty + +Class std::__lexicographical_compare + size=1 align=1 + base size=0 base align=1 +std::__lexicographical_compare (0xb5f0412c) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5f04834) 0 empty + +Class std::char_traits + size=1 align=1 + base size=0 base align=1 +std::char_traits (0xb5f2c258) 0 empty + +Class lconv + size=56 align=4 + base size=56 base align=4 +lconv (0xb5f2eb7c) 0 + +Class sched_param + size=4 align=4 + base size=4 base align=4 +sched_param (0xb5f2edd4) 0 + +Class __sched_param + size=4 align=4 + base size=4 base align=4 +__sched_param (0xb5f2ee10) 0 + +Class + size=128 align=4 + base size=128 base align=4 + (0xb5f2ee88) 0 + +Class tm + size=44 align=4 + base size=44 base align=4 +tm (0xb5f2eec4) 0 + +Class itimerspec + size=16 align=4 + base size=16 base align=4 +itimerspec (0xb5f2ef3c) 0 + +Class _pthread_cleanup_buffer + size=16 align=4 + base size=16 base align=4 +_pthread_cleanup_buffer (0xb5f59168) 0 + +Class :: + size=28 align=4 + base size=28 base align=4 +:: (0xb5f592d0) 0 + +Class + size=44 align=4 + base size=44 base align=4 + (0xb5f59258) 0 + +Class __pthread_cleanup_frame + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_frame (0xb5f5930c) 0 + +Class __pthread_cleanup_class + size=16 align=4 + base size=16 base align=4 +__pthread_cleanup_class (0xb5f59348) 0 + +Class std::allocator + size=1 align=1 + base size=0 base align=1 +std::allocator (0xb5fb3870) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5fb3b40) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5dc37c0) 0 empty + __gnu_cxx::new_allocator (0xb5fb3b7c) 0 empty + +Class __gnu_cxx::new_allocator + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::new_allocator (0xb5fb3bb8) 0 empty + +Class std::allocator + size=1 align=1 + base size=1 base align=1 +std::allocator (0xb5dc3880) 0 empty + __gnu_cxx::new_allocator (0xb5fb3bf4) 0 empty + +Vtable for __cxxabiv1::__forced_unwind +__cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN10__cxxabiv115__forced_unwindE) +8 __cxxabiv1::__forced_unwind::~__forced_unwind +12 __cxxabiv1::__forced_unwind::~__forced_unwind +16 __cxa_pure_virtual + +Class __cxxabiv1::__forced_unwind + size=4 align=4 + base size=4 base align=4 +__cxxabiv1::__forced_unwind (0xb5fb3e10) 0 nearly-empty + vptr=((& __cxxabiv1::__forced_unwind::_ZTVN10__cxxabiv115__forced_unwindE) + 8u) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5e66708) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5e66744) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5e69b40) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5e66780) 0 empty + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5ce53fc) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5d03100) 0 + std::allocator (0xb5d03140) 0 empty + __gnu_cxx::new_allocator (0xb5ce5474) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5ce5384) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5ce54b0) 0 + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5d032c0) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5ce54ec) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5ce55a0) 0 empty + +Class std::basic_string, std::allocator >::_Alloc_hider + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator >::_Alloc_hider (0xb5d034c0) 0 + std::allocator (0xb5d03500) 0 empty + __gnu_cxx::new_allocator (0xb5ce5618) 0 empty + +Class std::basic_string, std::allocator > + size=4 align=4 + base size=4 base align=4 +std::basic_string, std::allocator > (0xb5ce5528) 0 + +Class std::basic_string, std::allocator >::_Rep_base + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep_base (0xb5ce5654) 0 + +Class std::allocator::rebind + size=1 align=1 + base size=0 base align=1 +std::allocator::rebind (0xb5ce5708) 0 empty + +Class std::basic_string, std::allocator >::_Rep + size=12 align=4 + base size=12 base align=4 +std::basic_string, std::allocator >::_Rep (0xb5d03680) 0 + std::basic_string, std::allocator >::_Rep_base (0xb5ce5690) 0 + +Class std::locale + size=4 align=4 + base size=4 base align=4 +std::locale (0xb5ce5744) 0 + +Vtable for std::locale::facet +std::locale::facet::_ZTVNSt6locale5facetE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt6locale5facetE) +8 std::locale::facet::~facet +12 std::locale::facet::~facet + +Class std::locale::facet + size=8 align=4 + base size=8 base align=4 +std::locale::facet (0xb5d97bb8) 0 + vptr=((& std::locale::facet::_ZTVNSt6locale5facetE) + 8u) + +Class std::locale::id + size=4 align=4 + base size=4 base align=4 +std::locale::id (0xb5da2564) 0 + +Class std::locale::_Impl + size=20 align=4 + base size=20 base align=4 +std::locale::_Impl (0xb5da28ac) 0 + +Vtable for std::collate +std::collate::_ZTVSt7collateIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIcE) +8 std::collate<_CharT>::~collate [with _CharT = char] +12 std::collate<_CharT>::~collate [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5db0640) 0 + vptr=((& std::collate::_ZTVSt7collateIcE) + 8u) + std::locale::facet (0xb5db5258) 0 + primary-for std::collate (0xb5db0640) + +Vtable for std::collate +std::collate::_ZTVSt7collateIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7collateIwE) +8 std::collate<_CharT>::~collate [with _CharT = wchar_t] +12 std::collate<_CharT>::~collate [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate + size=12 align=4 + base size=12 base align=4 +std::collate (0xb5db0740) 0 + vptr=((& std::collate::_ZTVSt7collateIwE) + 8u) + std::locale::facet (0xb5db5348) 0 + primary-for std::collate (0xb5db0740) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5db57bc) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5db57f8) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5bd26c0) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5db5834) 0 empty + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIcE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIcE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = char] +16 std::collate<_CharT>::do_compare [with _CharT = char] +20 std::collate<_CharT>::do_transform [with _CharT = char] +24 std::collate<_CharT>::do_hash [with _CharT = char] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5bd2800) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIcE) + 8u) + std::collate (0xb5bd2840) 0 + primary-for std::collate_byname (0xb5bd2800) + std::locale::facet (0xb5db58ac) 0 + primary-for std::collate (0xb5bd2840) + +Vtable for std::collate_byname +std::collate_byname::_ZTVSt14collate_bynameIwE: 7u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt14collate_bynameIwE) +8 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +12 std::collate_byname<_CharT>::~collate_byname [with _CharT = wchar_t] +16 std::collate<_CharT>::do_compare [with _CharT = wchar_t] +20 std::collate<_CharT>::do_transform [with _CharT = wchar_t] +24 std::collate<_CharT>::do_hash [with _CharT = wchar_t] + +Class std::collate_byname + size=12 align=4 + base size=12 base align=4 +std::collate_byname (0xb5bd28c0) 0 + vptr=((& std::collate_byname::_ZTVSt14collate_bynameIwE) + 8u) + std::collate (0xb5bd2900) 0 + primary-for std::collate_byname (0xb5bd28c0) + std::locale::facet (0xb5db599c) 0 + primary-for std::collate (0xb5bd2900) + +Vtable for std::ios_base::failure +std::ios_base::failure::_ZTVNSt8ios_base7failureE: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTINSt8ios_base7failureE) +8 std::ios_base::failure::~failure +12 std::ios_base::failure::~failure +16 std::ios_base::failure::what + +Class std::ios_base::failure + size=8 align=4 + base size=8 base align=4 +std::ios_base::failure (0xb5bd2f40) 0 + vptr=((& std::ios_base::failure::_ZTVNSt8ios_base7failureE) + 8u) + std::exception (0xb5be7780) 0 nearly-empty + primary-for std::ios_base::failure (0xb5bd2f40) + +Class std::ios_base::_Callback_list + size=16 align=4 + base size=16 base align=4 +std::ios_base::_Callback_list (0xb5bf5a14) 0 + +Class std::ios_base::_Words + size=8 align=4 + base size=8 base align=4 +std::ios_base::_Words (0xb5bf5fb4) 0 + +Class std::ios_base::Init + size=1 align=1 + base size=0 base align=1 +std::ios_base::Init (0xb5bf83c0) 0 empty + +Vtable for std::ios_base +std::ios_base::_ZTVSt8ios_base: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8ios_base) +8 std::ios_base::~ios_base +12 std::ios_base::~ios_base + +Class std::ios_base + size=112 align=4 + base size=112 base align=4 +std::ios_base (0xb5be7744) 0 + vptr=((& std::ios_base::_ZTVSt8ios_base) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIcSt11char_traitsIcEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = char, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = char, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = char, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = char, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = char, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = char, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = char, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = char, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = char, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = char, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = char, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = char, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5c19dd4) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIcSt11char_traitsIcEE) + 8u) + +Vtable for std::basic_streambuf > +std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15basic_streambufIwSt11char_traitsIwEE) +8 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_streambuf<_CharT, _Traits>::~basic_streambuf [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_streambuf<_CharT, _Traits>::imbue [with _CharT = wchar_t, _Traits = std::char_traits] +20 std::basic_streambuf<_CharT, _Traits>::setbuf [with _CharT = wchar_t, _Traits = std::char_traits] +24 std::basic_streambuf<_CharT, _Traits>::seekoff [with _CharT = wchar_t, _Traits = std::char_traits] +28 std::basic_streambuf<_CharT, _Traits>::seekpos [with _CharT = wchar_t, _Traits = std::char_traits] +32 std::basic_streambuf<_CharT, _Traits>::sync [with _CharT = wchar_t, _Traits = std::char_traits] +36 std::basic_streambuf<_CharT, _Traits>::showmanyc [with _CharT = wchar_t, _Traits = std::char_traits] +40 std::basic_streambuf<_CharT, _Traits>::xsgetn [with _CharT = wchar_t, _Traits = std::char_traits] +44 std::basic_streambuf<_CharT, _Traits>::underflow [with _CharT = wchar_t, _Traits = std::char_traits] +48 std::basic_streambuf<_CharT, _Traits>::uflow [with _CharT = wchar_t, _Traits = std::char_traits] +52 std::basic_streambuf<_CharT, _Traits>::pbackfail [with _CharT = wchar_t, _Traits = std::char_traits] +56 std::basic_streambuf<_CharT, _Traits>::xsputn [with _CharT = wchar_t, _Traits = std::char_traits] +60 std::basic_streambuf<_CharT, _Traits>::overflow [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_streambuf > + size=32 align=4 + base size=32 base align=4 +std::basic_streambuf > (0xb5c19e4c) 0 + vptr=((& std::basic_streambuf >::_ZTVSt15basic_streambufIwSt11char_traitsIwEE) + 8u) + +Class std::ctype_base + size=1 align=1 + base size=0 base align=1 +std::ctype_base (0xb5c19f3c) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIcE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype + size=544 align=4 + base size=542 base align=4 +std::ctype (0xb5c9dfa0) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIcE) + 8u) + std::locale::facet (0xb5c9c258) 0 + primary-for std::ctype (0xb5c9dfa0) + std::ctype_base (0xb5c9c294) 0 empty + +Vtable for std::__ctype_abstract_base +std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt21__ctype_abstract_baseIwE) +8 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +12 std::__ctype_abstract_base<_CharT>::~__ctype_abstract_base [with _CharT = wchar_t] +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual + +Class std::__ctype_abstract_base + size=8 align=4 + base size=8 base align=4 +std::__ctype_abstract_base (0xb5cab870) 0 + vptr=((& std::__ctype_abstract_base::_ZTVSt21__ctype_abstract_baseIwE) + 8u) + std::locale::facet (0xb5abae10) 0 + primary-for std::__ctype_abstract_base (0xb5cab870) + std::ctype_base (0xb5abae4c) 0 empty + +Vtable for std::ctype +std::ctype::_ZTVSt5ctypeIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt5ctypeIwE) +8 std::ctype::~ctype +12 std::ctype::~ctype +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype + size=1264 align=4 + base size=1264 base align=4 +std::ctype (0xb5caf800) 0 + vptr=((& std::ctype::_ZTVSt5ctypeIwE) + 8u) + std::__ctype_abstract_base (0xb5ac66e0) 0 + primary-for std::ctype (0xb5caf800) + std::locale::facet (0xb5abaf3c) 0 + primary-for std::__ctype_abstract_base (0xb5ac66e0) + std::ctype_base (0xb5abaf78) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIcE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIcE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_toupper +20 std::ctype::do_toupper +24 std::ctype::do_tolower +28 std::ctype::do_tolower +32 std::ctype::do_widen +36 std::ctype::do_widen +40 std::ctype::do_narrow +44 std::ctype::do_narrow + +Class std::ctype_byname + size=544 align=4 + base size=542 base align=4 +std::ctype_byname (0xb5caf9c0) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIcE) + 8u) + std::ctype (0xb5acde60) 0 + primary-for std::ctype_byname (0xb5caf9c0) + std::locale::facet (0xb5ace294) 0 + primary-for std::ctype (0xb5acde60) + std::ctype_base (0xb5ace2d0) 0 empty + +Vtable for std::ctype_byname +std::ctype_byname::_ZTVSt12ctype_bynameIwE: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt12ctype_bynameIwE) +8 std::ctype_byname::~ctype_byname +12 std::ctype_byname::~ctype_byname +16 std::ctype::do_is +20 std::ctype::do_is +24 std::ctype::do_scan_is +28 std::ctype::do_scan_not +32 std::ctype::do_toupper +36 std::ctype::do_toupper +40 std::ctype::do_tolower +44 std::ctype::do_tolower +48 std::ctype::do_widen +52 std::ctype::do_widen +56 std::ctype::do_narrow +60 std::ctype::do_narrow + +Class std::ctype_byname + size=1264 align=4 + base size=1264 base align=4 +std::ctype_byname (0xb5cafa40) 0 + vptr=((& std::ctype_byname::_ZTVSt12ctype_bynameIwE) + 8u) + std::ctype (0xb5cafa80) 0 + primary-for std::ctype_byname (0xb5cafa40) + std::__ctype_abstract_base (0xb5ad24b0) 0 + primary-for std::ctype (0xb5cafa80) + std::locale::facet (0xb5ace438) 0 + primary-for std::__ctype_abstract_base (0xb5ad24b0) + std::ctype_base (0xb5ace474) 0 empty + +Class std::__num_base + size=1 align=1 + base size=0 base align=1 +std::__num_base (0xb5acee88) 0 empty + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIcE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = char] +12 std::numpunct<_CharT>::~numpunct [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5ae0480) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIcE) + 8u) + std::locale::facet (0xb5adc654) 0 + primary-for std::numpunct (0xb5ae0480) + +Vtable for std::numpunct +std::numpunct::_ZTVSt8numpunctIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt8numpunctIwE) +8 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +12 std::numpunct<_CharT>::~numpunct [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct + size=12 align=4 + base size=12 base align=4 +std::numpunct (0xb5ae0540) 0 + vptr=((& std::numpunct::_ZTVSt8numpunctIwE) + 8u) + std::locale::facet (0xb5adc744) 0 + primary-for std::numpunct (0xb5ae0540) + +Class __gnu_cxx::__conditional_type + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type (0xb5b17d98) 0 empty + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIcE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIcE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = char] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = char] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = char] +24 std::numpunct<_CharT>::do_grouping [with _CharT = char] +28 std::numpunct<_CharT>::do_truename [with _CharT = char] +32 std::numpunct<_CharT>::do_falsename [with _CharT = char] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5b64a80) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIcE) + 8u) + std::numpunct (0xb5b64ac0) 0 + primary-for std::numpunct_byname (0xb5b64a80) + std::locale::facet (0xb5b6b3c0) 0 + primary-for std::numpunct (0xb5b64ac0) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = char, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5b64b00) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5b6b4b0) 0 + primary-for std::num_get > > (0xb5b64b00) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = char, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5b64b80) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEE) + 8u) + std::locale::facet (0xb5b6b5a0) 0 + primary-for std::num_put > > (0xb5b64b80) + +Vtable for std::numpunct_byname +std::numpunct_byname::_ZTVSt15numpunct_bynameIwE: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt15numpunct_bynameIwE) +8 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +12 std::numpunct_byname<_CharT>::~numpunct_byname [with _CharT = wchar_t] +16 std::numpunct<_CharT>::do_decimal_point [with _CharT = wchar_t] +20 std::numpunct<_CharT>::do_thousands_sep [with _CharT = wchar_t] +24 std::numpunct<_CharT>::do_grouping [with _CharT = wchar_t] +28 std::numpunct<_CharT>::do_truename [with _CharT = wchar_t] +32 std::numpunct<_CharT>::do_falsename [with _CharT = wchar_t] + +Class std::numpunct_byname + size=12 align=4 + base size=12 base align=4 +std::numpunct_byname (0xb5b64c00) 0 + vptr=((& std::numpunct_byname::_ZTVSt15numpunct_bynameIwE) + 8u) + std::numpunct (0xb5b64c40) 0 + primary-for std::numpunct_byname (0xb5b64c00) + std::locale::facet (0xb5b6b690) 0 + primary-for std::numpunct (0xb5b64c40) + +Vtable for std::num_get > > +std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +12 std::num_get<_CharT, _InIter>::~num_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +16 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +20 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +24 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +28 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +32 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +36 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +40 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +44 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +48 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +52 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] +56 std::num_get<_CharT, _InIter>::do_get [with _CharT = wchar_t, _InIter = std::istreambuf_iterator >] + +Class std::num_get > > + size=8 align=4 + base size=8 base align=4 +std::num_get > > (0xb5b64cc0) 0 + vptr=((& std::num_get > >::_ZTVSt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5b6b780) 0 + primary-for std::num_get > > (0xb5b64cc0) + +Vtable for std::num_put > > +std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE: 12u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) +8 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +12 std::num_put<_CharT, _OutIter>::~num_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +16 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +20 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +24 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +28 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +32 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +36 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +40 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] +44 std::num_put<_CharT, _OutIter>::do_put [with _CharT = wchar_t, _OutIter = std::ostreambuf_iterator >] + +Class std::num_put > > + size=8 align=4 + base size=8 base align=4 +std::num_put > > (0xb5b64d40) 0 + vptr=((& std::num_put > >::_ZTVSt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEE) + 8u) + std::locale::facet (0xb5b6b870) 0 + primary-for std::num_put > > (0xb5b64d40) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIcSt11char_traitsIcEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = char, _Traits = std::char_traits] + +Class std::basic_ios > + size=136 align=4 + base size=136 base align=4 +std::basic_ios > (0xb5bb8d80) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIcSt11char_traitsIcEE) + 8u) + std::ios_base (0xb5b6b654) 0 + primary-for std::basic_ios > (0xb5bb8d80) + +Vtable for std::basic_ios > +std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTISt9basic_iosIwSt11char_traitsIwEE) +8 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] +12 std::basic_ios<_CharT, _Traits>::~basic_ios [with _CharT = wchar_t, _Traits = std::char_traits] + +Class std::basic_ios > + size=140 align=4 + base size=140 base align=4 +std::basic_ios > (0xb5bb8dc0) 0 + vptr=((& std::basic_ios >::_ZTVSt9basic_iosIwSt11char_traitsIwEE) + 8u) + std::ios_base (0xb5b6b924) 0 + primary-for std::basic_ios > (0xb5bb8dc0) + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSo: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSo: 2u entries +0 ((& std::basic_ostream >::_ZTVSo) + 12u) +4 ((& std::basic_ostream >::_ZTVSo) + 32u) + +Class std::basic_ostream > + size=140 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5a02a40) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSo) + 12u) + std::basic_ios > (0xb5a02a80) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSo) + 32u) + std::ios_base (0xb59d7ca8) 4 + primary-for std::basic_ios > (0xb5a02a80) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb59d7e88) 0 + +Vtable for std::basic_ostream > +std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_ostream > +std::basic_ostream >::_ZTTSt13basic_ostreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_ostream > + size=144 align=4 + base size=4 base align=4 +std::basic_ostream > (0xb5a02bc0) 0 nearly-empty + vptridx=0u vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5a02c00) 4 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_ostream >::_ZTVSt13basic_ostreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb59d7ec4) 4 + primary-for std::basic_ios > (0xb5a02c00) + +Class std::basic_ostream >::sentry + size=8 align=4 + base size=8 base align=4 +std::basic_ostream >::sentry (0xb59d7f78) 0 + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSi: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSi: 2u entries +0 ((& std::basic_istream >::_ZTVSi) + 12u) +4 ((& std::basic_istream >::_ZTVSi) + 32u) + +Class std::basic_istream > + size=144 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5a42480) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSi) + 12u) + std::basic_ios > (0xb5a424c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSi) + 32u) + std::ios_base (0xb5a31528) 8 + primary-for std::basic_ios > (0xb5a424c0) + +Vtable for std::basic_istream > +std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE: 10u entries +0 8u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -8u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_istream > +std::basic_istream >::_ZTTSt13basic_istreamIwSt11char_traitsIwEE: 2u entries +0 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_istream > + size=148 align=4 + base size=8 base align=4 +std::basic_istream > (0xb5a42580) 0 + vptridx=0u vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 12u) + std::basic_ios > (0xb5a425c0) 8 virtual + vptridx=4u vbaseoffset=-0x00000000c vptr=((& std::basic_istream >::_ZTVSt13basic_istreamIwSt11char_traitsIwEE) + 32u) + std::ios_base (0xb5a318ac) 8 + primary-for std::basic_ios > (0xb5a425c0) + +Class __gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__conditional_type, __gnu_cxx::__numeric_traits_floating > (0xb5a31fb4) 0 empty + +Class __gnu_cxx::__numeric_traits_integer + size=1 align=1 + base size=0 base align=1 +__gnu_cxx::__numeric_traits_integer (0xb5a31618) 0 empty + +Class __gnu_cxx::__numeric_traits + size=1 align=1 + base size=1 base align=1 +__gnu_cxx::__numeric_traits (0xb5a6e480) 0 empty + __gnu_cxx::__numeric_traits_integer (0xb5a31960) 0 empty + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5a784ec) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSd: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISd) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = char, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISd) +32 std::basic_iostream >::_ZThn8_NSdD1Ev +36 std::basic_iostream >::_ZThn8_NSdD0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISd) +52 std::basic_iostream >::_ZTv0_n12_NSdD1Ev +56 std::basic_iostream >::_ZTv0_n12_NSdD0Ev + +Construction vtable for std::basic_istream > (0xb5aaa380 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd0_Si: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISi) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = char, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISi) +32 std::basic_istream >::_ZTv0_n12_NSiD1Ev +36 std::basic_istream >::_ZTv0_n12_NSiD0Ev + +Construction vtable for std::basic_ostream > (0xb5aaa400 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSd8_So: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISo) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = char, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISo) +32 std::basic_ostream >::_ZTv0_n12_NSoD1Ev +36 std::basic_ostream >::_ZTv0_n12_NSoD0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSd: 7u entries +0 ((& std::basic_iostream >::_ZTVSd) + 12u) +4 ((& std::basic_iostream >::_ZTCSd0_Si) + 12u) +8 ((& std::basic_iostream >::_ZTCSd0_Si) + 32u) +12 ((& std::basic_iostream >::_ZTCSd8_So) + 12u) +16 ((& std::basic_iostream >::_ZTCSd8_So) + 32u) +20 ((& std::basic_iostream >::_ZTVSd) + 52u) +24 ((& std::basic_iostream >::_ZTVSd) + 32u) + +Class std::basic_iostream > + size=148 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb5ab4b40) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSd) + 12u) + std::basic_istream > (0xb5aaa380) 0 + primary-for std::basic_iostream > (0xb5ab4b40) + subvttidx=4u + std::basic_ios > (0xb5aaa3c0) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSd) + 52u) + std::ios_base (0xb5a78528) 12 + primary-for std::basic_ios > (0xb5aaa3c0) + std::basic_ostream > (0xb5aaa400) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSd) + 32u) + std::basic_ios > (0xb5aaa3c0) alternative-path + +Class std::basic_istream >::sentry + size=1 align=1 + base size=1 base align=1 +std::basic_istream >::sentry (0xb5a787bc) 0 + +Vtable for std::basic_iostream > +std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE: 15u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +12 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_iostream<_CharT, _Traits>::~basic_iostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 4u +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +32 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +36 std::basic_iostream >::_ZThn8_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev +40 -12u +44 (int (*)(...))-0x00000000c +48 (int (*)(...))(& _ZTISt14basic_iostreamIwSt11char_traitsIwEE) +52 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED1Ev +56 std::basic_iostream >::_ZTv0_n12_NSt14basic_iostreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_istream > (0xb5aaa700 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E: 10u entries +0 12u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +12 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_istream<_CharT, _Traits>::~basic_istream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -12u +24 (int (*)(...))-0x00000000c +28 (int (*)(...))(& _ZTISt13basic_istreamIwSt11char_traitsIwEE) +32 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED1Ev +36 std::basic_istream >::_ZTv0_n12_NSt13basic_istreamIwSt11char_traitsIwEED0Ev + +Construction vtable for std::basic_ostream > (0xb5aaa780 instance) in std::basic_iostream > +std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E: 10u entries +0 4u +4 (int (*)(...))0 +8 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +12 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +16 std::basic_ostream<_CharT, _Traits>::~basic_ostream [with _CharT = wchar_t, _Traits = std::char_traits] +20 -4u +24 (int (*)(...))-0x000000004 +28 (int (*)(...))(& _ZTISt13basic_ostreamIwSt11char_traitsIwEE) +32 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED1Ev +36 std::basic_ostream >::_ZTv0_n12_NSt13basic_ostreamIwSt11char_traitsIwEED0Ev + +VTT for std::basic_iostream > +std::basic_iostream >::_ZTTSt14basic_iostreamIwSt11char_traitsIwEE: 7u entries +0 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) +4 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 12u) +8 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE0_St13basic_istreamIwS1_E) + 32u) +12 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 12u) +16 ((& std::basic_iostream >::_ZTCSt14basic_iostreamIwSt11char_traitsIwEE8_St13basic_ostreamIwS1_E) + 32u) +20 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) +24 ((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + +Class std::basic_iostream > + size=152 align=4 + base size=12 base align=4 +std::basic_iostream > (0xb58bdbe0) 0 + vptridx=0u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 12u) + std::basic_istream > (0xb5aaa700) 0 + primary-for std::basic_iostream > (0xb58bdbe0) + subvttidx=4u + std::basic_ios > (0xb5aaa740) 12 virtual + vptridx=20u vbaseoffset=-0x00000000c vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 52u) + std::ios_base (0xb5a787f8) 12 + primary-for std::basic_ios > (0xb5aaa740) + std::basic_ostream > (0xb5aaa780) 8 nearly-empty + subvttidx=12u vptridx=24u vptr=((& std::basic_iostream >::_ZTVSt14basic_iostreamIwSt11char_traitsIwEE) + 32u) + std::basic_ios > (0xb5aaa740) alternative-path + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb58d5000) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb5a788ac) 0 + +Class QtConcurrent::Median + size=24 align=4 + base size=22 base align=4 +QtConcurrent::Median (0xb5a785dc) 0 + +Class QtConcurrent::BlockSizeManager + size=72 align=4 + base size=72 base align=4 +QtConcurrent::BlockSizeManager (0xb5a78f3c) 0 + +Class QtConcurrent::ResultReporter + size=1 align=1 + base size=0 base align=1 +QtConcurrent::ResultReporter (0xb58d53c0) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb58d5c30) 0 + +Class QtConcurrent::SelectSpecialization + size=1 align=1 + base size=0 base align=1 +QtConcurrent::SelectSpecialization (0xb57f10b4) 0 empty + +Vtable for QtConcurrent::RunFunctionTaskBase +QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +8 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +12 QtConcurrent::RunFunctionTaskBase::~RunFunctionTaskBase +16 QtConcurrent::RunFunctionTaskBase::run [with T = void] +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent19RunFunctionTaskBaseIvEE) +32 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvE3runEv +36 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED1Ev +40 QtConcurrent::RunFunctionTaskBase::_ZThn8_N12QtConcurrent19RunFunctionTaskBaseIvED0Ev + +Class QtConcurrent::RunFunctionTaskBase + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTaskBase (0xb57f6370) 0 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 8u) + QFutureInterface (0xb57e5a00) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb57f6370) + QFutureInterfaceBase (0xb57f1294) 0 + primary-for QFutureInterface (0xb57e5a00) + QRunnable (0xb57f12d0) 8 + vptr=((& QtConcurrent::RunFunctionTaskBase::_ZTVN12QtConcurrent19RunFunctionTaskBaseIvEE) + 32u) + +Vtable for QtConcurrent::RunFunctionTask +QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE: 11u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +8 QtConcurrent::RunFunctionTask::~RunFunctionTask +12 QtConcurrent::RunFunctionTask::~RunFunctionTask +16 QtConcurrent::RunFunctionTask::run +20 __cxa_pure_virtual +24 (int (*)(...))-0x000000008 +28 (int (*)(...))(& _ZTIN12QtConcurrent15RunFunctionTaskIvEE) +32 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvE3runEv +36 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED1Ev +40 QtConcurrent::RunFunctionTask::_ZThn8_N12QtConcurrent15RunFunctionTaskIvED0Ev + +Class QtConcurrent::RunFunctionTask + size=16 align=4 + base size=16 base align=4 +QtConcurrent::RunFunctionTask (0xb57e5a80) 0 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 8u) + QtConcurrent::RunFunctionTaskBase (0xb57f6780) 0 + primary-for QtConcurrent::RunFunctionTask (0xb57e5a80) + QFutureInterface (0xb57e5ac0) 0 + primary-for QtConcurrent::RunFunctionTaskBase (0xb57f6780) + QFutureInterfaceBase (0xb57f1474) 0 + primary-for QFutureInterface (0xb57e5ac0) + QRunnable (0xb57f14b0) 8 + vptr=((& QtConcurrent::RunFunctionTask::_ZTVN12QtConcurrent15RunFunctionTaskIvEE) + 32u) + +Class QLibraryInfo + size=1 align=1 + base size=0 base align=1 +QLibraryInfo (0xb5756708) 0 empty + +Vtable for QFile +QFile::_ZTV5QFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QFile) +8 QFile::metaObject +12 QFile::qt_metacast +16 QFile::qt_metacall +20 QFile::~QFile +24 QFile::~QFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QFile::fileEngine + +Class QFile + size=8 align=4 + base size=8 base align=4 +QFile (0xb5747e00) 0 + vptr=((& QFile::_ZTV5QFile) + 8u) + QIODevice (0xb5747e40) 0 + primary-for QFile (0xb5747e00) + QObject (0xb57567f8) 0 + primary-for QIODevice (0xb5747e40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5784168) 0 + +Class QFileInfo + size=4 align=4 + base size=4 base align=4 +QFileInfo (0xb5784d20) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb57a63c0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb57a66cc) 0 empty + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb55b6438) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb55b63c0) 0 + +Class QDir + size=4 align=4 + base size=4 base align=4 +QDir (0xb55b6528) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55d8a8c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb55d8b7c) 0 + +Class QAbstractFileEngine::ExtensionOption + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionOption (0xb5619708) 0 empty + +Class QAbstractFileEngine::ExtensionReturn + size=1 align=1 + base size=0 base align=1 +QAbstractFileEngine::ExtensionReturn (0xb5619744) 0 empty + +Class QAbstractFileEngine::MapExtensionOption + size=20 align=4 + base size=20 base align=4 +QAbstractFileEngine::MapExtensionOption (0xb5602240) 0 + QAbstractFileEngine::ExtensionOption (0xb5619780) 0 empty + +Class QAbstractFileEngine::MapExtensionReturn + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::MapExtensionReturn (0xb56022c0) 0 + QAbstractFileEngine::ExtensionReturn (0xb5619870) 0 empty + +Class QAbstractFileEngine::UnMapExtensionOption + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngine::UnMapExtensionOption (0xb5602340) 0 + QAbstractFileEngine::ExtensionOption (0xb56198ac) 0 empty + +Vtable for QAbstractFileEngine +QAbstractFileEngine::_ZTV19QAbstractFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractFileEngine) +8 QAbstractFileEngine::~QAbstractFileEngine +12 QAbstractFileEngine::~QAbstractFileEngine +16 QAbstractFileEngine::open +20 QAbstractFileEngine::close +24 QAbstractFileEngine::flush +28 QAbstractFileEngine::size +32 QAbstractFileEngine::pos +36 QAbstractFileEngine::seek +40 QAbstractFileEngine::isSequential +44 QAbstractFileEngine::remove +48 QAbstractFileEngine::copy +52 QAbstractFileEngine::rename +56 QAbstractFileEngine::link +60 QAbstractFileEngine::mkdir +64 QAbstractFileEngine::rmdir +68 QAbstractFileEngine::setSize +72 QAbstractFileEngine::caseSensitive +76 QAbstractFileEngine::isRelativePath +80 QAbstractFileEngine::entryList +84 QAbstractFileEngine::fileFlags +88 QAbstractFileEngine::setPermissions +92 QAbstractFileEngine::fileName +96 QAbstractFileEngine::ownerId +100 QAbstractFileEngine::owner +104 QAbstractFileEngine::fileTime +108 QAbstractFileEngine::setFileName +112 QAbstractFileEngine::handle +116 QAbstractFileEngine::beginEntryList +120 QAbstractFileEngine::endEntryList +124 QAbstractFileEngine::read +128 QAbstractFileEngine::readLine +132 QAbstractFileEngine::write +136 QAbstractFileEngine::extension +140 QAbstractFileEngine::supportsExtension + +Class QAbstractFileEngine + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngine (0xb5609e4c) 0 + vptr=((& QAbstractFileEngine::_ZTV19QAbstractFileEngine) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5619f3c) 0 + +Vtable for QAbstractFileEngineHandler +QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler: 5u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI26QAbstractFileEngineHandler) +8 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +12 QAbstractFileEngineHandler::~QAbstractFileEngineHandler +16 __cxa_pure_virtual + +Class QAbstractFileEngineHandler + size=4 align=4 + base size=4 base align=4 +QAbstractFileEngineHandler (0xb562ad98) 0 nearly-empty + vptr=((& QAbstractFileEngineHandler::_ZTV26QAbstractFileEngineHandler) + 8u) + +Vtable for QAbstractFileEngineIterator +QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator: 9u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QAbstractFileEngineIterator) +8 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +12 QAbstractFileEngineIterator::~QAbstractFileEngineIterator +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QAbstractFileEngineIterator::currentFileInfo +32 QAbstractFileEngineIterator::entryInfo + +Class QAbstractFileEngineIterator + size=8 align=4 + base size=8 base align=4 +QAbstractFileEngineIterator (0xb562af3c) 0 + vptr=((& QAbstractFileEngineIterator::_ZTV27QAbstractFileEngineIterator) + 8u) + +Vtable for QBuffer +QBuffer::_ZTV7QBuffer: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI7QBuffer) +8 QBuffer::metaObject +12 QBuffer::qt_metacast +16 QBuffer::qt_metacall +20 QBuffer::~QBuffer +24 QBuffer::~QBuffer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QIODevice::isSequential +60 QBuffer::open +64 QBuffer::close +68 QBuffer::pos +72 QBuffer::size +76 QBuffer::seek +80 QBuffer::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QBuffer::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QBuffer::readData +112 QIODevice::readLineData +116 QBuffer::writeData + +Class QBuffer + size=8 align=4 + base size=8 base align=4 +QBuffer (0xb5602580) 0 + vptr=((& QBuffer::_ZTV7QBuffer) + 8u) + QIODevice (0xb56025c0) 0 + primary-for QBuffer (0xb5602580) + QObject (0xb5636438) 0 + primary-for QIODevice (0xb56025c0) + +Vtable for QDirIterator +QDirIterator::_ZTV12QDirIterator: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QDirIterator) +8 QDirIterator::~QDirIterator +12 QDirIterator::~QDirIterator + +Class QDirIterator + size=8 align=4 + base size=8 base align=4 +QDirIterator (0xb56480f0) 0 + vptr=((& QDirIterator::_ZTV12QDirIterator) + 8u) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56488e8) 0 + +Vtable for QFileSystemWatcher +QFileSystemWatcher::_ZTV18QFileSystemWatcher: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QFileSystemWatcher) +8 QFileSystemWatcher::metaObject +12 QFileSystemWatcher::qt_metacast +16 QFileSystemWatcher::qt_metacall +20 QFileSystemWatcher::~QFileSystemWatcher +24 QFileSystemWatcher::~QFileSystemWatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFileSystemWatcher + size=8 align=4 + base size=8 base align=4 +QFileSystemWatcher (0xb5602a00) 0 + vptr=((& QFileSystemWatcher::_ZTV18QFileSystemWatcher) + 8u) + QObject (0xb56556cc) 0 + primary-for QFileSystemWatcher (0xb5602a00) + +Vtable for QFSFileEngine +QFSFileEngine::_ZTV13QFSFileEngine: 36u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QFSFileEngine) +8 QFSFileEngine::~QFSFileEngine +12 QFSFileEngine::~QFSFileEngine +16 QFSFileEngine::open +20 QFSFileEngine::close +24 QFSFileEngine::flush +28 QFSFileEngine::size +32 QFSFileEngine::pos +36 QFSFileEngine::seek +40 QFSFileEngine::isSequential +44 QFSFileEngine::remove +48 QFSFileEngine::copy +52 QFSFileEngine::rename +56 QFSFileEngine::link +60 QFSFileEngine::mkdir +64 QFSFileEngine::rmdir +68 QFSFileEngine::setSize +72 QFSFileEngine::caseSensitive +76 QFSFileEngine::isRelativePath +80 QFSFileEngine::entryList +84 QFSFileEngine::fileFlags +88 QFSFileEngine::setPermissions +92 QFSFileEngine::fileName +96 QFSFileEngine::ownerId +100 QFSFileEngine::owner +104 QFSFileEngine::fileTime +108 QFSFileEngine::setFileName +112 QFSFileEngine::handle +116 QFSFileEngine::beginEntryList +120 QFSFileEngine::endEntryList +124 QFSFileEngine::read +128 QFSFileEngine::readLine +132 QFSFileEngine::write +136 QFSFileEngine::extension +140 QFSFileEngine::supportsExtension + +Class QFSFileEngine + size=8 align=4 + base size=8 base align=4 +QFSFileEngine (0xb5602cc0) 0 + vptr=((& QFSFileEngine::_ZTV13QFSFileEngine) + 8u) + QAbstractFileEngine (0xb566b078) 0 + primary-for QFSFileEngine (0xb5602cc0) + +Vtable for QProcess +QProcess::_ZTV8QProcess: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QProcess) +8 QProcess::metaObject +12 QProcess::qt_metacast +16 QProcess::qt_metacall +20 QProcess::~QProcess +24 QProcess::~QProcess +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QProcess::isSequential +60 QIODevice::open +64 QProcess::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QProcess::atEnd +84 QIODevice::reset +88 QProcess::bytesAvailable +92 QProcess::bytesToWrite +96 QProcess::canReadLine +100 QProcess::waitForReadyRead +104 QProcess::waitForBytesWritten +108 QProcess::readData +112 QIODevice::readLineData +116 QProcess::writeData +120 QProcess::setupChildProcess + +Class QProcess + size=8 align=4 + base size=8 base align=4 +QProcess (0xb5602dc0) 0 + vptr=((& QProcess::_ZTV8QProcess) + 8u) + QIODevice (0xb5602e00) 0 + primary-for QProcess (0xb5602dc0) + QObject (0xb566ba50) 0 + primary-for QIODevice (0xb5602e00) + +Vtable for QSystemLocale +QSystemLocale::_ZTV13QSystemLocale: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSystemLocale) +8 QSystemLocale::~QSystemLocale +12 QSystemLocale::~QSystemLocale +16 QSystemLocale::query +20 QSystemLocale::fallbackLocale + +Class QSystemLocale + size=4 align=4 + base size=4 base align=4 +QSystemLocale (0xb568d474) 0 nearly-empty + vptr=((& QSystemLocale::_ZTV13QSystemLocale) + 8u) + +Class QLocale::Data + size=4 align=2 + base size=4 base align=2 +QLocale::Data (0xb56ae8ac) 0 + +Class QLocale:: + size=4 align=4 + base size=4 base align=4 +QLocale:: (0xb56ae924) 0 + +Class QLocale + size=4 align=4 + base size=4 base align=4 +QLocale (0xb568d690) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb56b412c) 0 empty + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb56b4294) 0 + +Class QResource + size=4 align=4 + base size=4 base align=4 +QResource (0xb54c2690) 0 + +Class QMetaType + size=1 align=1 + base size=0 base align=1 +QMetaType (0xb54c2b7c) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54c2fb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e71a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e7384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e7564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e7744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e7924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e7b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e7ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54e7ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f10b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f1294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f1474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f1654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f1834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f1a14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f1bf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f1dd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f1fb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f61a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f6384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f6564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f6744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f6924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f6b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f6ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54f6ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ff0b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ff294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ff474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ff654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ff834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ffa14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ffbf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54ffdd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb54fffb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55091a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5509384) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5509564) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5509744) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5509924) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5509b04) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5509ce4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5509ec4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550d0b4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550d294) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550d474) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550d654) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550d834) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550da14) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550dbf4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550ddd4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb550dfb4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb55161a4) 0 empty + +Class QMetaTypeId2 + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 (0xb5516384) 0 empty + +Class QVariant::PrivateShared + size=8 align=4 + base size=8 base align=4 +QVariant::PrivateShared (0xb552d21c) 0 + +Class QVariant::Private::Data + size=8 align=4 + base size=8 base align=4 +QVariant::Private::Data (0xb552d3fc) 0 + +Class QVariant::Private + size=12 align=4 + base size=12 base align=4 +QVariant::Private (0xb552d2d0) 0 + +Class QVariant::Handler + size=36 align=4 + base size=36 base align=4 +QVariant::Handler (0xb552dac8) 0 + +Class QVariant + size=12 align=4 + base size=12 base align=4 +QVariant (0xb5516564) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb5552000) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb5547f78) 0 + +Class QMap:: + size=4 align=4 + base size=4 base align=4 +QMap:: (0xb55520f0) 0 + +Class QMap + size=4 align=4 + base size=4 base align=4 +QMap (0xb5552078) 0 + +Class QVariantComparisonHelper + size=4 align=4 + base size=4 base align=4 +QVariantComparisonHelper (0xb5585474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5585a8c) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5585c6c) 0 empty + +Class QMetaTypeId2 > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId2 > (0xb5585e4c) 0 empty + +Vtable for QSettings +QSettings::_ZTV9QSettings: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QSettings) +8 QSettings::metaObject +12 QSettings::qt_metacast +16 QSettings::qt_metacall +20 QSettings::~QSettings +24 QSettings::~QSettings +28 QSettings::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSettings + size=8 align=4 + base size=8 base align=4 +QSettings (0xb55942c0) 0 + vptr=((& QSettings::_ZTV9QSettings) + 8u) + QObject (0xb559a03c) 0 + primary-for QSettings (0xb55942c0) + +Vtable for QTemporaryFile +QTemporaryFile::_ZTV14QTemporaryFile: 31u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QTemporaryFile) +8 QTemporaryFile::metaObject +12 QTemporaryFile::qt_metacast +16 QTemporaryFile::qt_metacall +20 QTemporaryFile::~QTemporaryFile +24 QTemporaryFile::~QTemporaryFile +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QFile::isSequential +60 QTemporaryFile::open +64 QFile::close +68 QFile::pos +72 QFile::size +76 QFile::seek +80 QFile::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 QFile::readData +112 QFile::readLineData +116 QFile::writeData +120 QTemporaryFile::fileEngine + +Class QTemporaryFile + size=8 align=4 + base size=8 base align=4 +QTemporaryFile (0xb5594ec0) 0 + vptr=((& QTemporaryFile::_ZTV14QTemporaryFile) + 8u) + QFile (0xb5594f00) 0 + primary-for QTemporaryFile (0xb5594ec0) + QIODevice (0xb5594f40) 0 + primary-for QFile (0xb5594f00) + QObject (0xb53c7d98) 0 + primary-for QIODevice (0xb5594f40) + +Class QUrl + size=4 align=4 + base size=4 base align=4 +QUrl (0xb53d6f00) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb53e0e10) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb540a8ac) 0 empty + +Vtable for QEventLoop +QEventLoop::_ZTV10QEventLoop: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QEventLoop) +8 QEventLoop::metaObject +12 QEventLoop::qt_metacast +16 QEventLoop::qt_metacall +20 QEventLoop::~QEventLoop +24 QEventLoop::~QEventLoop +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QEventLoop + size=8 align=4 + base size=8 base align=4 +QEventLoop (0xb53dbac0) 0 + vptr=((& QEventLoop::_ZTV10QEventLoop) + 8u) + QObject (0xb5419708) 0 + primary-for QEventLoop (0xb53dbac0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb5419d20) 0 + +Vtable for QAbstractEventDispatcher +QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher: 27u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QAbstractEventDispatcher) +8 QAbstractEventDispatcher::metaObject +12 QAbstractEventDispatcher::qt_metacast +16 QAbstractEventDispatcher::qt_metacall +20 QAbstractEventDispatcher::~QAbstractEventDispatcher +24 QAbstractEventDispatcher::~QAbstractEventDispatcher +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 __cxa_pure_virtual +88 __cxa_pure_virtual +92 __cxa_pure_virtual +96 __cxa_pure_virtual +100 QAbstractEventDispatcher::startingUp +104 QAbstractEventDispatcher::closingDown + +Class QAbstractEventDispatcher + size=8 align=4 + base size=8 base align=4 +QAbstractEventDispatcher (0xb53dbe40) 0 + vptr=((& QAbstractEventDispatcher::_ZTV24QAbstractEventDispatcher) + 8u) + QObject (0xb54390f0) 0 + primary-for QAbstractEventDispatcher (0xb53dbe40) + +Class QModelIndex + size=16 align=4 + base size=16 base align=4 +QModelIndex (0xb5439fb4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5460384) 0 empty + +Class QPersistentModelIndex + size=4 align=4 + base size=4 base align=4 +QPersistentModelIndex (0xb5460474) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5460bb8) 0 empty + +Vtable for QAbstractItemModel +QAbstractItemModel::_ZTV18QAbstractItemModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractItemModel) +8 QAbstractItemModel::metaObject +12 QAbstractItemModel::qt_metacast +16 QAbstractItemModel::qt_metacall +20 QAbstractItemModel::~QAbstractItemModel +24 QAbstractItemModel::~QAbstractItemModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractItemModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractItemModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractItemModel + size=8 align=4 + base size=8 base align=4 +QAbstractItemModel (0xb5449a00) 0 + vptr=((& QAbstractItemModel::_ZTV18QAbstractItemModel) + 8u) + QObject (0xb5460ca8) 0 + primary-for QAbstractItemModel (0xb5449a00) + +Vtable for QAbstractTableModel +QAbstractTableModel::_ZTV19QAbstractTableModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QAbstractTableModel) +8 QAbstractTableModel::metaObject +12 QAbstractTableModel::qt_metacast +16 QAbstractTableModel::qt_metacall +20 QAbstractTableModel::~QAbstractTableModel +24 QAbstractTableModel::~QAbstractTableModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractTableModel::index +60 QAbstractTableModel::parent +64 __cxa_pure_virtual +68 __cxa_pure_virtual +72 QAbstractTableModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractTableModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractTableModel + size=8 align=4 + base size=8 base align=4 +QAbstractTableModel (0xb5449ec0) 0 + vptr=((& QAbstractTableModel::_ZTV19QAbstractTableModel) + 8u) + QAbstractItemModel (0xb5449f00) 0 + primary-for QAbstractTableModel (0xb5449ec0) + QObject (0xb548b834) 0 + primary-for QAbstractItemModel (0xb5449f00) + +Vtable for QAbstractListModel +QAbstractListModel::_ZTV18QAbstractListModel: 42u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QAbstractListModel) +8 QAbstractListModel::metaObject +12 QAbstractListModel::qt_metacast +16 QAbstractListModel::qt_metacall +20 QAbstractListModel::~QAbstractListModel +24 QAbstractListModel::~QAbstractListModel +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractListModel::index +60 QAbstractListModel::parent +64 __cxa_pure_virtual +68 QAbstractListModel::columnCount +72 QAbstractListModel::hasChildren +76 __cxa_pure_virtual +80 QAbstractItemModel::setData +84 QAbstractItemModel::headerData +88 QAbstractItemModel::setHeaderData +92 QAbstractItemModel::itemData +96 QAbstractItemModel::setItemData +100 QAbstractItemModel::mimeTypes +104 QAbstractItemModel::mimeData +108 QAbstractListModel::dropMimeData +112 QAbstractItemModel::supportedDropActions +116 QAbstractItemModel::insertRows +120 QAbstractItemModel::insertColumns +124 QAbstractItemModel::removeRows +128 QAbstractItemModel::removeColumns +132 QAbstractItemModel::fetchMore +136 QAbstractItemModel::canFetchMore +140 QAbstractItemModel::flags +144 QAbstractItemModel::sort +148 QAbstractItemModel::buddy +152 QAbstractItemModel::match +156 QAbstractItemModel::span +160 QAbstractItemModel::submit +164 QAbstractItemModel::revert + +Class QAbstractListModel + size=8 align=4 + base size=8 base align=4 +QAbstractListModel (0xb549a140) 0 + vptr=((& QAbstractListModel::_ZTV18QAbstractListModel) + 8u) + QAbstractItemModel (0xb549a180) 0 + primary-for QAbstractListModel (0xb549a140) + QObject (0xb549d294) 0 + primary-for QAbstractItemModel (0xb549a180) + +Class QBasicTimer + size=4 align=4 + base size=4 base align=4 +QBasicTimer (0xb54aed20) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52b74b0) 0 empty + +Vtable for QEvent +QEvent::_ZTV6QEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QEvent) +8 QEvent::~QEvent +12 QEvent::~QEvent + +Class QEvent + size=12 align=4 + base size=12 base align=4 +QEvent (0xb52b75a0) 0 + vptr=((& QEvent::_ZTV6QEvent) + 8u) + +Vtable for QTimerEvent +QTimerEvent::_ZTV11QTimerEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTimerEvent) +8 QTimerEvent::~QTimerEvent +12 QTimerEvent::~QTimerEvent + +Class QTimerEvent + size=16 align=4 + base size=16 base align=4 +QTimerEvent (0xb549ab80) 0 + vptr=((& QTimerEvent::_ZTV11QTimerEvent) + 8u) + QEvent (0xb52c9294) 0 + primary-for QTimerEvent (0xb549ab80) + +Vtable for QChildEvent +QChildEvent::_ZTV11QChildEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QChildEvent) +8 QChildEvent::~QChildEvent +12 QChildEvent::~QChildEvent + +Class QChildEvent + size=16 align=4 + base size=16 base align=4 +QChildEvent (0xb549ac40) 0 + vptr=((& QChildEvent::_ZTV11QChildEvent) + 8u) + QEvent (0xb52c94ec) 0 + primary-for QChildEvent (0xb549ac40) + +Vtable for QCustomEvent +QCustomEvent::_ZTV12QCustomEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QCustomEvent) +8 QCustomEvent::~QCustomEvent +12 QCustomEvent::~QCustomEvent + +Class QCustomEvent + size=12 align=4 + base size=12 base align=4 +QCustomEvent (0xb549ae00) 0 + vptr=((& QCustomEvent::_ZTV12QCustomEvent) + 8u) + QEvent (0xb52c9d5c) 0 + primary-for QCustomEvent (0xb549ae00) + +Vtable for QDynamicPropertyChangeEvent +QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI27QDynamicPropertyChangeEvent) +8 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent +12 QDynamicPropertyChangeEvent::~QDynamicPropertyChangeEvent + +Class QDynamicPropertyChangeEvent + size=16 align=4 + base size=16 base align=4 +QDynamicPropertyChangeEvent (0xb549af00) 0 + vptr=((& QDynamicPropertyChangeEvent::_ZTV27QDynamicPropertyChangeEvent) + 8u) + QEvent (0xb52d90b4) 0 + primary-for QDynamicPropertyChangeEvent (0xb549af00) + +Vtable for QCoreApplication +QCoreApplication::_ZTV16QCoreApplication: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI16QCoreApplication) +8 QCoreApplication::metaObject +12 QCoreApplication::qt_metacast +16 QCoreApplication::qt_metacall +20 QCoreApplication::~QCoreApplication +24 QCoreApplication::~QCoreApplication +28 QCoreApplication::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QCoreApplication::notify +60 QCoreApplication::compressEvent + +Class QCoreApplication + size=8 align=4 + base size=8 base align=4 +QCoreApplication (0xb549afc0) 0 + vptr=((& QCoreApplication::_ZTV16QCoreApplication) + 8u) + QObject (0xb52d930c) 0 + primary-for QCoreApplication (0xb549afc0) + +Class __exception + size=32 align=4 + base size=32 base align=4 +__exception (0xb52eed5c) 0 + +Class QMetaMethod + size=8 align=4 + base size=8 base align=4 +QMetaMethod (0xb53200f0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb53205a0) 0 empty + +Class QMetaEnum + size=8 align=4 + base size=8 base align=4 +QMetaEnum (0xb5320690) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5320ac8) 0 empty + +Class QMetaProperty + size=20 align=4 + base size=20 base align=4 +QMetaProperty (0xb5320bb8) 0 + +Class QMetaClassInfo + size=8 align=4 + base size=8 base align=4 +QMetaClassInfo (0xb5320ec4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb533621c) 0 empty + +Vtable for QMimeData +QMimeData::_ZTV9QMimeData: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QMimeData) +8 QMimeData::metaObject +12 QMimeData::qt_metacast +16 QMimeData::qt_metacall +20 QMimeData::~QMimeData +24 QMimeData::~QMimeData +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QMimeData::hasFormat +60 QMimeData::formats +64 QMimeData::retrieveData + +Class QMimeData + size=8 align=4 + base size=8 base align=4 +QMimeData (0xb5334240) 0 + vptr=((& QMimeData::_ZTV9QMimeData) + 8u) + QObject (0xb533630c) 0 + primary-for QMimeData (0xb5334240) + +Vtable for QObjectCleanupHandler +QObjectCleanupHandler::_ZTV21QObjectCleanupHandler: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QObjectCleanupHandler) +8 QObjectCleanupHandler::metaObject +12 QObjectCleanupHandler::qt_metacast +16 QObjectCleanupHandler::qt_metacall +20 QObjectCleanupHandler::~QObjectCleanupHandler +24 QObjectCleanupHandler::~QObjectCleanupHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QObjectCleanupHandler + size=12 align=4 + base size=12 base align=4 +QObjectCleanupHandler (0xb5334500) 0 + vptr=((& QObjectCleanupHandler::_ZTV21QObjectCleanupHandler) + 8u) + QObject (0xb5336e88) 0 + primary-for QObjectCleanupHandler (0xb5334500) + +Vtable for QSharedMemory +QSharedMemory::_ZTV13QSharedMemory: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSharedMemory) +8 QSharedMemory::metaObject +12 QSharedMemory::qt_metacast +16 QSharedMemory::qt_metacall +20 QSharedMemory::~QSharedMemory +24 QSharedMemory::~QSharedMemory +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSharedMemory + size=8 align=4 + base size=8 base align=4 +QSharedMemory (0xb5334740) 0 + vptr=((& QSharedMemory::_ZTV13QSharedMemory) + 8u) + QObject (0xb5347708) 0 + primary-for QSharedMemory (0xb5334740) + +Vtable for QSignalMapper +QSignalMapper::_ZTV13QSignalMapper: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QSignalMapper) +8 QSignalMapper::metaObject +12 QSignalMapper::qt_metacast +16 QSignalMapper::qt_metacall +20 QSignalMapper::~QSignalMapper +24 QSignalMapper::~QSignalMapper +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSignalMapper + size=8 align=4 + base size=8 base align=4 +QSignalMapper (0xb5334a00) 0 + vptr=((& QSignalMapper::_ZTV13QSignalMapper) + 8u) + QObject (0xb535a4ec) 0 + primary-for QSignalMapper (0xb5334a00) + +Vtable for QSocketNotifier +QSocketNotifier::_ZTV15QSocketNotifier: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QSocketNotifier) +8 QSocketNotifier::metaObject +12 QSocketNotifier::qt_metacast +16 QSocketNotifier::qt_metacall +20 QSocketNotifier::~QSocketNotifier +24 QSocketNotifier::~QSocketNotifier +28 QSocketNotifier::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QSocketNotifier + size=20 align=4 + base size=17 base align=4 +QSocketNotifier (0xb5334cc0) 0 + vptr=((& QSocketNotifier::_ZTV15QSocketNotifier) + 8u) + QObject (0xb5364654) 0 + primary-for QSocketNotifier (0xb5334cc0) + +Class QSystemSemaphore + size=4 align=4 + base size=4 base align=4 +QSystemSemaphore (0xb53736cc) 0 + +Vtable for QTimer +QTimer::_ZTV6QTimer: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI6QTimer) +8 QTimer::metaObject +12 QTimer::qt_metacast +16 QTimer::qt_metacall +20 QTimer::~QTimer +24 QTimer::~QTimer +28 QObject::event +32 QObject::eventFilter +36 QTimer::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QTimer + size=24 align=4 + base size=21 base align=4 +QTimer (0xb5376040) 0 + vptr=((& QTimer::_ZTV6QTimer) + 8u) + QObject (0xb5373bf4) 0 + primary-for QTimer (0xb5376040) + +Vtable for QTranslator +QTranslator::_ZTV11QTranslator: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QTranslator) +8 QTranslator::metaObject +12 QTranslator::qt_metacast +16 QTranslator::qt_metacall +20 QTranslator::~QTranslator +24 QTranslator::~QTranslator +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTranslator::translate +60 QTranslator::isEmpty + +Class QTranslator + size=8 align=4 + base size=8 base align=4 +QTranslator (0xb53764c0) 0 + vptr=((& QTranslator::_ZTV11QTranslator) + 8u) + QObject (0xb537fd5c) 0 + primary-for QTranslator (0xb53764c0) + +Vtable for QLibrary +QLibrary::_ZTV8QLibrary: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QLibrary) +8 QLibrary::metaObject +12 QLibrary::qt_metacast +16 QLibrary::qt_metacall +20 QLibrary::~QLibrary +24 QLibrary::~QLibrary +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QLibrary + size=16 align=4 + base size=13 base align=4 +QLibrary (0xb53767c0) 0 + vptr=((& QLibrary::_ZTV8QLibrary) + 8u) + QObject (0xb5392b7c) 0 + primary-for QLibrary (0xb53767c0) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb53a2ac8) 0 + +Vtable for QPluginLoader +QPluginLoader::_ZTV13QPluginLoader: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QPluginLoader) +8 QPluginLoader::metaObject +12 QPluginLoader::qt_metacast +16 QPluginLoader::qt_metacall +20 QPluginLoader::~QPluginLoader +24 QPluginLoader::~QPluginLoader +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QPluginLoader + size=16 align=4 + base size=13 base align=4 +QPluginLoader (0xb5376b40) 0 + vptr=((& QPluginLoader::_ZTV13QPluginLoader) + 8u) + QObject (0xb51b1654) 0 + primary-for QPluginLoader (0xb5376b40) + +Class QUuid + size=16 align=4 + base size=16 base align=4 +QUuid (0xb51c421c) 0 + +Class QReadWriteLock + size=4 align=4 + base size=4 base align=4 +QReadWriteLock (0xb51d8078) 0 + +Class QReadLocker:: + size=4 align=4 + base size=4 base align=4 +QReadLocker:: (0xb51d8708) 0 + +Class QReadLocker + size=4 align=4 + base size=4 base align=4 +QReadLocker (0xb51d83fc) 0 + +Class QWriteLocker:: + size=4 align=4 + base size=4 base align=4 +QWriteLocker:: (0xb51e5bf4) 0 + +Class QWriteLocker + size=4 align=4 + base size=4 base align=4 +QWriteLocker (0xb51e58e8) 0 + +Class QSemaphore + size=4 align=4 + base size=4 base align=4 +QSemaphore (0xb51ecdd4) 0 + +Class QThreadStorageData + size=4 align=4 + base size=4 base align=4 +QThreadStorageData (0xb51f30b4) 0 + +Class QBitArray + size=4 align=4 + base size=4 base align=4 +QBitArray (0xb51f34b0) 0 + +Class QBitRef + size=8 align=4 + base size=8 base align=4 +QBitRef (0xb522d1e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb522dec4) 0 empty + +Class QByteArrayMatcher + size=1032 align=4 + base size=1032 base align=4 +QByteArrayMatcher (0xb5239168) 0 + +Class QCryptographicHash + size=4 align=4 + base size=4 base align=4 +QCryptographicHash (0xb5239b40) 0 + +Class QDate + size=4 align=4 + base size=4 base align=4 +QDate (0xb5239ec4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb526b870) 0 empty + +Class QTime + size=4 align=4 + base size=4 base align=4 +QTime (0xb526b960) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb5273f3c) 0 empty + +Class QDateTime + size=4 align=4 + base size=4 base align=4 +QDateTime (0xb5273384) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb52866cc) 0 empty + +Class QPoint + size=8 align=4 + base size=8 base align=4 +QPoint (0xb52868ac) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb529d708) 0 empty + +Class QPointF + size=16 align=4 + base size=16 base align=4 +QPointF (0xb508b8ac) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb509a7bc) 0 empty + +Class QLine + size=16 align=4 + base size=16 base align=4 +QLine (0xb50ad870) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50adc30) 0 empty + +Class QLineF + size=32 align=4 + base size=32 base align=4 +QLineF (0xb50ced98) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50db7bc) 0 empty + +Class QLinkedListData + size=20 align=4 + base size=20 base align=4 +QLinkedListData (0xb51023fc) 0 + +Class QSize + size=8 align=4 + base size=8 base align=4 +QSize (0xb5166708) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb51797bc) 0 empty + +Class QSizeF + size=16 align=4 + base size=16 base align=4 +QSizeF (0xb4f95384) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f9e3fc) 0 empty + +Class QRect + size=16 align=4 + base size=16 base align=4 +QRect (0xb4fbe1e0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4fd90b4) 0 empty + +Class QRectF + size=32 align=4 + base size=32 base align=4 +QRectF (0xb5014ca8) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb50371a4) 0 empty + +Class QSharedData + size=4 align=4 + base size=4 base align=4 +QSharedData (0xb5070870) 0 + +Class QTextBoundaryFinder + size=28 align=4 + base size=28 base align=4 +QTextBoundaryFinder (0xb5084a8c) 0 + +Vtable for QTimeLine +QTimeLine::_ZTV9QTimeLine: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI9QTimeLine) +8 QTimeLine::metaObject +12 QTimeLine::qt_metacast +16 QTimeLine::qt_metacall +20 QTimeLine::~QTimeLine +24 QTimeLine::~QTimeLine +28 QObject::event +32 QObject::eventFilter +36 QTimeLine::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTimeLine::valueForTime + +Class QTimeLine + size=8 align=4 + base size=8 base align=4 +QTimeLine (0xb4e947c0) 0 + vptr=((& QTimeLine::_ZTV9QTimeLine) + 8u) + QObject (0xb4e9f438) 0 + primary-for QTimeLine (0xb4e947c0) + +Class QXmlStreamStringRef + size=12 align=4 + base size=12 base align=4 +QXmlStreamStringRef (0xb4eb17f8) 0 + +Class QXmlStreamAttribute + size=56 align=4 + base size=53 base align=4 +QXmlStreamAttribute (0xb4ed599c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4edef3c) 0 empty + +Class QVector:: + size=4 align=4 + base size=4 base align=4 +QVector:: (0xb4eef078) 0 + +Class QVector + size=4 align=4 + base size=4 base align=4 +QVector (0xb4eef000) 0 + +Class QXmlStreamAttributes + size=4 align=4 + base size=4 base align=4 +QXmlStreamAttributes (0xb4ee0240) 0 + QVector (0xb4eef0b4) 0 + +Class QXmlStreamNamespaceDeclaration + size=28 align=4 + base size=28 base align=4 +QXmlStreamNamespaceDeclaration (0xb4eef0f0) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4eefb04) 0 empty + +Class QXmlStreamNotationDeclaration + size=40 align=4 + base size=40 base align=4 +QXmlStreamNotationDeclaration (0xb4eefc30) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f0f7f8) 0 empty + +Class QXmlStreamEntityDeclaration + size=64 align=4 + base size=64 base align=4 +QXmlStreamEntityDeclaration (0xb4f0f924) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4f218ac) 0 empty + +Vtable for QXmlStreamEntityResolver +QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver: 6u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI24QXmlStreamEntityResolver) +8 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +12 QXmlStreamEntityResolver::~QXmlStreamEntityResolver +16 QXmlStreamEntityResolver::resolveEntity +20 QXmlStreamEntityResolver::resolveUndeclaredEntity + +Class QXmlStreamEntityResolver + size=4 align=4 + base size=4 base align=4 +QXmlStreamEntityResolver (0xb4f219d8) 0 nearly-empty + vptr=((& QXmlStreamEntityResolver::_ZTV24QXmlStreamEntityResolver) + 8u) + +Class QXmlStreamReader + size=4 align=4 + base size=4 base align=4 +QXmlStreamReader (0xb4f21b7c) 0 + +Class QXmlStreamWriter + size=4 align=4 + base size=4 base align=4 +QXmlStreamWriter (0xb4f52168) 0 + +Vtable for QUrlInfo +QUrlInfo::_ZTV8QUrlInfo: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI8QUrlInfo) +8 QUrlInfo::~QUrlInfo +12 QUrlInfo::~QUrlInfo +16 QUrlInfo::setName +20 QUrlInfo::setDir +24 QUrlInfo::setFile +28 QUrlInfo::setSymLink +32 QUrlInfo::setOwner +36 QUrlInfo::setGroup +40 QUrlInfo::setSize +44 QUrlInfo::setWritable +48 QUrlInfo::setReadable +52 QUrlInfo::setPermissions +56 QUrlInfo::setLastModified + +Class QUrlInfo + size=8 align=4 + base size=8 base align=4 +QUrlInfo (0xb4f52744) 0 + vptr=((& QUrlInfo::_ZTV8QUrlInfo) + 8u) + +Vtable for QFtp +QFtp::_ZTV4QFtp: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI4QFtp) +8 QFtp::metaObject +12 QFtp::qt_metacast +16 QFtp::qt_metacall +20 QFtp::~QFtp +24 QFtp::~QFtp +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QFtp + size=8 align=4 + base size=8 base align=4 +QFtp (0xb4ee0ec0) 0 + vptr=((& QFtp::_ZTV4QFtp) + 8u) + QObject (0xb4f66000) 0 + primary-for QFtp (0xb4ee0ec0) + +Vtable for QHttpHeader +QHttpHeader::_ZTV11QHttpHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI11QHttpHeader) +8 QHttpHeader::~QHttpHeader +12 QHttpHeader::~QHttpHeader +16 QHttpHeader::toString +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 QHttpHeader::parseLine + +Class QHttpHeader + size=8 align=4 + base size=8 base align=4 +QHttpHeader (0xb4f7d294) 0 + vptr=((& QHttpHeader::_ZTV11QHttpHeader) + 8u) + +Vtable for QHttpResponseHeader +QHttpResponseHeader::_ZTV19QHttpResponseHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QHttpResponseHeader) +8 QHttpResponseHeader::~QHttpResponseHeader +12 QHttpResponseHeader::~QHttpResponseHeader +16 QHttpResponseHeader::toString +20 QHttpResponseHeader::majorVersion +24 QHttpResponseHeader::minorVersion +28 QHttpResponseHeader::parseLine + +Class QHttpResponseHeader + size=8 align=4 + base size=8 base align=4 +QHttpResponseHeader (0xb4f772c0) 0 + vptr=((& QHttpResponseHeader::_ZTV19QHttpResponseHeader) + 8u) + QHttpHeader (0xb4f7d99c) 0 + primary-for QHttpResponseHeader (0xb4f772c0) + +Vtable for QHttpRequestHeader +QHttpRequestHeader::_ZTV18QHttpRequestHeader: 8u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI18QHttpRequestHeader) +8 QHttpRequestHeader::~QHttpRequestHeader +12 QHttpRequestHeader::~QHttpRequestHeader +16 QHttpRequestHeader::toString +20 QHttpRequestHeader::majorVersion +24 QHttpRequestHeader::minorVersion +28 QHttpRequestHeader::parseLine + +Class QHttpRequestHeader + size=8 align=4 + base size=8 base align=4 +QHttpRequestHeader (0xb4f773c0) 0 + vptr=((& QHttpRequestHeader::_ZTV18QHttpRequestHeader) + 8u) + QHttpHeader (0xb4f7d744) 0 + primary-for QHttpRequestHeader (0xb4f773c0) + +Vtable for QHttp +QHttp::_ZTV5QHttp: 14u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI5QHttp) +8 QHttp::metaObject +12 QHttp::qt_metacast +16 QHttp::qt_metacall +20 QHttp::~QHttp +24 QHttp::~QHttp +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify + +Class QHttp + size=8 align=4 + base size=8 base align=4 +QHttp (0xb4f774c0) 0 + vptr=((& QHttp::_ZTV5QHttp) + 8u) + QObject (0xb4d8a564) 0 + primary-for QHttp (0xb4f774c0) + +Vtable for QNetworkAccessManager +QNetworkAccessManager::_ZTV21QNetworkAccessManager: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QNetworkAccessManager) +8 QNetworkAccessManager::metaObject +12 QNetworkAccessManager::qt_metacast +16 QNetworkAccessManager::qt_metacall +20 QNetworkAccessManager::~QNetworkAccessManager +24 QNetworkAccessManager::~QNetworkAccessManager +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QNetworkAccessManager::createRequest + +Class QNetworkAccessManager + size=8 align=4 + base size=8 base align=4 +QNetworkAccessManager (0xb4f777c0) 0 + vptr=((& QNetworkAccessManager::_ZTV21QNetworkAccessManager) + 8u) + QObject (0xb4da3564) 0 + primary-for QNetworkAccessManager (0xb4f777c0) + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb4db5564) 0 + +Class QNetworkCookie + size=4 align=4 + base size=4 base align=4 +QNetworkCookie (0xb4da3f3c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4db5780) 0 empty + +Vtable for QNetworkCookieJar +QNetworkCookieJar::_ZTV17QNetworkCookieJar: 16u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI17QNetworkCookieJar) +8 QNetworkCookieJar::metaObject +12 QNetworkCookieJar::qt_metacast +16 QNetworkCookieJar::qt_metacall +20 QNetworkCookieJar::~QNetworkCookieJar +24 QNetworkCookieJar::~QNetworkCookieJar +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QNetworkCookieJar::cookiesForUrl +60 QNetworkCookieJar::setCookiesFromUrl + +Class QNetworkCookieJar + size=8 align=4 + base size=8 base align=4 +QNetworkCookieJar (0xb4f77c00) 0 + vptr=((& QNetworkCookieJar::_ZTV17QNetworkCookieJar) + 8u) + QObject (0xb4db5870) 0 + primary-for QNetworkCookieJar (0xb4f77c00) + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4dcc3c0) 0 empty + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb4dcc564) 0 empty + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb4dccbf4) 0 + +Class QNetworkRequest + size=4 align=4 + base size=4 base align=4 +QNetworkRequest (0xb4dcc708) 0 + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4dccdd4) 0 empty + +Vtable for QNetworkReply +QNetworkReply::_ZTV13QNetworkReply: 33u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QNetworkReply) +8 QNetworkReply::metaObject +12 QNetworkReply::qt_metacast +16 QNetworkReply::qt_metacall +20 QNetworkReply::~QNetworkReply +24 QNetworkReply::~QNetworkReply +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QNetworkReply::isSequential +60 QIODevice::open +64 QNetworkReply::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QIODevice::bytesAvailable +92 QIODevice::bytesToWrite +96 QIODevice::canReadLine +100 QIODevice::waitForReadyRead +104 QIODevice::waitForBytesWritten +108 __cxa_pure_virtual +112 QIODevice::readLineData +116 QNetworkReply::writeData +120 __cxa_pure_virtual +124 QNetworkReply::setReadBufferSize +128 QNetworkReply::ignoreSslErrors + +Class QNetworkReply + size=8 align=4 + base size=8 base align=4 +QNetworkReply (0xb4dcf340) 0 + vptr=((& QNetworkReply::_ZTV13QNetworkReply) + 8u) + QIODevice (0xb4dcf380) 0 + primary-for QNetworkReply (0xb4dcf340) + QObject (0xb4dccf78) 0 + primary-for QIODevice (0xb4dcf380) + +Class QAuthenticator + size=4 align=4 + base size=4 base align=4 +QAuthenticator (0xb4de5ca8) 0 + +Vtable for QAbstractSocket +QAbstractSocket::_ZTV15QAbstractSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QAbstractSocket) +8 QAbstractSocket::metaObject +12 QAbstractSocket::qt_metacast +16 QAbstractSocket::qt_metacall +20 QAbstractSocket::~QAbstractSocket +24 QAbstractSocket::~QAbstractSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QAbstractSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QAbstractSocket::atEnd +84 QIODevice::reset +88 QAbstractSocket::bytesAvailable +92 QAbstractSocket::bytesToWrite +96 QAbstractSocket::canReadLine +100 QAbstractSocket::waitForReadyRead +104 QAbstractSocket::waitForBytesWritten +108 QAbstractSocket::readData +112 QAbstractSocket::readLineData +116 QAbstractSocket::writeData + +Class QAbstractSocket + size=8 align=4 + base size=8 base align=4 +QAbstractSocket (0xb4dcf6c0) 0 + vptr=((& QAbstractSocket::_ZTV15QAbstractSocket) + 8u) + QIODevice (0xb4dcf700) 0 + primary-for QAbstractSocket (0xb4dcf6c0) + QObject (0xb4df30f0) 0 + primary-for QIODevice (0xb4dcf700) + +Class QIPv6Address + size=16 align=1 + base size=16 base align=1 +QIPv6Address (0xb4e12168) 0 + +Class QHostAddress + size=4 align=4 + base size=4 base align=4 +QHostAddress (0xb4e12438) 0 + +Class QHostInfo + size=4 align=4 + base size=4 base align=4 +QHostInfo (0xb4e1d618) 0 + +Class QNetworkAddressEntry + size=4 align=4 + base size=4 base align=4 +QNetworkAddressEntry (0xb4e1da8c) 0 + +Class QSharedDataPointer + size=4 align=4 + base size=4 base align=4 +QSharedDataPointer (0xb4e2d618) 0 + +Class QNetworkInterface + size=4 align=4 + base size=4 base align=4 +QNetworkInterface (0xb4e1dd5c) 0 + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4e2d744) 0 + +Class QNetworkProxy + size=4 align=4 + base size=4 base align=4 +QNetworkProxy (0xb4e432d0) 0 + +Vtable for QLocalServer +QLocalServer::_ZTV12QLocalServer: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QLocalServer) +8 QLocalServer::metaObject +12 QLocalServer::qt_metacast +16 QLocalServer::qt_metacall +20 QLocalServer::~QLocalServer +24 QLocalServer::~QLocalServer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLocalServer::hasPendingConnections +60 QLocalServer::nextPendingConnection +64 QLocalServer::incomingConnection + +Class QLocalServer + size=8 align=4 + base size=8 base align=4 +QLocalServer (0xb4e4a100) 0 + vptr=((& QLocalServer::_ZTV12QLocalServer) + 8u) + QObject (0xb4e43e4c) 0 + primary-for QLocalServer (0xb4e4a100) + +Vtable for QLocalSocket +QLocalSocket::_ZTV12QLocalSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI12QLocalSocket) +8 QLocalSocket::metaObject +12 QLocalSocket::qt_metacast +16 QLocalSocket::qt_metacall +20 QLocalSocket::~QLocalSocket +24 QLocalSocket::~QLocalSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QLocalSocket::isSequential +60 QIODevice::open +64 QLocalSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QIODevice::atEnd +84 QIODevice::reset +88 QLocalSocket::bytesAvailable +92 QLocalSocket::bytesToWrite +96 QLocalSocket::canReadLine +100 QLocalSocket::waitForReadyRead +104 QLocalSocket::waitForBytesWritten +108 QLocalSocket::readData +112 QIODevice::readLineData +116 QLocalSocket::writeData + +Class QLocalSocket + size=8 align=4 + base size=8 base align=4 +QLocalSocket (0xb4e4a3c0) 0 + vptr=((& QLocalSocket::_ZTV12QLocalSocket) + 8u) + QIODevice (0xb4e4a400) 0 + primary-for QLocalSocket (0xb4e4a3c0) + QObject (0xb4e59ac8) 0 + primary-for QIODevice (0xb4e4a400) + +Vtable for QTcpServer +QTcpServer::_ZTV10QTcpServer: 17u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTcpServer) +8 QTcpServer::metaObject +12 QTcpServer::qt_metacast +16 QTcpServer::qt_metacall +20 QTcpServer::~QTcpServer +24 QTcpServer::~QTcpServer +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QTcpServer::hasPendingConnections +60 QTcpServer::nextPendingConnection +64 QTcpServer::incomingConnection + +Class QTcpServer + size=8 align=4 + base size=8 base align=4 +QTcpServer (0xb4e4a6c0) 0 + vptr=((& QTcpServer::_ZTV10QTcpServer) + 8u) + QObject (0xb4e7430c) 0 + primary-for QTcpServer (0xb4e4a6c0) + +Vtable for QTcpSocket +QTcpSocket::_ZTV10QTcpSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QTcpSocket) +8 QTcpSocket::metaObject +12 QTcpSocket::qt_metacast +16 QTcpSocket::qt_metacall +20 QTcpSocket::~QTcpSocket +24 QTcpSocket::~QTcpSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QAbstractSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QAbstractSocket::atEnd +84 QIODevice::reset +88 QAbstractSocket::bytesAvailable +92 QAbstractSocket::bytesToWrite +96 QAbstractSocket::canReadLine +100 QAbstractSocket::waitForReadyRead +104 QAbstractSocket::waitForBytesWritten +108 QAbstractSocket::readData +112 QAbstractSocket::readLineData +116 QAbstractSocket::writeData + +Class QTcpSocket + size=8 align=4 + base size=8 base align=4 +QTcpSocket (0xb4e4a980) 0 + vptr=((& QTcpSocket::_ZTV10QTcpSocket) + 8u) + QAbstractSocket (0xb4e4a9c0) 0 + primary-for QTcpSocket (0xb4e4a980) + QIODevice (0xb4e4aa00) 0 + primary-for QAbstractSocket (0xb4e4a9c0) + QObject (0xb4e747f8) 0 + primary-for QIODevice (0xb4e4aa00) + +Vtable for QUdpSocket +QUdpSocket::_ZTV10QUdpSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QUdpSocket) +8 QUdpSocket::metaObject +12 QUdpSocket::qt_metacast +16 QUdpSocket::qt_metacall +20 QUdpSocket::~QUdpSocket +24 QUdpSocket::~QUdpSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QAbstractSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QAbstractSocket::atEnd +84 QIODevice::reset +88 QAbstractSocket::bytesAvailable +92 QAbstractSocket::bytesToWrite +96 QAbstractSocket::canReadLine +100 QAbstractSocket::waitForReadyRead +104 QAbstractSocket::waitForBytesWritten +108 QAbstractSocket::readData +112 QAbstractSocket::readLineData +116 QAbstractSocket::writeData + +Class QUdpSocket + size=8 align=4 + base size=8 base align=4 +QUdpSocket (0xb4e4acc0) 0 + vptr=((& QUdpSocket::_ZTV10QUdpSocket) + 8u) + QAbstractSocket (0xb4e4ad00) 0 + primary-for QUdpSocket (0xb4e4acc0) + QIODevice (0xb4e4ad40) 0 + primary-for QAbstractSocket (0xb4e4ad00) + QObject (0xb4e84bf4) 0 + primary-for QIODevice (0xb4e4ad40) + +Class QFlags + size=4 align=4 + base size=4 base align=4 +QFlags (0xb4c93ac8) 0 + +Class QSslCertificate + size=4 align=4 + base size=4 base align=4 +QSslCertificate (0xb4ca5654) 0 + +Class QSslCipher + size=4 align=4 + base size=4 base align=4 +QSslCipher (0xb4cb8438) 0 + +Class QSslError + size=4 align=4 + base size=4 base align=4 +QSslError (0xb4cb88e8) 0 + +Vtable for QSslSocket +QSslSocket::_ZTV10QSslSocket: 30u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI10QSslSocket) +8 QSslSocket::metaObject +12 QSslSocket::qt_metacast +16 QSslSocket::qt_metacall +20 QSslSocket::~QSslSocket +24 QSslSocket::~QSslSocket +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 QAbstractSocket::isSequential +60 QIODevice::open +64 QSslSocket::close +68 QIODevice::pos +72 QIODevice::size +76 QIODevice::seek +80 QSslSocket::atEnd +84 QIODevice::reset +88 QSslSocket::bytesAvailable +92 QSslSocket::bytesToWrite +96 QSslSocket::canReadLine +100 QSslSocket::waitForReadyRead +104 QSslSocket::waitForBytesWritten +108 QSslSocket::readData +112 QAbstractSocket::readLineData +116 QSslSocket::writeData + +Class QSslSocket + size=8 align=4 + base size=8 base align=4 +QSslSocket (0xb4c9c2c0) 0 + vptr=((& QSslSocket::_ZTV10QSslSocket) + 8u) + QTcpSocket (0xb4c9c300) 0 + primary-for QSslSocket (0xb4c9c2c0) + QAbstractSocket (0xb4c9c340) 0 + primary-for QTcpSocket (0xb4c9c300) + QIODevice (0xb4c9c380) 0 + primary-for QAbstractSocket (0xb4c9c340) + QObject (0xb4cc4000) 0 + primary-for QIODevice (0xb4c9c380) + +Class QMetaTypeId > + size=1 align=1 + base size=0 base align=1 +QMetaTypeId > (0xb4cdc3fc) 0 empty + +Class QSslConfiguration + size=4 align=4 + base size=4 base align=4 +QSslConfiguration (0xb4cdc5a0) 0 + +Class QSslKey + size=4 align=4 + base size=4 base align=4 +QSslKey (0xb4cdcc30) 0 + +Class QSourceLocation:: + size=8 align=4 + base size=8 base align=4 +QSourceLocation:: (0xb4ceb654) 0 + +Class QSourceLocation + size=20 align=4 + base size=20 base align=4 +QSourceLocation (0xb4ceb21c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4ceb690) 0 empty + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4ceb780) 0 empty + +Vtable for QAbstractMessageHandler +QAbstractMessageHandler::_ZTV23QAbstractMessageHandler: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI23QAbstractMessageHandler) +8 QAbstractMessageHandler::metaObject +12 QAbstractMessageHandler::qt_metacast +16 QAbstractMessageHandler::qt_metacall +20 QAbstractMessageHandler::~QAbstractMessageHandler +24 QAbstractMessageHandler::~QAbstractMessageHandler +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual + +Class QAbstractMessageHandler + size=8 align=4 + base size=8 base align=4 +QAbstractMessageHandler (0xb4c9cb00) 0 + vptr=((& QAbstractMessageHandler::_ZTV23QAbstractMessageHandler) + 8u) + QObject (0xb4ceb924) 0 + primary-for QAbstractMessageHandler (0xb4c9cb00) + +Vtable for QAbstractUriResolver +QAbstractUriResolver::_ZTV20QAbstractUriResolver: 15u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAbstractUriResolver) +8 QAbstractUriResolver::metaObject +12 QAbstractUriResolver::qt_metacast +16 QAbstractUriResolver::qt_metacall +20 QAbstractUriResolver::~QAbstractUriResolver +24 QAbstractUriResolver::~QAbstractUriResolver +28 QObject::event +32 QObject::eventFilter +36 QObject::timerEvent +40 QObject::childEvent +44 QObject::customEvent +48 QObject::connectNotify +52 QObject::disconnectNotify +56 __cxa_pure_virtual + +Class QAbstractUriResolver + size=8 align=4 + base size=8 base align=4 +QAbstractUriResolver (0xb4c9cdc0) 0 + vptr=((& QAbstractUriResolver::_ZTV20QAbstractUriResolver) + 8u) + QObject (0xb4cfd528) 0 + primary-for QAbstractUriResolver (0xb4c9cdc0) + +Class QXmlName + size=8 align=4 + base size=8 base align=4 +QXmlName (0xb4d0d0b4) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4d0fec4) 0 empty + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4d0ffb4) 0 empty + +Class QPatternist::NodeIndexStorage:: + size=8 align=4 + base size=8 base align=4 +QPatternist::NodeIndexStorage:: (0xb4d1b1a4) 0 + +Class QPatternist::NodeIndexStorage + size=20 align=4 + base size=20 base align=4 +QPatternist::NodeIndexStorage (0xb4d1b12c) 0 + +Class QXmlNodeModelIndex + size=20 align=4 + base size=20 base align=4 +QXmlNodeModelIndex (0xb4d1b3c0) 0 + +Vtable for QAbstractXmlNodeModel +QAbstractXmlNodeModel::_ZTV21QAbstractXmlNodeModel: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI21QAbstractXmlNodeModel) +8 QAbstractXmlNodeModel::~QAbstractXmlNodeModel +12 QAbstractXmlNodeModel::~QAbstractXmlNodeModel +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 QAbstractXmlNodeModel::iterate +52 QAbstractXmlNodeModel::sequencedTypedValue +56 QAbstractXmlNodeModel::type +60 QAbstractXmlNodeModel::namespaceForPrefix +64 QAbstractXmlNodeModel::isDeepEqual +68 QAbstractXmlNodeModel::sendNamespaces +72 __cxa_pure_virtual +76 __cxa_pure_virtual +80 __cxa_pure_virtual +84 QAbstractXmlNodeModel::copyNodeTo +88 __cxa_pure_virtual +92 __cxa_pure_virtual + +Class QAbstractXmlNodeModel + size=12 align=4 + base size=12 base align=4 +QAbstractXmlNodeModel (0xb4d0c900) 0 + vptr=((& QAbstractXmlNodeModel::_ZTV21QAbstractXmlNodeModel) + 8u) + QSharedData (0xb4d42b04) 4 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4d4a8ac) 0 empty + +Class QXmlItem:: + size=20 align=4 + base size=20 base align=4 +QXmlItem:: (0xb4d4aec4) 0 + +Class QXmlItem + size=20 align=4 + base size=20 base align=4 +QXmlItem (0xb4d4a99c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4d4af78) 0 empty + +Class QMetaTypeId + size=1 align=1 + base size=0 base align=1 +QMetaTypeId (0xb4d5b03c) 0 empty + +Vtable for QAbstractXmlReceiver +QAbstractXmlReceiver::_ZTV20QAbstractXmlReceiver: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI20QAbstractXmlReceiver) +8 QAbstractXmlReceiver::~QAbstractXmlReceiver +12 QAbstractXmlReceiver::~QAbstractXmlReceiver +16 __cxa_pure_virtual +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 __cxa_pure_virtual +44 __cxa_pure_virtual +48 __cxa_pure_virtual +52 __cxa_pure_virtual +56 __cxa_pure_virtual +60 __cxa_pure_virtual +64 QAbstractXmlReceiver::whitespaceOnly +68 QAbstractXmlReceiver::item + +Class QAbstractXmlReceiver + size=8 align=4 + base size=8 base align=4 +QAbstractXmlReceiver (0xb4d5b1e0) 0 + vptr=((& QAbstractXmlReceiver::_ZTV20QAbstractXmlReceiver) + 8u) + +Class QXmlQuery + size=4 align=4 + base size=4 base align=4 +QXmlQuery (0xb4d5b690) 0 + +Vtable for QSimpleXmlNodeModel +QSimpleXmlNodeModel::_ZTV19QSimpleXmlNodeModel: 24u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI19QSimpleXmlNodeModel) +8 QSimpleXmlNodeModel::~QSimpleXmlNodeModel +12 QSimpleXmlNodeModel::~QSimpleXmlNodeModel +16 QSimpleXmlNodeModel::baseUri +20 __cxa_pure_virtual +24 __cxa_pure_virtual +28 __cxa_pure_virtual +32 __cxa_pure_virtual +36 __cxa_pure_virtual +40 QSimpleXmlNodeModel::stringValue +44 __cxa_pure_virtual +48 QAbstractXmlNodeModel::iterate +52 QAbstractXmlNodeModel::sequencedTypedValue +56 QAbstractXmlNodeModel::type +60 QAbstractXmlNodeModel::namespaceForPrefix +64 QAbstractXmlNodeModel::isDeepEqual +68 QAbstractXmlNodeModel::sendNamespaces +72 QSimpleXmlNodeModel::namespaceBindings +76 QSimpleXmlNodeModel::elementById +80 QSimpleXmlNodeModel::nodesByIdref +84 QAbstractXmlNodeModel::copyNodeTo +88 __cxa_pure_virtual +92 __cxa_pure_virtual + +Class QSimpleXmlNodeModel + size=12 align=4 + base size=12 base align=4 +QSimpleXmlNodeModel (0xb4d0ce80) 0 + vptr=((& QSimpleXmlNodeModel::_ZTV19QSimpleXmlNodeModel) + 8u) + QAbstractXmlNodeModel (0xb4d0cec0) 0 + primary-for QSimpleXmlNodeModel (0xb4d0ce80) + QSharedData (0xb4d5ba50) 4 + +Vtable for QXmlSerializer +QXmlSerializer::_ZTV14QXmlSerializer: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI14QXmlSerializer) +8 QXmlSerializer::~QXmlSerializer +12 QXmlSerializer::~QXmlSerializer +16 QXmlSerializer::startElement +20 QXmlSerializer::endElement +24 QXmlSerializer::attribute +28 QXmlSerializer::comment +32 QXmlSerializer::characters +36 QXmlSerializer::startDocument +40 QXmlSerializer::endDocument +44 QXmlSerializer::processingInstruction +48 QXmlSerializer::atomicValue +52 QXmlSerializer::namespaceBinding +56 QXmlSerializer::startOfSequence +60 QXmlSerializer::endOfSequence +64 QAbstractXmlReceiver::whitespaceOnly +68 QXmlSerializer::item + +Class QXmlSerializer + size=8 align=4 + base size=8 base align=4 +QXmlSerializer (0xb4d0cfc0) 0 + vptr=((& QXmlSerializer::_ZTV14QXmlSerializer) + 8u) + QAbstractXmlReceiver (0xb4d5bd98) 0 + primary-for QXmlSerializer (0xb4d0cfc0) + +Vtable for QXmlFormatter +QXmlFormatter::_ZTV13QXmlFormatter: 18u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI13QXmlFormatter) +8 QXmlFormatter::~QXmlFormatter +12 QXmlFormatter::~QXmlFormatter +16 QXmlFormatter::startElement +20 QXmlFormatter::endElement +24 QXmlFormatter::attribute +28 QXmlFormatter::comment +32 QXmlFormatter::characters +36 QXmlFormatter::startDocument +40 QXmlFormatter::endDocument +44 QXmlFormatter::processingInstruction +48 QXmlFormatter::atomicValue +52 QXmlSerializer::namespaceBinding +56 QXmlFormatter::startOfSequence +60 QXmlFormatter::endOfSequence +64 QAbstractXmlReceiver::whitespaceOnly +68 QXmlFormatter::item + +Class QXmlFormatter + size=8 align=4 + base size=8 base align=4 +QXmlFormatter (0xb4d710c0) 0 + vptr=((& QXmlFormatter::_ZTV13QXmlFormatter) + 8u) + QXmlSerializer (0xb4d71100) 0 + primary-for QXmlFormatter (0xb4d710c0) + QAbstractXmlReceiver (0xb4d7603c) 0 + primary-for QXmlSerializer (0xb4d71100) + +Class QExplicitlySharedDataPointer + size=4 align=4 + base size=4 base align=4 +QExplicitlySharedDataPointer (0xb4d76654) 0 + +Class QXmlNamePool + size=4 align=4 + base size=4 base align=4 +QXmlNamePool (0xb4d76348) 0 + +Vtable for QXmlResultItems +QXmlResultItems::_ZTV15QXmlResultItems: 4u entries +0 (int (*)(...))0 +4 (int (*)(...))(& _ZTI15QXmlResultItems) +8 QXmlResultItems::~QXmlResultItems +12 QXmlResultItems::~QXmlResultItems + +Class QXmlResultItems + size=8 align=4 + base size=8 base align=4 +QXmlResultItems (0xb4d76690) 0 + vptr=((& QXmlResultItems::_ZTV15QXmlResultItems) + 8u) + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4bd603c) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4be85dc) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4aa4c30) 0 empty + +Class QMap::Node + size=20 align=4 + base size=20 base align=4 +QMap::Node (0xb4aa4ca8) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4acb7bc) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4acb744) 0 + +Class QList:: + size=4 align=4 + base size=4 base align=4 +QList:: (0xb4acbfb4) 0 + +Class QList + size=4 align=4 + base size=4 base align=4 +QList (0xb4acbf3c) 0 + +Class QMap::PayloadNode + size=16 align=4 + base size=16 base align=4 +QMap::PayloadNode (0xb4aff9d8) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4affb04) 0 + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4b14e4c) 0 + +Class QTypeInfo + size=1 align=1 + base size=0 base align=1 +QTypeInfo (0xb4b390b4) 0 empty + +Class QList::Node + size=4 align=4 + base size=4 base align=4 +QList::Node (0xb4b3912c) 0 + diff --git a/tests/auto/bic/tst_bic.cpp b/tests/auto/bic/tst_bic.cpp index 181c275..b07f195 100644 --- a/tests/auto/bic/tst_bic.cpp +++ b/tests/auto/bic/tst_bic.cpp @@ -97,6 +97,8 @@ tst_Bic::tst_Bic() bic.addBlacklistedClass(QLatin1String("QTypeInfo<*>")); bic.addBlacklistedClass(QLatin1String("QMetaTypeId<*>")); bic.addBlacklistedClass(QLatin1String("QVector*")); + bic.addBlacklistedClass(QLatin1String("QMap<*>::iterator")); + bic.addBlacklistedClass(QLatin1String("QMap<*>::Node")); /* this guy is never instantiated, just for compile-time checking */ bic.addBlacklistedClass(QLatin1String("QMap<*>::PayloadNode")); @@ -158,55 +160,52 @@ void tst_Bic::sizesAndVTables_data() QSKIP("Test not implemented for this compiler/platform", SkipAll); #else - QString archFileName400; - QString archFileName410; - QString archFileName420; - QString archFileName430; + int major = QT_VERSION >> 16; + if (major != 4) { + QFAIL("This test is for Qt 4"); + } + int minor = (QT_VERSION & 0x00FF00) >> 8; + int patch = (QT_VERSION & 0x0000FF); + + // Test every Qt 4 version up to this minor version. + typedef QPair VersionPair; + QList versions; + for (int i = 0; i <= minor; ++i) { + bool isPatchRelease = (i == minor && patch); + versions << qMakePair(QString("%1.%2").arg(major).arg(i), isPatchRelease); + } + QString arch; #if defined Q_OS_LINUX && defined Q_WS_X11 # if defined(__powerpc__) && !defined(__powerpc64__) - archFileName400 = "data/%1.4.0.0.linux-gcc-ppc32.txt"; - archFileName410 = "data/%1.4.1.0.linux-gcc-ppc32.txt"; - archFileName420 = "data/%1.4.2.0.linux-gcc-ppc32.txt"; + arch = "linux-gcc-ppc32"; # elif defined(__amd64__) - archFileName400 = "data/%1.4.0.0.linux-gcc-amd64.txt"; + arch = "linux-gcc-amd64"; # elif defined(__i386__) - archFileName400 = "data/%1.4.0.0.linux-gcc-ia32.txt"; - archFileName410 = "data/%1.4.1.0.linux-gcc-ia32.txt"; - archFileName420 = "data/%1.4.2.0.linux-gcc-ia32.txt"; - archFileName430 = "data/%1.4.3.0.linux-gcc-ia32.txt"; + arch = "linux-gcc-ia32"; # endif #elif defined Q_OS_AIX - if (sizeof(void*) == 4) - archFileName400 = "data/%1.4.0.0.aix-gcc-power32.txt"; + if (sizeof(void*) == 4) { + arch = "aix-gcc-power32"; + } #elif defined Q_OS_MAC && defined(__powerpc__) - archFileName400 = "data/%1.4.0.0.macx-gcc-ppc32.txt"; - archFileName410 = "data/%1.4.1.0.macx-gcc-ppc32.txt"; - archFileName420 = "data/%1.4.2.0.macx-gcc-ppc32.txt"; + arch = "macx-gcc-ppc32"; #elif defined Q_OS_MAC && defined(__i386__) - archFileName410 = "data/%1.4.1.0.macx-gcc-ia32.txt"; - archFileName420 = "data/%1.4.2.0.macx-gcc-ia32.txt"; + arch = "macx-gcc-ia32"; #elif defined Q_OS_WIN && defined Q_CC_GNU - archFileName410 = "data/%1.4.1.0.win32-gcc-ia32.txt"; - archFileName420 = "data/%1.4.2.0.win32-gcc-ia32.txt"; + arch = "win32-gcc-ia32"; #endif - if (archFileName400.isEmpty() && archFileName410.isEmpty() - && archFileName420.isEmpty()) - QSKIP("No reference files found for this platform", SkipAll); - - bool isPatchRelease400 = false; - bool isPatchRelease410 = false; - bool isPatchRelease420 = false; - bool isPatchRelease430 = false; + if (arch.isEmpty()) + QSKIP("No reference files found for this arch", SkipAll); QTest::addColumn("oldLib"); QTest::addColumn("isPatchRelease"); - QTest::newRow("4.0") << archFileName400 << isPatchRelease400; - QTest::newRow("4.1") << archFileName410 << isPatchRelease410; - QTest::newRow("4.2") << archFileName420 << isPatchRelease420; - QTest::newRow("4.3") << archFileName430 << isPatchRelease430; + foreach (VersionPair const& version, versions) { + QString archFileName = QString("data/%3.%1.0.%2.txt").arg(version.first).arg(arch); + QTest::newRow(qPrintable(version.first)) << archFileName << version.second; + } #endif } -- cgit v0.12 From faabe90b69551e14317d85f376f040a3dc3ae0bd Mon Sep 17 00:00:00 2001 From: Rohan McGovern Date: Tue, 16 Jun 2009 11:11:18 +1000 Subject: Fixes crash of qmake on Windows Vista Business x64 (and undefined behavior on all versions of Windows). setvbuf handles its arguments differently on Unix and Windows. Windows uses the size parameter when the given buffer is NULL, which appears to violate C89/C99. Giving a size parameter of 0 with a NULL buffer caused qmake to crash on Windows Vista Business x64. Windows also can't set line buffering with setvbuf _at all_ according to the MSDN documentation, so don't bother calling it on Windows. --- qmake/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qmake/main.cpp b/qmake/main.cpp index 7da66ac..f311699 100644 --- a/qmake/main.cpp +++ b/qmake/main.cpp @@ -84,12 +84,14 @@ bool qmake_setpwd(const QString &p) int runQMake(int argc, char **argv) { +#ifndef Q_OS_WIN32 // stderr is unbuffered by default, but stdout buffering depends on whether // there is a terminal attached. Buffering can make output from stderr and stdout // appear out of sync, so force stdout to be line buffered to minimize this without // hurting performance too much (if at all). This is particularly important for // things like QtCreator and scripted builds. setvbuf(stdout, (char *)NULL, _IOLBF, 0); +#endif // parse command line int ret = Option::init(argc, argv); -- cgit v0.12 From 3cd7289548c00fe2dcbe790ab4be4f4eca1d4fb3 Mon Sep 17 00:00:00 2001 From: Bill King Date: Tue, 16 Jun 2009 15:14:25 +1000 Subject: Fixes to get some MS Sql Server tests running again + new db definitions. --- tests/auto/qsqldatabase/tst_databases.h | 8 +++++++- tests/auto/qsqldatabase/tst_qsqldatabase.cpp | 3 +++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/tests/auto/qsqldatabase/tst_databases.h b/tests/auto/qsqldatabase/tst_databases.h index 5b0fc7a..340d479 100644 --- a/tests/auto/qsqldatabase/tst_databases.h +++ b/tests/auto/qsqldatabase/tst_databases.h @@ -251,6 +251,10 @@ public: // addDb( "QODBC", "DRIVER={MySQL ODBC 3.51 Driver};SERVER=mysql5-nokia.trolltech.com.au;DATABASE=testdb", "testuser", "Ee4Gabf6_", "" ); // addDb( "QODBC", "DRIVER={FreeTDS};SERVER=horsehead.nokia.troll.no;DATABASE=testdb;PORT=4101;UID=troll;PWD=trondk", "troll", "trondk", "" ); // addDb( "QODBC", "DRIVER={FreeTDS};SERVER=silence.nokia.troll.no;DATABASE=testdb;PORT=2392;UID=troll;PWD=trond", "troll", "trond", "" ); +// addDb( "QODBC", "DRIVER={FreeTDS};SERVER=bq-winserv2003-x86-01.apac.nokia.com;DATABASE=testdb;PORT=1433;UID=testuser;PWD=Ee4Gabf6_", "testuser", "Ee4Gabf6_", "" ); +// addDb( "QODBC", "DRIVER={FreeTDS};SERVER=bq-winserv2008-x86-01.apac.nokia.com;DATABASE=testdb;PORT=1433;UID=testuser;PWD=Ee4Gabf6_", "testuser", "Ee4Gabf6_", "" ); +// addDb( "QTDS7", "testdb", "testuser", "Ee4Gabf6_", "bq-winserv2003" ); +// addDb( "QTDS7", "testdb", "testuser", "Ee4Gabf6_", "bq-winserv2008" ); } void open() @@ -424,7 +428,9 @@ public: { return db.databaseName().contains( "sql server", Qt::CaseInsensitive ) || db.databaseName().contains( "sqlserver", Qt::CaseInsensitive ) - || db.databaseName().contains( "sql native client", Qt::CaseInsensitive ); + || db.databaseName().contains( "sql native client", Qt::CaseInsensitive ) + || db.databaseName().contains( "bq-winserv", Qt::CaseInsensitive ) + || db.hostName().contains( "bq-winserv", Qt::CaseInsensitive ); } static bool isMSAccess( QSqlDatabase db ) diff --git a/tests/auto/qsqldatabase/tst_qsqldatabase.cpp b/tests/auto/qsqldatabase/tst_qsqldatabase.cpp index 4fa3dc4..1a5eac3 100644 --- a/tests/auto/qsqldatabase/tst_qsqldatabase.cpp +++ b/tests/auto/qsqldatabase/tst_qsqldatabase.cpp @@ -296,6 +296,9 @@ void tst_QSqlDatabase::createTestTables(QSqlDatabase db) // ### stupid workaround until we find a way to hardcode this // in the MySQL server startup script q.exec("set table_type=innodb"); + if (tst_Databases::isSqlServer(db)) { + QVERIFY_SQL(q, exec("SET ANSI_DEFAULTS ON")); + } // please never ever change this table; otherwise fix all tests ;) if (tst_Databases::isMSAccess(db)) { -- cgit v0.12 From 6e022c5c21a44a25b1579f03498ecaeba6da9024 Mon Sep 17 00:00:00 2001 From: jasplin Date: Tue, 16 Jun 2009 08:01:33 +0200 Subject: Prevented QCompleter popup from appearing briefly on Windows. It turns out that the fix 7bf4512659113f8cc78e72f1c84158ce4f70a526 caused the QCompleter popup from appearing for a split second on Windows. This is because the popup is shown as a toplevel window on this platform. On other platforms than Mac and Windows it doesn't seem to matter, but be on the safe side, the fix is modified to apply for Mac only. Reviewed-by: Daniel Molkentin Task-number: 255374 --- src/gui/util/qcompleter.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/gui/util/qcompleter.cpp b/src/gui/util/qcompleter.cpp index da3edb0..7f65ee9 100644 --- a/src/gui/util/qcompleter.cpp +++ b/src/gui/util/qcompleter.cpp @@ -1077,7 +1077,11 @@ void QCompleter::setPopup(QAbstractItemView *popup) delete d->popup; if (popup->model() != d->proxy) popup->setModel(d->proxy); - popup->show(); +#ifdef Q_OS_MAC + popup->show(); +#else + popup->hide(); +#endif popup->setParent(0, Qt::Popup); Qt::FocusPolicy origPolicy = Qt::NoFocus; -- cgit v0.12 From fa3d44f7f4dfbf2c6d49af4635231534700d90f4 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Tue, 16 Jun 2009 09:58:55 +0200 Subject: disable stdout buffering alltogether having system-dependent bahavior is Not Nice (TM), and given that we do only printf()s of whole lines anyway, this should have no performance impact whatsoever. Reviewed-by: mariusSO --- qmake/main.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/qmake/main.cpp b/qmake/main.cpp index f311699..2295e36 100644 --- a/qmake/main.cpp +++ b/qmake/main.cpp @@ -84,14 +84,11 @@ bool qmake_setpwd(const QString &p) int runQMake(int argc, char **argv) { -#ifndef Q_OS_WIN32 // stderr is unbuffered by default, but stdout buffering depends on whether // there is a terminal attached. Buffering can make output from stderr and stdout - // appear out of sync, so force stdout to be line buffered to minimize this without - // hurting performance too much (if at all). This is particularly important for - // things like QtCreator and scripted builds. - setvbuf(stdout, (char *)NULL, _IOLBF, 0); -#endif + // appear out of sync, so force stdout to be unbuffered as well. + // This is particularly important for things like QtCreator and scripted builds. + setvbuf(stdout, (char *)NULL, _IONBF, 0); // parse command line int ret = Option::init(argc, argv); -- cgit v0.12 From 64b1e9b360045b6ed2794d17b4fd07bc2ca8a47e Mon Sep 17 00:00:00 2001 From: Jens Bache-Wiig Date: Tue, 16 Jun 2009 12:08:46 +0200 Subject: Improved styling of expander arrows with Gtk+ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The current implementation was based on the GtkExpander widget. However we do not have such a widget and the primary use case is for expanders inside item views. Hence it makes sense to base it on gtktreeview instead. As I can not reproduce the crash with any recent versions of cleanice I will remove the workaround as well. omment and edit as applicable ]---| Task-number: 256146 Reviewed-by: Thorbjørn --- src/gui/styles/qgtkstyle.cpp | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/gui/styles/qgtkstyle.cpp b/src/gui/styles/qgtkstyle.cpp index 0e54af8..84ec4af 100644 --- a/src/gui/styles/qgtkstyle.cpp +++ b/src/gui/styles/qgtkstyle.cpp @@ -789,24 +789,21 @@ void QGtkStyle::drawPrimitive(PrimitiveElement element, case PE_IndicatorBranch: if (option->state & State_Children) { QRect rect = option->rect; - rect = QRect(0, 0, 10, 10); + rect = QRect(0, 0, 12, 12); rect.moveCenter(option->rect.center()); rect.translate(2, 0); GtkExpanderStyle openState = GTK_EXPANDER_EXPANDED; GtkExpanderStyle closedState = GTK_EXPANDER_COLLAPSED; - GtkWidget *gtkExpander = QGtk::gtkWidget(QLS("GtkExpander")); - guint expanderSize; - QGtk::gtk_widget_style_get(gtkExpander, "expander-size", &expanderSize, NULL); - // Note CleanIce will crash unless a GtkExpander is provided - // but providing the expander will enforce the expander-size, which we - // don't neccessarily have room for + GtkWidget *gtkTreeView = QGtk::gtkWidget(QLS("GtkTreeView")); + GtkStateType state = GTK_STATE_NORMAL; if (!(option->state & State_Enabled)) state = GTK_STATE_INSENSITIVE; else if (option->state & State_MouseOver) state = GTK_STATE_PRELIGHT; - gtkPainter.paintExpander(expanderSize <= 10 ? gtkExpander : NULL, "expander", rect, state, - option->state & State_Open ? openState : closedState , gtkExpander->style); + + gtkPainter.paintExpander(gtkTreeView, "treeview", rect, state, + option->state & State_Open ? openState : closedState , gtkTreeView->style); } break; case PE_PanelItemViewItem: -- cgit v0.12 From 7f00209fe9face275e068d889973aa943cdfcb00 Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Tue, 16 Jun 2009 20:53:04 +1000 Subject: Make the codeeditor example compile on Windows. Local includes should use the double-quote form of #include rather than the angle-bracket form. Reviewed-by: Trust Me --- examples/widgets/codeeditor/codeeditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/widgets/codeeditor/codeeditor.cpp b/examples/widgets/codeeditor/codeeditor.cpp index b855c7a..615f39f 100644 --- a/examples/widgets/codeeditor/codeeditor.cpp +++ b/examples/widgets/codeeditor/codeeditor.cpp @@ -41,7 +41,7 @@ #include -#include +#include "codeeditor.h" //![constructor] -- cgit v0.12 From 858c70f768eeb2d65cefd4115f4e9089b588b2d0 Mon Sep 17 00:00:00 2001 From: Jason McDonald Date: Tue, 16 Jun 2009 22:08:09 +1000 Subject: Update license headers as requested by the marketing department. Reviewed-by: Trust Me --- LICENSE.GPL3 | 2 +- LICENSE.LGPL | 2 +- bin/syncqt | 2 +- configure | 2 +- demos/affine/main.cpp | 4 +- demos/affine/xform.cpp | 4 +- demos/affine/xform.h | 4 +- demos/arthurplugin/plugin.cpp | 4 +- demos/books/bookdelegate.cpp | 4 +- demos/books/bookdelegate.h | 4 +- demos/books/bookwindow.cpp | 4 +- demos/books/bookwindow.h | 4 +- demos/books/initdb.h | 4 +- demos/books/main.cpp | 4 +- demos/boxes/basic.fsh | 4 +- demos/boxes/basic.vsh | 4 +- demos/boxes/dotted.fsh | 4 +- demos/boxes/fresnel.fsh | 4 +- demos/boxes/glass.fsh | 4 +- demos/boxes/glbuffers.cpp | 4 +- demos/boxes/glbuffers.h | 4 +- demos/boxes/glextensions.cpp | 4 +- demos/boxes/glextensions.h | 4 +- demos/boxes/glshaders.cpp | 4 +- demos/boxes/glshaders.h | 4 +- demos/boxes/gltrianglemesh.h | 4 +- demos/boxes/granite.fsh | 4 +- demos/boxes/main.cpp | 4 +- demos/boxes/marble.fsh | 4 +- demos/boxes/qtbox.cpp | 4 +- demos/boxes/qtbox.h | 4 +- demos/boxes/reflection.fsh | 4 +- demos/boxes/refraction.fsh | 4 +- demos/boxes/roundedbox.cpp | 4 +- demos/boxes/roundedbox.h | 4 +- demos/boxes/scene.cpp | 4 +- demos/boxes/scene.h | 4 +- demos/boxes/trackball.cpp | 4 +- demos/boxes/trackball.h | 4 +- demos/boxes/vector.h | 4 +- demos/boxes/wood.fsh | 4 +- demos/browser/autosaver.cpp | 4 +- demos/browser/autosaver.h | 4 +- demos/browser/bookmarks.cpp | 4 +- demos/browser/bookmarks.h | 4 +- demos/browser/browserapplication.cpp | 4 +- demos/browser/browserapplication.h | 4 +- demos/browser/browsermainwindow.cpp | 4 +- demos/browser/browsermainwindow.h | 4 +- demos/browser/chasewidget.cpp | 4 +- demos/browser/chasewidget.h | 4 +- demos/browser/cookiejar.cpp | 4 +- demos/browser/cookiejar.h | 4 +- demos/browser/downloadmanager.cpp | 4 +- demos/browser/downloadmanager.h | 4 +- demos/browser/edittableview.cpp | 4 +- demos/browser/edittableview.h | 4 +- demos/browser/edittreeview.cpp | 4 +- demos/browser/edittreeview.h | 4 +- demos/browser/history.cpp | 4 +- demos/browser/history.h | 4 +- demos/browser/main.cpp | 4 +- demos/browser/modelmenu.cpp | 4 +- demos/browser/modelmenu.h | 4 +- demos/browser/networkaccessmanager.cpp | 4 +- demos/browser/networkaccessmanager.h | 4 +- demos/browser/searchlineedit.cpp | 4 +- demos/browser/searchlineedit.h | 4 +- demos/browser/settings.cpp | 4 +- demos/browser/settings.h | 4 +- demos/browser/squeezelabel.cpp | 4 +- demos/browser/squeezelabel.h | 4 +- demos/browser/tabwidget.cpp | 4 +- demos/browser/tabwidget.h | 4 +- demos/browser/toolbarsearch.cpp | 4 +- demos/browser/toolbarsearch.h | 4 +- demos/browser/urllineedit.cpp | 4 +- demos/browser/urllineedit.h | 4 +- demos/browser/webview.cpp | 4 +- demos/browser/webview.h | 4 +- demos/browser/xbel.cpp | 4 +- demos/browser/xbel.h | 4 +- demos/chip/chip.cpp | 4 +- demos/chip/chip.h | 4 +- demos/chip/main.cpp | 4 +- demos/chip/mainwindow.cpp | 4 +- demos/chip/mainwindow.h | 4 +- demos/chip/view.cpp | 4 +- demos/chip/view.h | 4 +- demos/composition/composition.cpp | 4 +- demos/composition/composition.h | 4 +- demos/composition/main.cpp | 4 +- demos/deform/main.cpp | 4 +- demos/deform/pathdeform.cpp | 4 +- demos/deform/pathdeform.h | 4 +- .../embeddedsvgviewer/embeddedsvgviewer.cpp | 4 +- .../embedded/embeddedsvgviewer/embeddedsvgviewer.h | 4 +- demos/embedded/embeddedsvgviewer/main.cpp | 4 +- demos/embedded/fluidlauncher/demoapplication.cpp | 4 +- demos/embedded/fluidlauncher/demoapplication.h | 4 +- demos/embedded/fluidlauncher/fluidlauncher.cpp | 4 +- demos/embedded/fluidlauncher/fluidlauncher.h | 4 +- demos/embedded/fluidlauncher/main.cpp | 4 +- demos/embedded/fluidlauncher/pictureflow.cpp | 2 +- demos/embedded/fluidlauncher/pictureflow.h | 2 +- demos/embedded/fluidlauncher/slideshow.cpp | 4 +- demos/embedded/fluidlauncher/slideshow.h | 4 +- demos/embedded/styledemo/main.cpp | 4 +- demos/embedded/styledemo/stylewidget.cpp | 4 +- demos/embedded/styledemo/stylewidget.h | 4 +- demos/embeddeddialogs/customproxy.cpp | 4 +- demos/embeddeddialogs/customproxy.h | 4 +- demos/embeddeddialogs/embeddeddialog.cpp | 4 +- demos/embeddeddialogs/embeddeddialog.h | 4 +- demos/embeddeddialogs/main.cpp | 4 +- demos/gradients/gradients.cpp | 4 +- demos/gradients/gradients.h | 4 +- demos/gradients/main.cpp | 4 +- demos/interview/main.cpp | 4 +- demos/interview/model.cpp | 4 +- demos/interview/model.h | 4 +- demos/macmainwindow/macmainwindow.h | 4 +- demos/macmainwindow/macmainwindow.mm | 4 +- demos/macmainwindow/main.cpp | 4 +- demos/mainwindow/colorswatch.cpp | 4 +- demos/mainwindow/colorswatch.h | 4 +- demos/mainwindow/main.cpp | 4 +- demos/mainwindow/mainwindow.cpp | 4 +- demos/mainwindow/mainwindow.h | 4 +- demos/mainwindow/toolbar.cpp | 4 +- demos/mainwindow/toolbar.h | 4 +- demos/mediaplayer/main.cpp | 4 +- demos/mediaplayer/mediaplayer.cpp | 4 +- demos/mediaplayer/mediaplayer.h | 4 +- demos/pathstroke/main.cpp | 4 +- demos/pathstroke/pathstroke.cpp | 4 +- demos/pathstroke/pathstroke.h | 4 +- demos/qtdemo/colors.cpp | 4 +- demos/qtdemo/colors.h | 4 +- demos/qtdemo/demoitem.cpp | 4 +- demos/qtdemo/demoitem.h | 4 +- demos/qtdemo/demoitemanimation.cpp | 4 +- demos/qtdemo/demoitemanimation.h | 4 +- demos/qtdemo/demoscene.cpp | 4 +- demos/qtdemo/demoscene.h | 4 +- demos/qtdemo/demotextitem.cpp | 4 +- demos/qtdemo/demotextitem.h | 4 +- demos/qtdemo/dockitem.cpp | 4 +- demos/qtdemo/dockitem.h | 4 +- demos/qtdemo/examplecontent.cpp | 4 +- demos/qtdemo/examplecontent.h | 4 +- demos/qtdemo/guide.cpp | 4 +- demos/qtdemo/guide.h | 4 +- demos/qtdemo/guidecircle.cpp | 4 +- demos/qtdemo/guidecircle.h | 4 +- demos/qtdemo/guideline.cpp | 4 +- demos/qtdemo/guideline.h | 4 +- demos/qtdemo/headingitem.cpp | 4 +- demos/qtdemo/headingitem.h | 4 +- demos/qtdemo/imageitem.cpp | 4 +- demos/qtdemo/imageitem.h | 4 +- demos/qtdemo/itemcircleanimation.cpp | 4 +- demos/qtdemo/itemcircleanimation.h | 4 +- demos/qtdemo/letteritem.cpp | 4 +- demos/qtdemo/letteritem.h | 4 +- demos/qtdemo/main.cpp | 4 +- demos/qtdemo/mainwindow.cpp | 4 +- demos/qtdemo/mainwindow.h | 4 +- demos/qtdemo/menucontent.cpp | 4 +- demos/qtdemo/menucontent.h | 4 +- demos/qtdemo/menumanager.cpp | 4 +- demos/qtdemo/menumanager.h | 4 +- demos/qtdemo/scanitem.cpp | 4 +- demos/qtdemo/scanitem.h | 4 +- demos/qtdemo/score.cpp | 4 +- demos/qtdemo/score.h | 4 +- demos/qtdemo/textbutton.cpp | 4 +- demos/qtdemo/textbutton.h | 4 +- demos/shared/arthurstyle.cpp | 4 +- demos/shared/arthurstyle.h | 4 +- demos/shared/arthurwidgets.cpp | 4 +- demos/shared/arthurwidgets.h | 4 +- demos/shared/hoverpoints.cpp | 4 +- demos/shared/hoverpoints.h | 4 +- demos/spreadsheet/main.cpp | 4 +- demos/spreadsheet/printview.cpp | 4 +- demos/spreadsheet/printview.h | 4 +- demos/spreadsheet/spreadsheet.cpp | 4 +- demos/spreadsheet/spreadsheet.h | 4 +- demos/spreadsheet/spreadsheetdelegate.cpp | 4 +- demos/spreadsheet/spreadsheetdelegate.h | 4 +- demos/spreadsheet/spreadsheetitem.cpp | 4 +- demos/spreadsheet/spreadsheetitem.h | 4 +- demos/sqlbrowser/browser.cpp | 4 +- demos/sqlbrowser/browser.h | 4 +- demos/sqlbrowser/connectionwidget.cpp | 4 +- demos/sqlbrowser/connectionwidget.h | 4 +- demos/sqlbrowser/main.cpp | 4 +- demos/sqlbrowser/qsqlconnectiondialog.cpp | 4 +- demos/sqlbrowser/qsqlconnectiondialog.h | 4 +- demos/textedit/main.cpp | 4 +- demos/textedit/textedit.cpp | 4 +- demos/textedit/textedit.h | 4 +- demos/undo/commands.cpp | 4 +- demos/undo/commands.h | 4 +- demos/undo/document.cpp | 4 +- demos/undo/document.h | 4 +- demos/undo/main.cpp | 4 +- demos/undo/mainwindow.cpp | 4 +- demos/undo/mainwindow.h | 4 +- doc/src/3rdparty.qdoc | 4 +- doc/src/accelerators.qdoc | 4 +- doc/src/accessible.qdoc | 4 +- doc/src/activeqt-dumpcpp.qdoc | 4 +- doc/src/activeqt-dumpdoc.qdoc | 4 +- doc/src/activeqt-idc.qdoc | 4 +- doc/src/activeqt-testcon.qdoc | 4 +- doc/src/activeqt.qdoc | 4 +- doc/src/annotated.qdoc | 6 +-- doc/src/appicon.qdoc | 6 +-- doc/src/assistant-manual.qdoc | 4 +- doc/src/atomic-operations.qdoc | 4 +- doc/src/bughowto.qdoc | 4 +- doc/src/classes.qdoc | 4 +- doc/src/codecs.qdoc | 4 +- doc/src/commercialeditions.qdoc | 4 +- doc/src/compatclasses.qdoc | 4 +- doc/src/containers.qdoc | 4 +- doc/src/coordsys.qdoc | 6 +-- doc/src/credits.qdoc | 4 +- doc/src/custom-types.qdoc | 4 +- doc/src/datastreamformat.qdoc | 6 +-- doc/src/debug.qdoc | 6 +-- doc/src/demos.qdoc | 4 +- doc/src/demos/affine.qdoc | 4 +- doc/src/demos/arthurplugin.qdoc | 4 +- doc/src/demos/books.qdoc | 4 +- doc/src/demos/boxes.qdoc | 4 +- doc/src/demos/browser.qdoc | 4 +- doc/src/demos/chip.qdoc | 4 +- doc/src/demos/composition.qdoc | 4 +- doc/src/demos/deform.qdoc | 4 +- doc/src/demos/embeddeddialogs.qdoc | 4 +- doc/src/demos/gradients.qdoc | 4 +- doc/src/demos/interview.qdoc | 4 +- doc/src/demos/macmainwindow.qdoc | 4 +- doc/src/demos/mainwindow.qdoc | 4 +- doc/src/demos/mediaplayer.qdoc | 4 +- doc/src/demos/pathstroke.qdoc | 4 +- doc/src/demos/spreadsheet.qdoc | 4 +- doc/src/demos/sqlbrowser.qdoc | 4 +- doc/src/demos/textedit.qdoc | 4 +- doc/src/demos/undo.qdoc | 4 +- doc/src/deployment.qdoc | 6 +-- doc/src/designer-manual.qdoc | 4 +- doc/src/desktop-integration.qdoc | 4 +- doc/src/developing-on-mac.qdoc | 4 +- doc/src/distributingqt.qdoc | 6 +-- doc/src/dnd.qdoc | 4 +- doc/src/ecmascript.qdoc | 4 +- doc/src/editions.qdoc | 6 +-- doc/src/emb-accel.qdoc | 4 +- doc/src/emb-charinput.qdoc | 4 +- doc/src/emb-crosscompiling.qdoc | 4 +- doc/src/emb-deployment.qdoc | 4 +- doc/src/emb-differences.qdoc | 4 +- doc/src/emb-envvars.qdoc | 4 +- doc/src/emb-features.qdoc | 4 +- doc/src/emb-fonts.qdoc | 4 +- doc/src/emb-framebuffer-howto.qdoc | 4 +- doc/src/emb-install.qdoc | 4 +- doc/src/emb-makeqpf.qdoc | 4 +- doc/src/emb-performance.qdoc | 4 +- doc/src/emb-pointer.qdoc | 4 +- doc/src/emb-porting.qdoc | 4 +- doc/src/emb-qvfb.qdoc | 4 +- doc/src/emb-running.qdoc | 4 +- doc/src/emb-vnc.qdoc | 4 +- doc/src/eventsandfilters.qdoc | 4 +- doc/src/examples-overview.qdoc | 4 +- doc/src/examples.qdoc | 4 +- doc/src/examples/2dpainting.qdoc | 4 +- doc/src/examples/activeqt/comapp.qdoc | 4 +- doc/src/examples/activeqt/dotnet.qdoc | 4 +- doc/src/examples/activeqt/hierarchy.qdoc | 4 +- doc/src/examples/activeqt/menus.qdoc | 4 +- doc/src/examples/activeqt/multiple.qdoc | 4 +- doc/src/examples/activeqt/opengl.qdoc | 4 +- doc/src/examples/activeqt/qutlook.qdoc | 4 +- doc/src/examples/activeqt/simple.qdoc | 4 +- doc/src/examples/activeqt/webbrowser.qdoc | 4 +- doc/src/examples/activeqt/wrapper.qdoc | 4 +- doc/src/examples/addressbook.qdoc | 4 +- doc/src/examples/ahigl.qdoc | 4 +- doc/src/examples/analogclock.qdoc | 4 +- doc/src/examples/application.qdoc | 4 +- doc/src/examples/arrowpad.qdoc | 4 +- doc/src/examples/basicdrawing.qdoc | 4 +- doc/src/examples/basicgraphicslayouts.qdoc | 4 +- doc/src/examples/basiclayouts.qdoc | 4 +- doc/src/examples/basicsortfiltermodel.qdoc | 4 +- doc/src/examples/blockingfortuneclient.qdoc | 4 +- doc/src/examples/borderlayout.qdoc | 4 +- doc/src/examples/broadcastreceiver.qdoc | 4 +- doc/src/examples/broadcastsender.qdoc | 4 +- doc/src/examples/cachedtable.qdoc | 4 +- doc/src/examples/calculator.qdoc | 4 +- doc/src/examples/calculatorbuilder.qdoc | 4 +- doc/src/examples/calculatorform.qdoc | 4 +- doc/src/examples/calendar.qdoc | 4 +- doc/src/examples/calendarwidget.qdoc | 4 +- doc/src/examples/capabilitiesexample.qdoc | 4 +- doc/src/examples/charactermap.qdoc | 4 +- doc/src/examples/chart.qdoc | 4 +- doc/src/examples/classwizard.qdoc | 4 +- doc/src/examples/codecs.qdoc | 4 +- doc/src/examples/codeeditor.qdoc | 4 +- doc/src/examples/collidingmice-example.qdoc | 4 +- doc/src/examples/coloreditorfactory.qdoc | 4 +- doc/src/examples/combowidgetmapper.qdoc | 4 +- doc/src/examples/completer.qdoc | 4 +- doc/src/examples/complexpingpong.qdoc | 4 +- doc/src/examples/concentriccircles.qdoc | 4 +- doc/src/examples/configdialog.qdoc | 4 +- doc/src/examples/containerextension.qdoc | 4 +- doc/src/examples/context2d.qdoc | 4 +- doc/src/examples/customcompleter.qdoc | 4 +- doc/src/examples/customsortfiltermodel.qdoc | 4 +- doc/src/examples/customtype.qdoc | 4 +- doc/src/examples/customtypesending.qdoc | 4 +- doc/src/examples/customwidgetplugin.qdoc | 4 +- doc/src/examples/dbscreen.qdoc | 4 +- doc/src/examples/dbus-chat.qdoc | 4 +- doc/src/examples/dbus-listnames.qdoc | 4 +- doc/src/examples/dbus-remotecontrolledcar.qdoc | 4 +- doc/src/examples/defaultprototypes.qdoc | 4 +- doc/src/examples/delayedencoding.qdoc | 4 +- doc/src/examples/diagramscene.qdoc | 4 +- doc/src/examples/digitalclock.qdoc | 4 +- doc/src/examples/dirview.qdoc | 4 +- doc/src/examples/dockwidgets.qdoc | 4 +- doc/src/examples/dombookmarks.qdoc | 4 +- doc/src/examples/draganddroppuzzle.qdoc | 4 +- doc/src/examples/dragdroprobot.qdoc | 4 +- doc/src/examples/draggableicons.qdoc | 4 +- doc/src/examples/draggabletext.qdoc | 4 +- doc/src/examples/drilldown.qdoc | 4 +- doc/src/examples/dropsite.qdoc | 4 +- doc/src/examples/dynamiclayouts.qdoc | 4 +- doc/src/examples/echoplugin.qdoc | 4 +- doc/src/examples/editabletreemodel.qdoc | 4 +- doc/src/examples/elasticnodes.qdoc | 4 +- doc/src/examples/extension.qdoc | 4 +- doc/src/examples/fancybrowser.qdoc | 4 +- doc/src/examples/filetree.qdoc | 4 +- doc/src/examples/findfiles.qdoc | 4 +- doc/src/examples/flowlayout.qdoc | 4 +- doc/src/examples/fontsampler.qdoc | 4 +- doc/src/examples/formextractor.qdoc | 4 +- doc/src/examples/fortuneclient.qdoc | 4 +- doc/src/examples/fortuneserver.qdoc | 4 +- doc/src/examples/framebufferobject.qdoc | 4 +- doc/src/examples/framebufferobject2.qdoc | 4 +- doc/src/examples/fridgemagnets.qdoc | 4 +- doc/src/examples/ftp.qdoc | 4 +- doc/src/examples/globalVariables.qdoc | 4 +- doc/src/examples/googlechat.qdoc | 4 +- doc/src/examples/googlesuggest.qdoc | 4 +- doc/src/examples/grabber.qdoc | 4 +- doc/src/examples/groupbox.qdoc | 4 +- doc/src/examples/hellogl.qdoc | 4 +- doc/src/examples/helloscript.qdoc | 4 +- doc/src/examples/hellotr.qdoc | 4 +- doc/src/examples/http.qdoc | 4 +- doc/src/examples/i18n.qdoc | 4 +- doc/src/examples/icons.qdoc | 4 +- doc/src/examples/imagecomposition.qdoc | 4 +- doc/src/examples/imageviewer.qdoc | 4 +- doc/src/examples/itemviewspuzzle.qdoc | 4 +- doc/src/examples/licensewizard.qdoc | 4 +- doc/src/examples/lineedits.qdoc | 4 +- doc/src/examples/localfortuneclient.qdoc | 4 +- doc/src/examples/localfortuneserver.qdoc | 4 +- doc/src/examples/loopback.qdoc | 4 +- doc/src/examples/mandelbrot.qdoc | 4 +- doc/src/examples/masterdetail.qdoc | 4 +- doc/src/examples/mdi.qdoc | 4 +- doc/src/examples/menus.qdoc | 4 +- doc/src/examples/mousecalibration.qdoc | 4 +- doc/src/examples/movie.qdoc | 4 +- doc/src/examples/multipleinheritance.qdoc | 4 +- doc/src/examples/musicplayerexample.qdoc | 4 +- doc/src/examples/network-chat.qdoc | 4 +- doc/src/examples/orderform.qdoc | 4 +- doc/src/examples/overpainting.qdoc | 4 +- doc/src/examples/padnavigator.qdoc | 4 +- doc/src/examples/painterpaths.qdoc | 4 +- doc/src/examples/pbuffers.qdoc | 4 +- doc/src/examples/pbuffers2.qdoc | 4 +- doc/src/examples/pixelator.qdoc | 4 +- doc/src/examples/plugandpaint.qdoc | 4 +- doc/src/examples/portedasteroids.qdoc | 4 +- doc/src/examples/portedcanvas.qdoc | 4 +- doc/src/examples/previewer.qdoc | 4 +- doc/src/examples/qobjectxmlmodel.qdoc | 4 +- doc/src/examples/qtconcurrent-imagescaling.qdoc | 4 +- doc/src/examples/qtconcurrent-map.qdoc | 4 +- doc/src/examples/qtconcurrent-progressdialog.qdoc | 4 +- doc/src/examples/qtconcurrent-runfunction.qdoc | 4 +- doc/src/examples/qtconcurrent-wordcount.qdoc | 4 +- doc/src/examples/qtscriptcalculator.qdoc | 4 +- doc/src/examples/qtscriptcustomclass.qdoc | 4 +- doc/src/examples/qtscripttetrix.qdoc | 4 +- doc/src/examples/querymodel.qdoc | 4 +- doc/src/examples/queuedcustomtype.qdoc | 4 +- doc/src/examples/qxmlstreambookmarks.qdoc | 4 +- doc/src/examples/recentfiles.qdoc | 4 +- doc/src/examples/recipes.qdoc | 4 +- doc/src/examples/regexp.qdoc | 4 +- doc/src/examples/relationaltablemodel.qdoc | 4 +- doc/src/examples/remotecontrol.qdoc | 4 +- doc/src/examples/rsslisting.qdoc | 4 +- doc/src/examples/samplebuffers.qdoc | 4 +- doc/src/examples/saxbookmarks.qdoc | 4 +- doc/src/examples/screenshot.qdoc | 4 +- doc/src/examples/scribble.qdoc | 4 +- doc/src/examples/sdi.qdoc | 4 +- doc/src/examples/securesocketclient.qdoc | 4 +- doc/src/examples/semaphores.qdoc | 4 +- doc/src/examples/settingseditor.qdoc | 4 +- doc/src/examples/shapedclock.qdoc | 4 +- doc/src/examples/sharedmemory.qdoc | 4 +- doc/src/examples/simpledecoration.qdoc | 4 +- doc/src/examples/simpledommodel.qdoc | 4 +- doc/src/examples/simpletextviewer.qdoc | 4 +- doc/src/examples/simpletreemodel.qdoc | 4 +- doc/src/examples/simplewidgetmapper.qdoc | 4 +- doc/src/examples/sipdialog.qdoc | 4 +- doc/src/examples/sliders.qdoc | 4 +- doc/src/examples/spinboxdelegate.qdoc | 4 +- doc/src/examples/spinboxes.qdoc | 4 +- doc/src/examples/sqlwidgetmapper.qdoc | 4 +- doc/src/examples/standarddialogs.qdoc | 4 +- doc/src/examples/stardelegate.qdoc | 4 +- doc/src/examples/styleplugin.qdoc | 4 +- doc/src/examples/styles.qdoc | 4 +- doc/src/examples/stylesheet.qdoc | 4 +- doc/src/examples/svgalib.qdoc | 4 +- doc/src/examples/svggenerator.qdoc | 4 +- doc/src/examples/svgviewer.qdoc | 4 +- doc/src/examples/syntaxhighlighter.qdoc | 4 +- doc/src/examples/systray.qdoc | 4 +- doc/src/examples/tabdialog.qdoc | 4 +- doc/src/examples/tablemodel.qdoc | 4 +- doc/src/examples/tablet.qdoc | 4 +- doc/src/examples/taskmenuextension.qdoc | 4 +- doc/src/examples/tetrix.qdoc | 4 +- doc/src/examples/textfinder.qdoc | 4 +- doc/src/examples/textobject.qdoc | 4 +- doc/src/examples/textures.qdoc | 4 +- doc/src/examples/threadedfortuneserver.qdoc | 4 +- doc/src/examples/tooltips.qdoc | 4 +- doc/src/examples/torrent.qdoc | 4 +- doc/src/examples/trafficinfo.qdoc | 4 +- doc/src/examples/transformations.qdoc | 4 +- doc/src/examples/treemodelcompleter.qdoc | 4 +- doc/src/examples/trivialwizard.qdoc | 4 +- doc/src/examples/trollprint.qdoc | 4 +- doc/src/examples/undoframework.qdoc | 4 +- doc/src/examples/waitconditions.qdoc | 4 +- doc/src/examples/wiggly.qdoc | 4 +- doc/src/examples/windowflags.qdoc | 4 +- doc/src/examples/worldtimeclockbuilder.qdoc | 4 +- doc/src/examples/worldtimeclockplugin.qdoc | 4 +- doc/src/examples/xmlstreamlint.qdoc | 4 +- doc/src/exportedfunctions.qdoc | 4 +- doc/src/external-resources.qdoc | 4 +- doc/src/focus.qdoc | 6 +-- doc/src/functions.qdoc | 6 +-- doc/src/gallery-cde.qdoc | 4 +- doc/src/gallery-cleanlooks.qdoc | 4 +- doc/src/gallery-macintosh.qdoc | 4 +- doc/src/gallery-motif.qdoc | 4 +- doc/src/gallery-plastique.qdoc | 4 +- doc/src/gallery-windows.qdoc | 4 +- doc/src/gallery-windowsvista.qdoc | 4 +- doc/src/gallery-windowsxp.qdoc | 4 +- doc/src/gallery.qdoc | 4 +- doc/src/geometry.qdoc | 4 +- doc/src/gpl.qdoc | 8 ++-- doc/src/graphicsview.qdoc | 4 +- doc/src/groups.qdoc | 4 +- doc/src/guibooks.qdoc | 4 +- doc/src/hierarchy.qdoc | 4 +- doc/src/how-to-learn-qt.qdoc | 4 +- doc/src/i18n.qdoc | 4 +- doc/src/index.qdoc | 4 +- doc/src/installation.qdoc | 4 +- doc/src/introtodbus.qdoc | 4 +- doc/src/ipc.qdoc | 4 +- doc/src/known-issues.qdoc | 4 +- doc/src/layout.qdoc | 4 +- doc/src/licenses.qdoc | 4 +- doc/src/linguist-manual.qdoc | 4 +- doc/src/mac-differences.qdoc | 4 +- doc/src/mainclasses.qdoc | 4 +- doc/src/metaobjects.qdoc | 4 +- doc/src/moc.qdoc | 4 +- doc/src/model-view-programming.qdoc | 4 +- doc/src/modules.qdoc | 4 +- doc/src/object.qdoc | 4 +- doc/src/objecttrees.qdoc | 4 +- doc/src/opensourceedition.qdoc | 4 +- doc/src/overviews.qdoc | 4 +- doc/src/paintsystem.qdoc | 4 +- doc/src/phonon-api.qdoc | 2 +- doc/src/phonon.qdoc | 6 +-- doc/src/platform-notes.qdoc | 4 +- doc/src/plugins-howto.qdoc | 4 +- doc/src/porting-qsa.qdoc | 4 +- doc/src/porting4-canvas.qdoc | 4 +- doc/src/porting4-designer.qdoc | 4 +- doc/src/porting4-overview.qdoc | 4 +- doc/src/porting4.qdoc | 4 +- doc/src/printing.qdoc | 4 +- doc/src/properties.qdoc | 4 +- doc/src/q3asciicache.qdoc | 4 +- doc/src/q3asciidict.qdoc | 4 +- doc/src/q3cache.qdoc | 4 +- doc/src/q3dict.qdoc | 4 +- doc/src/q3intcache.qdoc | 4 +- doc/src/q3intdict.qdoc | 4 +- doc/src/q3memarray.qdoc | 4 +- doc/src/q3popupmenu.qdoc | 4 +- doc/src/q3ptrdict.qdoc | 4 +- doc/src/q3ptrlist.qdoc | 4 +- doc/src/q3ptrqueue.qdoc | 4 +- doc/src/q3ptrstack.qdoc | 4 +- doc/src/q3ptrvector.qdoc | 4 +- doc/src/q3sqlfieldinfo.qdoc | 4 +- doc/src/q3sqlrecordinfo.qdoc | 4 +- doc/src/q3valuelist.qdoc | 4 +- doc/src/q3valuestack.qdoc | 4 +- doc/src/q3valuevector.qdoc | 4 +- doc/src/qalgorithms.qdoc | 4 +- doc/src/qaxcontainer.qdoc | 6 +-- doc/src/qaxserver.qdoc | 6 +-- doc/src/qcache.qdoc | 4 +- doc/src/qcolormap.qdoc | 4 +- doc/src/qdbusadaptors.qdoc | 8 ++-- doc/src/qdesktopwidget.qdoc | 4 +- doc/src/qiterator.qdoc | 4 +- doc/src/qmake-manual.qdoc | 4 +- doc/src/qmsdev.qdoc | 2 +- doc/src/qnamespace.qdoc | 4 +- doc/src/qpagesetupdialog.qdoc | 4 +- doc/src/qpaintdevice.qdoc | 4 +- doc/src/qpair.qdoc | 4 +- doc/src/qpatternistdummy.cpp | 4 +- doc/src/qplugin.qdoc | 4 +- doc/src/qprintdialog.qdoc | 4 +- doc/src/qprinterinfo.qdoc | 4 +- doc/src/qset.qdoc | 4 +- doc/src/qsignalspy.qdoc | 4 +- doc/src/qsizepolicy.qdoc | 4 +- doc/src/qsql.qdoc | 4 +- doc/src/qstyles.qdoc | 4 +- doc/src/qt-conf.qdoc | 4 +- doc/src/qt-embedded.qdoc | 4 +- doc/src/qt3support.qdoc | 4 +- doc/src/qt3to4.qdoc | 4 +- doc/src/qt4-accessibility.qdoc | 4 +- doc/src/qt4-arthur.qdoc | 4 +- doc/src/qt4-designer.qdoc | 4 +- doc/src/qt4-interview.qdoc | 4 +- doc/src/qt4-intro.qdoc | 4 +- doc/src/qt4-mainwindow.qdoc | 4 +- doc/src/qt4-network.qdoc | 4 +- doc/src/qt4-scribe.qdoc | 4 +- doc/src/qt4-sql.qdoc | 4 +- doc/src/qt4-styles.qdoc | 4 +- doc/src/qt4-threads.qdoc | 4 +- doc/src/qt4-tulip.qdoc | 4 +- doc/src/qtassistant.qdoc | 4 +- doc/src/qtconfig.qdoc | 4 +- doc/src/qtcore.qdoc | 4 +- doc/src/qtdbus.qdoc | 8 ++-- doc/src/qtdemo.qdoc | 4 +- doc/src/qtdesigner.qdoc | 4 +- doc/src/qtendian.qdoc | 4 +- doc/src/qtestevent.qdoc | 4 +- doc/src/qtestlib.qdoc | 4 +- doc/src/qtgui.qdoc | 4 +- doc/src/qthelp.qdoc | 4 +- doc/src/qtmac-as-native.qdoc | 8 ++-- doc/src/qtmain.qdoc | 6 +-- doc/src/qtnetwork.qdoc | 4 +- doc/src/qtopengl.qdoc | 4 +- doc/src/qtopiacore-architecture.qdoc | 4 +- doc/src/qtopiacore-displaymanagement.qdoc | 4 +- doc/src/qtopiacore-opengl.qdoc | 4 +- doc/src/qtopiacore.qdoc | 4 +- doc/src/qtscript.qdoc | 4 +- doc/src/qtscriptdebugger-manual.qdoc | 4 +- doc/src/qtscriptextensions.qdoc | 6 +-- doc/src/qtscripttools.qdoc | 4 +- doc/src/qtsql.qdoc | 4 +- doc/src/qtsvg.qdoc | 4 +- doc/src/qttest.qdoc | 4 +- doc/src/qtuiloader.qdoc | 4 +- doc/src/qtxml.qdoc | 4 +- doc/src/qtxmlpatterns.qdoc | 4 +- doc/src/qundo.qdoc | 4 +- doc/src/qvarlengtharray.qdoc | 4 +- doc/src/qwaitcondition.qdoc | 4 +- doc/src/rcc.qdoc | 4 +- doc/src/resources.qdoc | 4 +- doc/src/richtext.qdoc | 4 +- doc/src/session.qdoc | 4 +- doc/src/sharedlibrary.qdoc | 6 +-- doc/src/signalsandslots.qdoc | 4 +- doc/src/snippets/accessibilityfactorysnippet.cpp | 4 +- doc/src/snippets/accessibilitypluginsnippet.cpp | 4 +- doc/src/snippets/accessibilityslidersnippet.cpp | 4 +- doc/src/snippets/alphachannel.cpp | 4 +- doc/src/snippets/brush/brush.cpp | 4 +- doc/src/snippets/brush/gradientcreationsnippet.cpp | 4 +- doc/src/snippets/brushstyles/main.cpp | 4 +- doc/src/snippets/brushstyles/renderarea.cpp | 4 +- doc/src/snippets/brushstyles/renderarea.h | 4 +- doc/src/snippets/brushstyles/stylewidget.cpp | 4 +- doc/src/snippets/brushstyles/stylewidget.h | 4 +- doc/src/snippets/buffer/buffer.cpp | 4 +- doc/src/snippets/clipboard/clipwindow.cpp | 4 +- doc/src/snippets/clipboard/clipwindow.h | 4 +- doc/src/snippets/clipboard/main.cpp | 4 +- doc/src/snippets/coordsys/coordsys.cpp | 4 +- doc/src/snippets/customstyle/customstyle.cpp | 4 +- doc/src/snippets/customstyle/customstyle.h | 4 +- doc/src/snippets/customstyle/main.cpp | 4 +- .../designer/autoconnection/imagedialog.cpp | 4 +- .../snippets/designer/autoconnection/imagedialog.h | 4 +- doc/src/snippets/designer/autoconnection/main.cpp | 4 +- doc/src/snippets/designer/imagedialog/main.cpp | 4 +- .../designer/multipleinheritance/imagedialog.cpp | 4 +- .../designer/multipleinheritance/imagedialog.h | 4 +- .../snippets/designer/multipleinheritance/main.cpp | 4 +- .../designer/noautoconnection/imagedialog.cpp | 4 +- .../designer/noautoconnection/imagedialog.h | 4 +- .../snippets/designer/noautoconnection/main.cpp | 4 +- .../designer/singleinheritance/imagedialog.cpp | 4 +- .../designer/singleinheritance/imagedialog.h | 4 +- .../snippets/designer/singleinheritance/main.cpp | 4 +- doc/src/snippets/dialogs/dialogs.cpp | 4 +- doc/src/snippets/dockwidgets/main.cpp | 4 +- doc/src/snippets/dockwidgets/mainwindow.cpp | 4 +- doc/src/snippets/dockwidgets/mainwindow.h | 4 +- doc/src/snippets/draganddrop/dragwidget.cpp | 4 +- doc/src/snippets/draganddrop/dragwidget.h | 4 +- doc/src/snippets/draganddrop/main.cpp | 4 +- doc/src/snippets/draganddrop/mainwindow.cpp | 4 +- doc/src/snippets/draganddrop/mainwindow.h | 4 +- doc/src/snippets/dragging/main.cpp | 4 +- doc/src/snippets/dragging/mainwindow.cpp | 4 +- doc/src/snippets/dragging/mainwindow.h | 4 +- doc/src/snippets/dropactions/main.cpp | 4 +- doc/src/snippets/dropactions/window.cpp | 4 +- doc/src/snippets/dropactions/window.h | 4 +- doc/src/snippets/droparea.cpp | 4 +- doc/src/snippets/dropevents/main.cpp | 4 +- doc/src/snippets/dropevents/window.cpp | 4 +- doc/src/snippets/dropevents/window.h | 4 +- doc/src/snippets/droprectangle/main.cpp | 4 +- doc/src/snippets/droprectangle/window.cpp | 4 +- doc/src/snippets/droprectangle/window.h | 4 +- doc/src/snippets/eventfilters/filterobject.cpp | 4 +- doc/src/snippets/eventfilters/filterobject.h | 4 +- doc/src/snippets/eventfilters/main.cpp | 4 +- doc/src/snippets/events/events.cpp | 4 +- .../snippets/explicitlysharedemployee/employee.cpp | 4 +- .../snippets/explicitlysharedemployee/employee.h | 4 +- doc/src/snippets/explicitlysharedemployee/main.cpp | 4 +- doc/src/snippets/file/file.cpp | 4 +- doc/src/snippets/fileinfo/main.cpp | 4 +- doc/src/snippets/graphicssceneadditemsnippet.cpp | 4 +- doc/src/snippets/i18n-non-qt-class/main.cpp | 4 +- doc/src/snippets/i18n-non-qt-class/myclass.cpp | 4 +- doc/src/snippets/i18n-non-qt-class/myclass.h | 4 +- doc/src/snippets/image/image.cpp | 4 +- doc/src/snippets/image/supportedformat.cpp | 4 +- doc/src/snippets/inherited-slot/button.cpp | 4 +- doc/src/snippets/inherited-slot/button.h | 4 +- doc/src/snippets/inherited-slot/main.cpp | 4 +- doc/src/snippets/itemselection/main.cpp | 4 +- doc/src/snippets/itemselection/model.cpp | 4 +- doc/src/snippets/itemselection/model.h | 4 +- doc/src/snippets/javastyle.cpp | 4 +- doc/src/snippets/layouts/layouts.cpp | 4 +- doc/src/snippets/mainwindowsnippet.cpp | 4 +- doc/src/snippets/matrix/matrix.cpp | 4 +- doc/src/snippets/mdiareasnippets.cpp | 4 +- doc/src/snippets/moc/main.cpp | 4 +- doc/src/snippets/moc/myclass1.h | 4 +- doc/src/snippets/moc/myclass2.h | 4 +- doc/src/snippets/moc/myclass3.h | 4 +- doc/src/snippets/modelview-subclasses/main.cpp | 4 +- doc/src/snippets/modelview-subclasses/model.cpp | 4 +- doc/src/snippets/modelview-subclasses/model.h | 4 +- doc/src/snippets/modelview-subclasses/view.cpp | 4 +- doc/src/snippets/modelview-subclasses/view.h | 4 +- doc/src/snippets/modelview-subclasses/window.cpp | 4 +- doc/src/snippets/modelview-subclasses/window.h | 4 +- doc/src/snippets/myscrollarea.cpp | 4 +- doc/src/snippets/network/tcpwait.cpp | 4 +- doc/src/snippets/painterpath/painterpath.cpp | 4 +- doc/src/snippets/persistentindexes/main.cpp | 4 +- doc/src/snippets/persistentindexes/mainwindow.cpp | 4 +- doc/src/snippets/persistentindexes/mainwindow.h | 4 +- doc/src/snippets/persistentindexes/model.cpp | 4 +- doc/src/snippets/persistentindexes/model.h | 4 +- doc/src/snippets/phonon.cpp | 4 +- doc/src/snippets/picture/picture.cpp | 4 +- doc/src/snippets/plaintextlayout/main.cpp | 4 +- doc/src/snippets/plaintextlayout/window.cpp | 4 +- doc/src/snippets/plaintextlayout/window.h | 4 +- doc/src/snippets/pointer/pointer.cpp | 4 +- doc/src/snippets/polygon/polygon.cpp | 4 +- doc/src/snippets/porting4-dropevents/main.cpp | 4 +- doc/src/snippets/porting4-dropevents/window.cpp | 4 +- doc/src/snippets/porting4-dropevents/window.h | 4 +- doc/src/snippets/printing-qprinter/main.cpp | 4 +- doc/src/snippets/printing-qprinter/object.cpp | 4 +- doc/src/snippets/printing-qprinter/object.h | 4 +- doc/src/snippets/process/process.cpp | 4 +- doc/src/snippets/qabstractsliderisnippet.cpp | 4 +- doc/src/snippets/qcalendarwidget/main.cpp | 4 +- doc/src/snippets/qcolumnview/main.cpp | 4 +- .../snippets/qdbusextratypes/qdbusextratypes.cpp | 4 +- doc/src/snippets/qdebug/qdebugsnippet.cpp | 4 +- doc/src/snippets/qdir-filepaths/main.cpp | 4 +- doc/src/snippets/qdir-listfiles/main.cpp | 4 +- doc/src/snippets/qdir-namefilters/main.cpp | 4 +- doc/src/snippets/qfontdatabase/main.cpp | 4 +- doc/src/snippets/qgl-namespace/main.cpp | 4 +- doc/src/snippets/qlabel/main.cpp | 4 +- doc/src/snippets/qlineargradient/main.cpp | 4 +- doc/src/snippets/qlineargradient/paintwidget.cpp | 4 +- doc/src/snippets/qlineargradient/paintwidget.h | 4 +- doc/src/snippets/qlistview-dnd/main.cpp | 4 +- doc/src/snippets/qlistview-dnd/mainwindow.cpp | 4 +- doc/src/snippets/qlistview-dnd/mainwindow.h | 4 +- doc/src/snippets/qlistview-dnd/model.cpp | 6 +-- doc/src/snippets/qlistview-dnd/model.h | 6 +-- doc/src/snippets/qlistview-using/main.cpp | 4 +- doc/src/snippets/qlistview-using/mainwindow.cpp | 4 +- doc/src/snippets/qlistview-using/mainwindow.h | 4 +- doc/src/snippets/qlistview-using/model.cpp | 6 +-- doc/src/snippets/qlistview-using/model.h | 6 +-- doc/src/snippets/qlistwidget-dnd/main.cpp | 4 +- doc/src/snippets/qlistwidget-dnd/mainwindow.cpp | 4 +- doc/src/snippets/qlistwidget-dnd/mainwindow.h | 4 +- doc/src/snippets/qlistwidget-using/main.cpp | 4 +- doc/src/snippets/qlistwidget-using/mainwindow.cpp | 4 +- doc/src/snippets/qlistwidget-using/mainwindow.h | 4 +- doc/src/snippets/qmake/delegate.h | 4 +- doc/src/snippets/qmake/main.cpp | 4 +- doc/src/snippets/qmake/model.cpp | 4 +- doc/src/snippets/qmake/model.h | 4 +- doc/src/snippets/qmake/paintwidget_mac.cpp | 4 +- doc/src/snippets/qmake/paintwidget_unix.cpp | 4 +- doc/src/snippets/qmake/paintwidget_win.cpp | 4 +- doc/src/snippets/qmake/view.h | 4 +- doc/src/snippets/qmetaobject-invokable/main.cpp | 4 +- doc/src/snippets/qmetaobject-invokable/window.cpp | 4 +- doc/src/snippets/qmetaobject-invokable/window.h | 4 +- doc/src/snippets/qprocess-environment/main.cpp | 4 +- .../snippets/qprocess/qprocess-simpleexecution.cpp | 4 +- doc/src/snippets/qsignalmapper/buttonwidget.cpp | 4 +- doc/src/snippets/qsignalmapper/buttonwidget.h | 4 +- doc/src/snippets/qsignalmapper/main.cpp | 4 +- doc/src/snippets/qsignalmapper/mainwindow.h | 4 +- .../qsortfilterproxymodel-details/main.cpp | 4 +- doc/src/snippets/qsortfilterproxymodel/main.cpp | 4 +- doc/src/snippets/qsplashscreen/main.cpp | 4 +- doc/src/snippets/qsplashscreen/mainwindow.cpp | 4 +- doc/src/snippets/qsplashscreen/mainwindow.h | 4 +- doc/src/snippets/qsql-namespace/main.cpp | 4 +- doc/src/snippets/qstack/main.cpp | 4 +- doc/src/snippets/qstackedlayout/main.cpp | 4 +- doc/src/snippets/qstackedwidget/main.cpp | 4 +- doc/src/snippets/qstandarditemmodel/main.cpp | 4 +- doc/src/snippets/qstatustipevent/main.cpp | 4 +- doc/src/snippets/qstring/main.cpp | 4 +- doc/src/snippets/qstringlist/main.cpp | 4 +- doc/src/snippets/qstringlistmodel/main.cpp | 4 +- doc/src/snippets/qstyleoption/main.cpp | 4 +- doc/src/snippets/qstyleplugin/main.cpp | 4 +- doc/src/snippets/qsvgwidget/main.cpp | 4 +- doc/src/snippets/qt-namespace/main.cpp | 4 +- doc/src/snippets/qtablewidget-dnd/main.cpp | 4 +- doc/src/snippets/qtablewidget-dnd/mainwindow.cpp | 4 +- doc/src/snippets/qtablewidget-dnd/mainwindow.h | 4 +- doc/src/snippets/qtablewidget-resizing/main.cpp | 4 +- .../snippets/qtablewidget-resizing/mainwindow.cpp | 4 +- .../snippets/qtablewidget-resizing/mainwindow.h | 4 +- doc/src/snippets/qtablewidget-using/main.cpp | 4 +- doc/src/snippets/qtablewidget-using/mainwindow.cpp | 4 +- doc/src/snippets/qtablewidget-using/mainwindow.h | 4 +- doc/src/snippets/qtcast/qtcast.cpp | 4 +- doc/src/snippets/qtcast/qtcast.h | 4 +- doc/src/snippets/qtest-namespace/main.cpp | 4 +- doc/src/snippets/qtreeview-dnd/dragdropmodel.cpp | 6 +-- doc/src/snippets/qtreeview-dnd/dragdropmodel.h | 6 +-- doc/src/snippets/qtreeview-dnd/main.cpp | 4 +- doc/src/snippets/qtreeview-dnd/mainwindow.cpp | 4 +- doc/src/snippets/qtreeview-dnd/mainwindow.h | 4 +- doc/src/snippets/qtreeview-dnd/treeitem.cpp | 4 +- doc/src/snippets/qtreeview-dnd/treeitem.h | 4 +- doc/src/snippets/qtreeview-dnd/treemodel.cpp | 4 +- doc/src/snippets/qtreeview-dnd/treemodel.h | 4 +- doc/src/snippets/qtreewidget-using/main.cpp | 4 +- doc/src/snippets/qtreewidget-using/mainwindow.cpp | 4 +- doc/src/snippets/qtreewidget-using/mainwindow.h | 4 +- .../qtreewidgetitemiterator-using/main.cpp | 4 +- .../qtreewidgetitemiterator-using/mainwindow.cpp | 4 +- .../qtreewidgetitemiterator-using/mainwindow.h | 4 +- doc/src/snippets/qtscript/evaluation/main.cpp | 4 +- .../snippets/qtscript/registeringobjects/main.cpp | 4 +- .../qtscript/registeringobjects/myobject.cpp | 4 +- .../qtscript/registeringobjects/myobject.h | 4 +- .../snippets/qtscript/registeringvalues/main.cpp | 4 +- doc/src/snippets/qtscript/scriptedslot/main.cpp | 4 +- doc/src/snippets/quiloader/main.cpp | 4 +- doc/src/snippets/quiloader/mywidget.cpp | 4 +- doc/src/snippets/quiloader/mywidget.h | 4 +- doc/src/snippets/qx11embedcontainer/main.cpp | 4 +- doc/src/snippets/qx11embedwidget/embedwidget.cpp | 4 +- doc/src/snippets/qx11embedwidget/embedwidget.h | 4 +- doc/src/snippets/qx11embedwidget/main.cpp | 4 +- doc/src/snippets/qxmlstreamwriter/main.cpp | 4 +- doc/src/snippets/reading-selections/main.cpp | 4 +- doc/src/snippets/reading-selections/model.cpp | 4 +- doc/src/snippets/reading-selections/model.h | 4 +- doc/src/snippets/reading-selections/window.cpp | 4 +- doc/src/snippets/reading-selections/window.h | 4 +- doc/src/snippets/scribe-overview/main.cpp | 4 +- doc/src/snippets/separations/finalwidget.cpp | 4 +- doc/src/snippets/separations/finalwidget.h | 4 +- doc/src/snippets/separations/main.cpp | 4 +- doc/src/snippets/separations/screenwidget.cpp | 4 +- doc/src/snippets/separations/screenwidget.h | 4 +- doc/src/snippets/separations/separations.qdoc | 4 +- doc/src/snippets/separations/viewer.cpp | 4 +- doc/src/snippets/separations/viewer.h | 4 +- doc/src/snippets/settings/settings.cpp | 4 +- doc/src/snippets/shareddirmodel/main.cpp | 4 +- doc/src/snippets/sharedemployee/employee.cpp | 4 +- doc/src/snippets/sharedemployee/employee.h | 4 +- doc/src/snippets/sharedemployee/main.cpp | 4 +- doc/src/snippets/sharedtablemodel/main.cpp | 4 +- doc/src/snippets/sharedtablemodel/model.cpp | 4 +- doc/src/snippets/sharedtablemodel/model.h | 4 +- doc/src/snippets/signalsandslots/lcdnumber.cpp | 4 +- doc/src/snippets/signalsandslots/lcdnumber.h | 4 +- .../snippets/signalsandslots/signalsandslots.cpp | 4 +- doc/src/snippets/signalsandslots/signalsandslots.h | 4 +- doc/src/snippets/simplemodel-use/main.cpp | 4 +- doc/src/snippets/splitter/splitter.cpp | 4 +- doc/src/snippets/splitterhandle/main.cpp | 4 +- doc/src/snippets/splitterhandle/splitter.cpp | 4 +- doc/src/snippets/splitterhandle/splitter.h | 4 +- doc/src/snippets/sqldatabase/sqldatabase.cpp | 4 +- doc/src/snippets/streaming/main.cpp | 4 +- doc/src/snippets/stringlistmodel/main.cpp | 4 +- doc/src/snippets/stringlistmodel/model.cpp | 4 +- doc/src/snippets/stringlistmodel/model.h | 4 +- doc/src/snippets/styles/styles.cpp | 4 +- doc/src/snippets/textblock-formats/main.cpp | 4 +- doc/src/snippets/textblock-fragments/main.cpp | 4 +- .../snippets/textblock-fragments/mainwindow.cpp | 4 +- doc/src/snippets/textblock-fragments/mainwindow.h | 4 +- doc/src/snippets/textblock-fragments/xmlwriter.cpp | 4 +- doc/src/snippets/textblock-fragments/xmlwriter.h | 4 +- doc/src/snippets/textdocument-blocks/main.cpp | 4 +- .../snippets/textdocument-blocks/mainwindow.cpp | 4 +- doc/src/snippets/textdocument-blocks/mainwindow.h | 4 +- doc/src/snippets/textdocument-blocks/xmlwriter.cpp | 4 +- doc/src/snippets/textdocument-blocks/xmlwriter.h | 4 +- doc/src/snippets/textdocument-charformats/main.cpp | 4 +- doc/src/snippets/textdocument-css/main.cpp | 4 +- doc/src/snippets/textdocument-cursors/main.cpp | 4 +- doc/src/snippets/textdocument-find/main.cpp | 4 +- doc/src/snippets/textdocument-frames/main.cpp | 4 +- .../snippets/textdocument-frames/mainwindow.cpp | 4 +- doc/src/snippets/textdocument-frames/mainwindow.h | 4 +- doc/src/snippets/textdocument-frames/xmlwriter.cpp | 4 +- doc/src/snippets/textdocument-frames/xmlwriter.h | 4 +- doc/src/snippets/textdocument-imagedrop/main.cpp | 4 +- .../snippets/textdocument-imagedrop/textedit.cpp | 4 +- doc/src/snippets/textdocument-imagedrop/textedit.h | 4 +- doc/src/snippets/textdocument-imageformat/main.cpp | 4 +- doc/src/snippets/textdocument-images/main.cpp | 4 +- doc/src/snippets/textdocument-listitems/main.cpp | 4 +- .../snippets/textdocument-listitems/mainwindow.cpp | 4 +- .../snippets/textdocument-listitems/mainwindow.h | 4 +- doc/src/snippets/textdocument-lists/main.cpp | 4 +- doc/src/snippets/textdocument-lists/mainwindow.cpp | 4 +- doc/src/snippets/textdocument-lists/mainwindow.h | 4 +- doc/src/snippets/textdocument-printing/main.cpp | 4 +- .../snippets/textdocument-printing/mainwindow.cpp | 4 +- .../snippets/textdocument-printing/mainwindow.h | 4 +- doc/src/snippets/textdocument-resources/main.cpp | 4 +- doc/src/snippets/textdocument-selections/main.cpp | 4 +- .../textdocument-selections/mainwindow.cpp | 4 +- .../snippets/textdocument-selections/mainwindow.h | 4 +- doc/src/snippets/textdocument-tables/main.cpp | 4 +- .../snippets/textdocument-tables/mainwindow.cpp | 4 +- doc/src/snippets/textdocument-tables/mainwindow.h | 4 +- doc/src/snippets/textdocument-tables/xmlwriter.cpp | 4 +- doc/src/snippets/textdocument-tables/xmlwriter.h | 4 +- doc/src/snippets/textdocument-texttable/main.cpp | 4 +- doc/src/snippets/textdocumentendsnippet.cpp | 4 +- doc/src/snippets/threads/threads.cpp | 4 +- doc/src/snippets/threads/threads.h | 4 +- doc/src/snippets/timeline/main.cpp | 4 +- doc/src/snippets/timers/timers.cpp | 4 +- doc/src/snippets/transform/main.cpp | 4 +- doc/src/snippets/uitools/calculatorform/main.cpp | 4 +- doc/src/snippets/updating-selections/main.cpp | 4 +- doc/src/snippets/updating-selections/model.cpp | 4 +- doc/src/snippets/updating-selections/model.h | 4 +- doc/src/snippets/updating-selections/window.cpp | 4 +- doc/src/snippets/updating-selections/window.h | 4 +- doc/src/snippets/whatsthis/whatsthis.cpp | 4 +- doc/src/snippets/widget-mask/main.cpp | 4 +- doc/src/snippets/xml/prettyprint/main.cpp | 4 +- doc/src/snippets/xml/rsslisting/handler.cpp | 4 +- doc/src/snippets/xml/rsslisting/handler.h | 4 +- doc/src/snippets/xml/rsslisting/main.cpp | 4 +- doc/src/snippets/xml/rsslisting/rsslisting.cpp | 4 +- doc/src/snippets/xml/rsslisting/rsslisting.h | 4 +- doc/src/snippets/xml/simpleparse/handler.cpp | 4 +- doc/src/snippets/xml/simpleparse/handler.h | 4 +- doc/src/snippets/xml/simpleparse/main.cpp | 4 +- doc/src/sql-driver.qdoc | 4 +- doc/src/styles.qdoc | 4 +- doc/src/stylesheet.qdoc | 4 +- doc/src/templates.qdoc | 4 +- doc/src/threads.qdoc | 4 +- doc/src/timers.qdoc | 4 +- doc/src/tools-list.qdoc | 4 +- doc/src/topics.qdoc | 4 +- doc/src/trademarks.qdoc | 4 +- doc/src/trolltech-webpages.qdoc | 4 +- doc/src/tutorials/addressbook-fr.qdoc | 4 +- doc/src/tutorials/addressbook.qdoc | 4 +- doc/src/tutorials/widgets-tutorial.qdoc | 4 +- doc/src/uic.qdoc | 4 +- doc/src/unicode.qdoc | 4 +- doc/src/unix-signal-handlers.qdoc | 4 +- doc/src/wince-customization.qdoc | 4 +- doc/src/wince-introduction.qdoc | 4 +- doc/src/wince-opengl.qdoc | 4 +- doc/src/winsystem.qdoc | 4 +- doc/src/xquery-introduction.qdoc | 4 +- examples/activeqt/comapp/main.cpp | 4 +- examples/activeqt/dotnet/wrapper/lib/networker.cpp | 4 +- examples/activeqt/dotnet/wrapper/lib/networker.h | 4 +- examples/activeqt/dotnet/wrapper/lib/tools.cpp | 4 +- examples/activeqt/dotnet/wrapper/lib/tools.h | 4 +- examples/activeqt/dotnet/wrapper/lib/worker.cpp | 4 +- examples/activeqt/dotnet/wrapper/lib/worker.h | 4 +- examples/activeqt/hierarchy/main.cpp | 4 +- examples/activeqt/hierarchy/objects.cpp | 4 +- examples/activeqt/hierarchy/objects.h | 4 +- examples/activeqt/menus/main.cpp | 4 +- examples/activeqt/menus/menus.cpp | 4 +- examples/activeqt/menus/menus.h | 4 +- examples/activeqt/multiple/ax1.h | 4 +- examples/activeqt/multiple/ax2.h | 4 +- examples/activeqt/multiple/main.cpp | 4 +- examples/activeqt/opengl/glbox.cpp | 4 +- examples/activeqt/opengl/glbox.h | 4 +- examples/activeqt/opengl/globjwin.cpp | 4 +- examples/activeqt/opengl/globjwin.h | 4 +- examples/activeqt/opengl/main.cpp | 4 +- examples/activeqt/qutlook/addressview.cpp | 4 +- examples/activeqt/qutlook/addressview.h | 4 +- examples/activeqt/qutlook/main.cpp | 4 +- examples/activeqt/simple/main.cpp | 4 +- examples/activeqt/webbrowser/main.cpp | 4 +- examples/activeqt/webbrowser/webaxwidget.h | 4 +- examples/activeqt/wrapper/main.cpp | 4 +- .../assistant/simpletextviewer/findfiledialog.cpp | 4 +- .../assistant/simpletextviewer/findfiledialog.h | 4 +- examples/assistant/simpletextviewer/main.cpp | 4 +- examples/assistant/simpletextviewer/mainwindow.cpp | 4 +- examples/assistant/simpletextviewer/mainwindow.h | 4 +- examples/dbus/complexpingpong/complexping.cpp | 4 +- examples/dbus/complexpingpong/complexping.h | 4 +- examples/dbus/complexpingpong/complexpong.cpp | 4 +- examples/dbus/complexpingpong/complexpong.h | 4 +- examples/dbus/complexpingpong/ping-common.h | 4 +- examples/dbus/dbus-chat/chat.cpp | 4 +- examples/dbus/dbus-chat/chat.h | 4 +- examples/dbus/listnames/listnames.cpp | 4 +- examples/dbus/pingpong/ping-common.h | 4 +- examples/dbus/pingpong/ping.cpp | 4 +- examples/dbus/pingpong/pong.cpp | 4 +- examples/dbus/pingpong/pong.h | 4 +- examples/dbus/remotecontrolledcar/car/car.cpp | 4 +- examples/dbus/remotecontrolledcar/car/car.h | 4 +- examples/dbus/remotecontrolledcar/car/main.cpp | 4 +- .../remotecontrolledcar/controller/controller.cpp | 4 +- .../remotecontrolledcar/controller/controller.h | 4 +- .../dbus/remotecontrolledcar/controller/main.cpp | 4 +- .../designer/calculatorbuilder/calculatorform.cpp | 4 +- .../designer/calculatorbuilder/calculatorform.h | 4 +- examples/designer/calculatorbuilder/main.cpp | 4 +- .../designer/calculatorform/calculatorform.cpp | 4 +- examples/designer/calculatorform/calculatorform.h | 4 +- examples/designer/calculatorform/main.cpp | 4 +- .../containerextension/multipagewidget.cpp | 4 +- .../designer/containerextension/multipagewidget.h | 4 +- .../multipagewidgetcontainerextension.cpp | 4 +- .../multipagewidgetcontainerextension.h | 4 +- .../multipagewidgetextensionfactory.cpp | 4 +- .../multipagewidgetextensionfactory.h | 4 +- .../containerextension/multipagewidgetplugin.cpp | 4 +- .../containerextension/multipagewidgetplugin.h | 4 +- .../designer/customwidgetplugin/analogclock.cpp | 4 +- examples/designer/customwidgetplugin/analogclock.h | 4 +- .../customwidgetplugin/customwidgetplugin.cpp | 4 +- .../customwidgetplugin/customwidgetplugin.h | 4 +- examples/designer/taskmenuextension/tictactoe.cpp | 4 +- examples/designer/taskmenuextension/tictactoe.h | 4 +- .../designer/taskmenuextension/tictactoedialog.cpp | 4 +- .../designer/taskmenuextension/tictactoedialog.h | 4 +- .../designer/taskmenuextension/tictactoeplugin.cpp | 4 +- .../designer/taskmenuextension/tictactoeplugin.h | 4 +- .../taskmenuextension/tictactoetaskmenu.cpp | 4 +- .../designer/taskmenuextension/tictactoetaskmenu.h | 4 +- examples/designer/worldtimeclockbuilder/main.cpp | 4 +- .../worldtimeclockplugin/worldtimeclock.cpp | 4 +- .../designer/worldtimeclockplugin/worldtimeclock.h | 4 +- .../worldtimeclockplugin/worldtimeclockplugin.cpp | 4 +- .../worldtimeclockplugin/worldtimeclockplugin.h | 4 +- examples/desktop/screenshot/main.cpp | 4 +- examples/desktop/screenshot/screenshot.cpp | 4 +- examples/desktop/screenshot/screenshot.h | 4 +- examples/desktop/systray/main.cpp | 4 +- examples/desktop/systray/window.cpp | 4 +- examples/desktop/systray/window.h | 4 +- examples/dialogs/classwizard/classwizard.cpp | 4 +- examples/dialogs/classwizard/classwizard.h | 4 +- examples/dialogs/classwizard/main.cpp | 4 +- examples/dialogs/configdialog/configdialog.cpp | 4 +- examples/dialogs/configdialog/configdialog.h | 4 +- examples/dialogs/configdialog/main.cpp | 4 +- examples/dialogs/configdialog/pages.cpp | 4 +- examples/dialogs/configdialog/pages.h | 4 +- examples/dialogs/extension/finddialog.cpp | 4 +- examples/dialogs/extension/finddialog.h | 4 +- examples/dialogs/extension/main.cpp | 4 +- examples/dialogs/findfiles/main.cpp | 4 +- examples/dialogs/findfiles/window.cpp | 4 +- examples/dialogs/findfiles/window.h | 4 +- examples/dialogs/licensewizard/licensewizard.cpp | 4 +- examples/dialogs/licensewizard/licensewizard.h | 4 +- examples/dialogs/licensewizard/main.cpp | 4 +- examples/dialogs/sipdialog/dialog.cpp | 4 +- examples/dialogs/sipdialog/dialog.h | 4 +- examples/dialogs/sipdialog/main.cpp | 4 +- examples/dialogs/standarddialogs/dialog.cpp | 4 +- examples/dialogs/standarddialogs/dialog.h | 4 +- examples/dialogs/standarddialogs/main.cpp | 4 +- examples/dialogs/tabdialog/main.cpp | 4 +- examples/dialogs/tabdialog/tabdialog.cpp | 4 +- examples/dialogs/tabdialog/tabdialog.h | 4 +- examples/dialogs/trivialwizard/trivialwizard.cpp | 4 +- .../draganddrop/delayedencoding/images/example.svg | 4 +- examples/draganddrop/delayedencoding/main.cpp | 4 +- examples/draganddrop/delayedencoding/mimedata.cpp | 4 +- examples/draganddrop/delayedencoding/mimedata.h | 4 +- .../draganddrop/delayedencoding/sourcewidget.cpp | 4 +- .../draganddrop/delayedencoding/sourcewidget.h | 4 +- examples/draganddrop/draggableicons/dragwidget.cpp | 4 +- examples/draganddrop/draggableicons/dragwidget.h | 4 +- examples/draganddrop/draggableicons/main.cpp | 4 +- examples/draganddrop/draggabletext/draglabel.cpp | 4 +- examples/draganddrop/draggabletext/draglabel.h | 4 +- examples/draganddrop/draggabletext/dragwidget.cpp | 4 +- examples/draganddrop/draggabletext/dragwidget.h | 4 +- examples/draganddrop/draggabletext/main.cpp | 4 +- examples/draganddrop/dropsite/droparea.cpp | 4 +- examples/draganddrop/dropsite/droparea.h | 4 +- examples/draganddrop/dropsite/dropsitewindow.cpp | 4 +- examples/draganddrop/dropsite/dropsitewindow.h | 4 +- examples/draganddrop/dropsite/main.cpp | 4 +- examples/draganddrop/fridgemagnets/draglabel.cpp | 4 +- examples/draganddrop/fridgemagnets/draglabel.h | 4 +- examples/draganddrop/fridgemagnets/dragwidget.cpp | 4 +- examples/draganddrop/fridgemagnets/dragwidget.h | 4 +- examples/draganddrop/fridgemagnets/main.cpp | 4 +- examples/draganddrop/puzzle/main.cpp | 4 +- examples/draganddrop/puzzle/mainwindow.cpp | 4 +- examples/draganddrop/puzzle/mainwindow.h | 4 +- examples/draganddrop/puzzle/pieceslist.cpp | 4 +- examples/draganddrop/puzzle/pieceslist.h | 4 +- examples/draganddrop/puzzle/puzzlewidget.cpp | 4 +- examples/draganddrop/puzzle/puzzlewidget.h | 4 +- .../basicgraphicslayouts/layoutitem.cpp | 4 +- .../graphicsview/basicgraphicslayouts/layoutitem.h | 4 +- .../graphicsview/basicgraphicslayouts/main.cpp | 4 +- .../graphicsview/basicgraphicslayouts/window.cpp | 4 +- .../graphicsview/basicgraphicslayouts/window.h | 4 +- examples/graphicsview/collidingmice/main.cpp | 4 +- examples/graphicsview/collidingmice/mouse.cpp | 4 +- examples/graphicsview/collidingmice/mouse.h | 4 +- examples/graphicsview/diagramscene/arrow.cpp | 4 +- examples/graphicsview/diagramscene/arrow.h | 4 +- examples/graphicsview/diagramscene/diagramitem.cpp | 4 +- examples/graphicsview/diagramscene/diagramitem.h | 4 +- .../graphicsview/diagramscene/diagramscene.cpp | 4 +- examples/graphicsview/diagramscene/diagramscene.h | 4 +- .../graphicsview/diagramscene/diagramtextitem.cpp | 4 +- .../graphicsview/diagramscene/diagramtextitem.h | 4 +- examples/graphicsview/diagramscene/main.cpp | 4 +- examples/graphicsview/diagramscene/mainwindow.cpp | 4 +- examples/graphicsview/diagramscene/mainwindow.h | 4 +- examples/graphicsview/dragdroprobot/coloritem.cpp | 4 +- examples/graphicsview/dragdroprobot/coloritem.h | 4 +- examples/graphicsview/dragdroprobot/main.cpp | 4 +- examples/graphicsview/dragdroprobot/robot.cpp | 4 +- examples/graphicsview/dragdroprobot/robot.h | 4 +- examples/graphicsview/elasticnodes/edge.cpp | 4 +- examples/graphicsview/elasticnodes/edge.h | 4 +- examples/graphicsview/elasticnodes/graphwidget.cpp | 4 +- examples/graphicsview/elasticnodes/graphwidget.h | 4 +- examples/graphicsview/elasticnodes/main.cpp | 4 +- examples/graphicsview/elasticnodes/node.cpp | 4 +- examples/graphicsview/elasticnodes/node.h | 4 +- examples/graphicsview/padnavigator/main.cpp | 4 +- examples/graphicsview/padnavigator/panel.cpp | 4 +- examples/graphicsview/padnavigator/panel.h | 4 +- .../graphicsview/padnavigator/roundrectitem.cpp | 4 +- examples/graphicsview/padnavigator/roundrectitem.h | 4 +- examples/graphicsview/padnavigator/splashitem.cpp | 4 +- examples/graphicsview/padnavigator/splashitem.h | 4 +- .../graphicsview/portedasteroids/animateditem.cpp | 4 +- .../graphicsview/portedasteroids/animateditem.h | 4 +- examples/graphicsview/portedasteroids/ledmeter.cpp | 4 +- examples/graphicsview/portedasteroids/ledmeter.h | 4 +- examples/graphicsview/portedasteroids/main.cpp | 4 +- examples/graphicsview/portedasteroids/sprites.h | 4 +- examples/graphicsview/portedasteroids/toplevel.cpp | 4 +- examples/graphicsview/portedasteroids/toplevel.h | 4 +- examples/graphicsview/portedasteroids/view.cpp | 4 +- examples/graphicsview/portedasteroids/view.h | 4 +- examples/graphicsview/portedcanvas/blendshadow.cpp | 4 +- examples/graphicsview/portedcanvas/canvas.cpp | 4 +- examples/graphicsview/portedcanvas/canvas.h | 4 +- examples/graphicsview/portedcanvas/main.cpp | 4 +- examples/graphicsview/portedcanvas/makeimg.cpp | 4 +- examples/help/contextsensitivehelp/helpbrowser.cpp | 4 +- examples/help/contextsensitivehelp/helpbrowser.h | 4 +- examples/help/contextsensitivehelp/main.cpp | 4 +- .../contextsensitivehelp/wateringconfigdialog.cpp | 4 +- .../contextsensitivehelp/wateringconfigdialog.h | 4 +- examples/help/remotecontrol/main.cpp | 4 +- examples/help/remotecontrol/remotecontrol.cpp | 4 +- examples/help/remotecontrol/remotecontrol.h | 4 +- examples/help/simpletextviewer/assistant.cpp | 4 +- examples/help/simpletextviewer/assistant.h | 4 +- examples/help/simpletextviewer/findfiledialog.cpp | 4 +- examples/help/simpletextviewer/findfiledialog.h | 4 +- examples/help/simpletextviewer/main.cpp | 4 +- examples/help/simpletextviewer/mainwindow.cpp | 4 +- examples/help/simpletextviewer/mainwindow.h | 4 +- examples/help/simpletextviewer/textedit.cpp | 4 +- examples/help/simpletextviewer/textedit.h | 4 +- examples/ipc/localfortuneclient/client.cpp | 4 +- examples/ipc/localfortuneclient/client.h | 4 +- examples/ipc/localfortuneclient/main.cpp | 4 +- examples/ipc/localfortuneserver/main.cpp | 4 +- examples/ipc/localfortuneserver/server.cpp | 4 +- examples/ipc/localfortuneserver/server.h | 4 +- examples/ipc/sharedmemory/dialog.cpp | 4 +- examples/ipc/sharedmemory/dialog.h | 4 +- examples/ipc/sharedmemory/main.cpp | 4 +- examples/itemviews/addressbook/adddialog.cpp | 4 +- examples/itemviews/addressbook/adddialog.h | 4 +- examples/itemviews/addressbook/addresswidget.cpp | 4 +- examples/itemviews/addressbook/addresswidget.h | 4 +- examples/itemviews/addressbook/main.cpp | 4 +- examples/itemviews/addressbook/mainwindow.cpp | 4 +- examples/itemviews/addressbook/mainwindow.h | 4 +- examples/itemviews/addressbook/newaddresstab.cpp | 4 +- examples/itemviews/addressbook/newaddresstab.h | 4 +- examples/itemviews/addressbook/tablemodel.cpp | 4 +- examples/itemviews/addressbook/tablemodel.h | 4 +- examples/itemviews/basicsortfiltermodel/main.cpp | 4 +- examples/itemviews/basicsortfiltermodel/window.cpp | 4 +- examples/itemviews/basicsortfiltermodel/window.h | 4 +- examples/itemviews/chart/main.cpp | 4 +- examples/itemviews/chart/mainwindow.cpp | 4 +- examples/itemviews/chart/mainwindow.h | 4 +- examples/itemviews/chart/pieview.cpp | 4 +- examples/itemviews/chart/pieview.h | 4 +- .../coloreditorfactory/colorlisteditor.cpp | 4 +- .../itemviews/coloreditorfactory/colorlisteditor.h | 4 +- examples/itemviews/coloreditorfactory/main.cpp | 4 +- examples/itemviews/coloreditorfactory/window.cpp | 4 +- examples/itemviews/coloreditorfactory/window.h | 4 +- examples/itemviews/combowidgetmapper/main.cpp | 4 +- examples/itemviews/combowidgetmapper/window.cpp | 4 +- examples/itemviews/combowidgetmapper/window.h | 4 +- examples/itemviews/customsortfiltermodel/main.cpp | 4 +- .../mysortfilterproxymodel.cpp | 4 +- .../customsortfiltermodel/mysortfilterproxymodel.h | 4 +- .../itemviews/customsortfiltermodel/window.cpp | 4 +- examples/itemviews/customsortfiltermodel/window.h | 4 +- examples/itemviews/dirview/main.cpp | 4 +- examples/itemviews/editabletreemodel/main.cpp | 4 +- .../itemviews/editabletreemodel/mainwindow.cpp | 4 +- examples/itemviews/editabletreemodel/mainwindow.h | 4 +- examples/itemviews/editabletreemodel/treeitem.cpp | 4 +- examples/itemviews/editabletreemodel/treeitem.h | 4 +- examples/itemviews/editabletreemodel/treemodel.cpp | 4 +- examples/itemviews/editabletreemodel/treemodel.h | 4 +- examples/itemviews/fetchmore/filelistmodel.cpp | 4 +- examples/itemviews/fetchmore/filelistmodel.h | 4 +- examples/itemviews/fetchmore/main.cpp | 4 +- examples/itemviews/fetchmore/window.cpp | 4 +- examples/itemviews/fetchmore/window.h | 4 +- examples/itemviews/pixelator/imagemodel.cpp | 4 +- examples/itemviews/pixelator/imagemodel.h | 4 +- examples/itemviews/pixelator/main.cpp | 4 +- examples/itemviews/pixelator/mainwindow.cpp | 4 +- examples/itemviews/pixelator/mainwindow.h | 4 +- examples/itemviews/pixelator/pixeldelegate.cpp | 4 +- examples/itemviews/pixelator/pixeldelegate.h | 4 +- examples/itemviews/puzzle/main.cpp | 4 +- examples/itemviews/puzzle/mainwindow.cpp | 4 +- examples/itemviews/puzzle/mainwindow.h | 4 +- examples/itemviews/puzzle/piecesmodel.cpp | 4 +- examples/itemviews/puzzle/piecesmodel.h | 4 +- examples/itemviews/puzzle/puzzlewidget.cpp | 4 +- examples/itemviews/puzzle/puzzlewidget.h | 4 +- examples/itemviews/simpledommodel/domitem.cpp | 4 +- examples/itemviews/simpledommodel/domitem.h | 4 +- examples/itemviews/simpledommodel/dommodel.cpp | 4 +- examples/itemviews/simpledommodel/dommodel.h | 4 +- examples/itemviews/simpledommodel/main.cpp | 4 +- examples/itemviews/simpledommodel/mainwindow.cpp | 4 +- examples/itemviews/simpledommodel/mainwindow.h | 4 +- examples/itemviews/simpletreemodel/main.cpp | 4 +- examples/itemviews/simpletreemodel/treeitem.cpp | 4 +- examples/itemviews/simpletreemodel/treeitem.h | 4 +- examples/itemviews/simpletreemodel/treemodel.cpp | 4 +- examples/itemviews/simpletreemodel/treemodel.h | 4 +- examples/itemviews/simplewidgetmapper/main.cpp | 4 +- examples/itemviews/simplewidgetmapper/window.cpp | 4 +- examples/itemviews/simplewidgetmapper/window.h | 4 +- examples/itemviews/spinboxdelegate/delegate.cpp | 4 +- examples/itemviews/spinboxdelegate/delegate.h | 4 +- examples/itemviews/spinboxdelegate/main.cpp | 4 +- examples/itemviews/stardelegate/main.cpp | 4 +- examples/itemviews/stardelegate/stardelegate.cpp | 4 +- examples/itemviews/stardelegate/stardelegate.h | 4 +- examples/itemviews/stardelegate/stareditor.cpp | 4 +- examples/itemviews/stardelegate/stareditor.h | 4 +- examples/itemviews/stardelegate/starrating.cpp | 4 +- examples/itemviews/stardelegate/starrating.h | 4 +- examples/layouts/basiclayouts/dialog.cpp | 4 +- examples/layouts/basiclayouts/dialog.h | 4 +- examples/layouts/basiclayouts/main.cpp | 4 +- examples/layouts/borderlayout/borderlayout.cpp | 4 +- examples/layouts/borderlayout/borderlayout.h | 4 +- examples/layouts/borderlayout/main.cpp | 4 +- examples/layouts/borderlayout/window.cpp | 4 +- examples/layouts/borderlayout/window.h | 4 +- examples/layouts/dynamiclayouts/dialog.cpp | 4 +- examples/layouts/dynamiclayouts/dialog.h | 4 +- examples/layouts/dynamiclayouts/main.cpp | 4 +- examples/layouts/flowlayout/flowlayout.cpp | 4 +- examples/layouts/flowlayout/flowlayout.h | 4 +- examples/layouts/flowlayout/main.cpp | 4 +- examples/layouts/flowlayout/window.cpp | 4 +- examples/layouts/flowlayout/window.h | 4 +- examples/linguist/arrowpad/arrowpad.cpp | 4 +- examples/linguist/arrowpad/arrowpad.h | 4 +- examples/linguist/arrowpad/main.cpp | 4 +- examples/linguist/arrowpad/mainwindow.cpp | 4 +- examples/linguist/arrowpad/mainwindow.h | 4 +- examples/linguist/hellotr/main.cpp | 4 +- examples/linguist/trollprint/main.cpp | 4 +- examples/linguist/trollprint/mainwindow.cpp | 4 +- examples/linguist/trollprint/mainwindow.h | 4 +- examples/linguist/trollprint/printpanel.cpp | 4 +- examples/linguist/trollprint/printpanel.h | 4 +- examples/mainwindows/application/main.cpp | 4 +- examples/mainwindows/application/mainwindow.cpp | 4 +- examples/mainwindows/application/mainwindow.h | 4 +- examples/mainwindows/dockwidgets/main.cpp | 4 +- examples/mainwindows/dockwidgets/mainwindow.cpp | 4 +- examples/mainwindows/dockwidgets/mainwindow.h | 4 +- examples/mainwindows/mdi/main.cpp | 4 +- examples/mainwindows/mdi/mainwindow.cpp | 4 +- examples/mainwindows/mdi/mainwindow.h | 4 +- examples/mainwindows/mdi/mdichild.cpp | 4 +- examples/mainwindows/mdi/mdichild.h | 4 +- examples/mainwindows/menus/main.cpp | 4 +- examples/mainwindows/menus/mainwindow.cpp | 4 +- examples/mainwindows/menus/mainwindow.h | 4 +- examples/mainwindows/recentfiles/main.cpp | 4 +- examples/mainwindows/recentfiles/mainwindow.cpp | 4 +- examples/mainwindows/recentfiles/mainwindow.h | 4 +- examples/mainwindows/sdi/main.cpp | 4 +- examples/mainwindows/sdi/mainwindow.cpp | 4 +- examples/mainwindows/sdi/mainwindow.h | 4 +- .../blockingfortuneclient/blockingclient.cpp | 4 +- .../network/blockingfortuneclient/blockingclient.h | 4 +- .../blockingfortuneclient/fortunethread.cpp | 4 +- .../network/blockingfortuneclient/fortunethread.h | 4 +- examples/network/blockingfortuneclient/main.cpp | 4 +- examples/network/broadcastreceiver/main.cpp | 4 +- examples/network/broadcastreceiver/receiver.cpp | 4 +- examples/network/broadcastreceiver/receiver.h | 4 +- examples/network/broadcastsender/main.cpp | 4 +- examples/network/broadcastsender/sender.cpp | 4 +- examples/network/broadcastsender/sender.h | 4 +- examples/network/download/main.cpp | 4 +- .../network/downloadmanager/downloadmanager.cpp | 4 +- examples/network/downloadmanager/downloadmanager.h | 4 +- examples/network/downloadmanager/main.cpp | 4 +- .../network/downloadmanager/textprogressbar.cpp | 4 +- examples/network/downloadmanager/textprogressbar.h | 4 +- examples/network/fortuneclient/client.cpp | 4 +- examples/network/fortuneclient/client.h | 4 +- examples/network/fortuneclient/main.cpp | 4 +- examples/network/fortuneserver/main.cpp | 4 +- examples/network/fortuneserver/server.cpp | 4 +- examples/network/fortuneserver/server.h | 4 +- examples/network/ftp/ftpwindow.cpp | 4 +- examples/network/ftp/ftpwindow.h | 4 +- examples/network/ftp/main.cpp | 4 +- examples/network/googlesuggest/googlesuggest.cpp | 4 +- examples/network/googlesuggest/googlesuggest.h | 4 +- examples/network/googlesuggest/main.cpp | 4 +- examples/network/googlesuggest/searchbox.cpp | 4 +- examples/network/googlesuggest/searchbox.h | 4 +- examples/network/http/httpwindow.cpp | 4 +- examples/network/http/httpwindow.h | 4 +- examples/network/http/main.cpp | 4 +- examples/network/loopback/dialog.cpp | 4 +- examples/network/loopback/dialog.h | 4 +- examples/network/loopback/main.cpp | 4 +- examples/network/network-chat/chatdialog.cpp | 4 +- examples/network/network-chat/chatdialog.h | 4 +- examples/network/network-chat/client.cpp | 4 +- examples/network/network-chat/client.h | 4 +- examples/network/network-chat/connection.cpp | 4 +- examples/network/network-chat/connection.h | 4 +- examples/network/network-chat/main.cpp | 4 +- examples/network/network-chat/peermanager.cpp | 4 +- examples/network/network-chat/peermanager.h | 4 +- examples/network/network-chat/server.cpp | 4 +- examples/network/network-chat/server.h | 4 +- .../network/securesocketclient/certificateinfo.cpp | 4 +- .../network/securesocketclient/certificateinfo.h | 4 +- examples/network/securesocketclient/main.cpp | 4 +- examples/network/securesocketclient/sslclient.cpp | 4 +- examples/network/securesocketclient/sslclient.h | 4 +- examples/network/threadedfortuneserver/dialog.cpp | 4 +- examples/network/threadedfortuneserver/dialog.h | 4 +- .../threadedfortuneserver/fortuneserver.cpp | 4 +- .../network/threadedfortuneserver/fortuneserver.h | 4 +- .../threadedfortuneserver/fortunethread.cpp | 4 +- .../network/threadedfortuneserver/fortunethread.h | 4 +- examples/network/threadedfortuneserver/main.cpp | 4 +- examples/network/torrent/addtorrentdialog.cpp | 4 +- examples/network/torrent/addtorrentdialog.h | 4 +- examples/network/torrent/bencodeparser.cpp | 4 +- examples/network/torrent/bencodeparser.h | 4 +- examples/network/torrent/connectionmanager.cpp | 4 +- examples/network/torrent/connectionmanager.h | 4 +- examples/network/torrent/filemanager.cpp | 4 +- examples/network/torrent/filemanager.h | 4 +- examples/network/torrent/main.cpp | 4 +- examples/network/torrent/mainwindow.cpp | 4 +- examples/network/torrent/mainwindow.h | 4 +- examples/network/torrent/metainfo.cpp | 4 +- examples/network/torrent/metainfo.h | 4 +- examples/network/torrent/peerwireclient.cpp | 4 +- examples/network/torrent/peerwireclient.h | 4 +- examples/network/torrent/ratecontroller.cpp | 4 +- examples/network/torrent/ratecontroller.h | 4 +- examples/network/torrent/torrentclient.cpp | 4 +- examples/network/torrent/torrentclient.h | 4 +- examples/network/torrent/torrentserver.cpp | 4 +- examples/network/torrent/torrentserver.h | 4 +- examples/network/torrent/trackerclient.cpp | 4 +- examples/network/torrent/trackerclient.h | 4 +- examples/opengl/2dpainting/glwidget.cpp | 4 +- examples/opengl/2dpainting/glwidget.h | 4 +- examples/opengl/2dpainting/helper.cpp | 4 +- examples/opengl/2dpainting/helper.h | 4 +- examples/opengl/2dpainting/main.cpp | 4 +- examples/opengl/2dpainting/widget.cpp | 4 +- examples/opengl/2dpainting/widget.h | 4 +- examples/opengl/2dpainting/window.cpp | 4 +- examples/opengl/2dpainting/window.h | 4 +- examples/opengl/framebufferobject/glwidget.cpp | 4 +- examples/opengl/framebufferobject/glwidget.h | 4 +- examples/opengl/framebufferobject/main.cpp | 4 +- examples/opengl/framebufferobject2/glwidget.cpp | 4 +- examples/opengl/framebufferobject2/glwidget.h | 4 +- examples/opengl/framebufferobject2/main.cpp | 4 +- examples/opengl/grabber/glwidget.cpp | 4 +- examples/opengl/grabber/glwidget.h | 4 +- examples/opengl/grabber/main.cpp | 4 +- examples/opengl/grabber/mainwindow.cpp | 4 +- examples/opengl/grabber/mainwindow.h | 4 +- examples/opengl/hellogl/glwidget.cpp | 4 +- examples/opengl/hellogl/glwidget.h | 4 +- examples/opengl/hellogl/main.cpp | 4 +- examples/opengl/hellogl/window.cpp | 4 +- examples/opengl/hellogl/window.h | 4 +- examples/opengl/hellogl_es/bubble.cpp | 4 +- examples/opengl/hellogl_es/bubble.h | 4 +- examples/opengl/hellogl_es/cl_helper.h | 4 +- examples/opengl/hellogl_es/glwidget.cpp | 4 +- examples/opengl/hellogl_es/glwidget.h | 4 +- examples/opengl/hellogl_es/main.cpp | 4 +- examples/opengl/hellogl_es/mainwindow.cpp | 4 +- examples/opengl/hellogl_es/mainwindow.h | 4 +- examples/opengl/hellogl_es2/bubble.cpp | 4 +- examples/opengl/hellogl_es2/bubble.h | 4 +- examples/opengl/hellogl_es2/glwidget.cpp | 4 +- examples/opengl/hellogl_es2/glwidget.h | 4 +- examples/opengl/hellogl_es2/main.cpp | 4 +- examples/opengl/hellogl_es2/mainwindow.cpp | 4 +- examples/opengl/hellogl_es2/mainwindow.h | 4 +- examples/opengl/overpainting/bubble.cpp | 4 +- examples/opengl/overpainting/bubble.h | 4 +- examples/opengl/overpainting/glwidget.cpp | 4 +- examples/opengl/overpainting/glwidget.h | 4 +- examples/opengl/overpainting/main.cpp | 4 +- examples/opengl/pbuffers/glwidget.cpp | 4 +- examples/opengl/pbuffers/glwidget.h | 4 +- examples/opengl/pbuffers/main.cpp | 4 +- examples/opengl/pbuffers2/glwidget.cpp | 4 +- examples/opengl/pbuffers2/glwidget.h | 4 +- examples/opengl/pbuffers2/main.cpp | 4 +- examples/opengl/samplebuffers/glwidget.cpp | 4 +- examples/opengl/samplebuffers/glwidget.h | 4 +- examples/opengl/samplebuffers/main.cpp | 4 +- examples/opengl/textures/glwidget.cpp | 4 +- examples/opengl/textures/glwidget.h | 4 +- examples/opengl/textures/main.cpp | 4 +- examples/opengl/textures/window.cpp | 4 +- examples/opengl/textures/window.h | 4 +- examples/painting/basicdrawing/main.cpp | 4 +- examples/painting/basicdrawing/renderarea.cpp | 4 +- examples/painting/basicdrawing/renderarea.h | 4 +- examples/painting/basicdrawing/window.cpp | 4 +- examples/painting/basicdrawing/window.h | 4 +- .../painting/concentriccircles/circlewidget.cpp | 4 +- examples/painting/concentriccircles/circlewidget.h | 4 +- examples/painting/concentriccircles/main.cpp | 4 +- examples/painting/concentriccircles/window.cpp | 4 +- examples/painting/concentriccircles/window.h | 4 +- examples/painting/fontsampler/main.cpp | 4 +- examples/painting/fontsampler/mainwindow.cpp | 4 +- examples/painting/fontsampler/mainwindow.h | 4 +- .../painting/imagecomposition/imagecomposer.cpp | 4 +- examples/painting/imagecomposition/imagecomposer.h | 4 +- examples/painting/imagecomposition/main.cpp | 4 +- examples/painting/painterpaths/main.cpp | 4 +- examples/painting/painterpaths/renderarea.cpp | 4 +- examples/painting/painterpaths/renderarea.h | 4 +- examples/painting/painterpaths/window.cpp | 4 +- examples/painting/painterpaths/window.h | 4 +- examples/painting/svggenerator/displaywidget.cpp | 4 +- examples/painting/svggenerator/displaywidget.h | 4 +- examples/painting/svggenerator/main.cpp | 4 +- examples/painting/svggenerator/window.cpp | 4 +- examples/painting/svggenerator/window.h | 4 +- examples/painting/svgviewer/main.cpp | 4 +- examples/painting/svgviewer/mainwindow.cpp | 4 +- examples/painting/svgviewer/mainwindow.h | 4 +- examples/painting/svgviewer/svgview.cpp | 4 +- examples/painting/svgviewer/svgview.h | 4 +- examples/painting/transformations/main.cpp | 4 +- examples/painting/transformations/renderarea.cpp | 4 +- examples/painting/transformations/renderarea.h | 4 +- examples/painting/transformations/window.cpp | 4 +- examples/painting/transformations/window.h | 4 +- examples/phonon/capabilities/main.cpp | 4 +- examples/phonon/capabilities/window.cpp | 4 +- examples/phonon/capabilities/window.h | 4 +- examples/phonon/musicplayer/main.cpp | 4 +- examples/phonon/musicplayer/mainwindow.cpp | 4 +- examples/phonon/musicplayer/mainwindow.h | 4 +- examples/qmake/precompile/main.cpp | 4 +- examples/qmake/precompile/mydialog.cpp | 4 +- examples/qmake/precompile/mydialog.h | 4 +- examples/qmake/precompile/myobject.cpp | 4 +- examples/qmake/precompile/myobject.h | 4 +- examples/qmake/precompile/stable.h | 4 +- examples/qmake/precompile/util.cpp | 4 +- examples/qmake/tutorial/hello.cpp | 4 +- examples/qmake/tutorial/hello.h | 4 +- examples/qmake/tutorial/hellounix.cpp | 4 +- examples/qmake/tutorial/hellowin.cpp | 4 +- examples/qmake/tutorial/main.cpp | 4 +- .../qtconcurrent/imagescaling/imagescaling.cpp | 4 +- examples/qtconcurrent/imagescaling/imagescaling.h | 4 +- examples/qtconcurrent/imagescaling/main.cpp | 4 +- examples/qtconcurrent/map/main.cpp | 4 +- examples/qtconcurrent/progressdialog/main.cpp | 4 +- examples/qtconcurrent/runfunction/main.cpp | 4 +- examples/qtconcurrent/wordcount/main.cpp | 4 +- examples/qtestlib/tutorial1/testqstring.cpp | 4 +- examples/qtestlib/tutorial2/testqstring.cpp | 4 +- examples/qtestlib/tutorial3/testgui.cpp | 4 +- examples/qtestlib/tutorial4/testgui.cpp | 4 +- examples/qtestlib/tutorial5/benchmarking.cpp | 4 +- examples/qws/ahigl/qscreenahigl_qws.cpp | 4 +- examples/qws/ahigl/qscreenahigl_qws.h | 4 +- examples/qws/ahigl/qscreenahiglplugin.cpp | 4 +- examples/qws/ahigl/qwindowsurface_ahigl.cpp | 4 +- examples/qws/ahigl/qwindowsurface_ahigl_p.h | 4 +- examples/qws/dbscreen/dbscreen.cpp | 4 +- examples/qws/dbscreen/dbscreen.h | 4 +- examples/qws/dbscreen/dbscreendriverplugin.cpp | 4 +- examples/qws/framebuffer/main.c | 4 +- examples/qws/mousecalibration/calibration.cpp | 4 +- examples/qws/mousecalibration/calibration.h | 4 +- examples/qws/mousecalibration/main.cpp | 4 +- examples/qws/mousecalibration/scribblewidget.cpp | 4 +- examples/qws/mousecalibration/scribblewidget.h | 4 +- examples/qws/simpledecoration/analogclock.cpp | 4 +- examples/qws/simpledecoration/analogclock.h | 4 +- examples/qws/simpledecoration/main.cpp | 4 +- examples/qws/simpledecoration/mydecoration.cpp | 4 +- examples/qws/simpledecoration/mydecoration.h | 4 +- examples/qws/svgalib/svgalibpaintdevice.cpp | 4 +- examples/qws/svgalib/svgalibpaintdevice.h | 4 +- examples/qws/svgalib/svgalibpaintengine.cpp | 4 +- examples/qws/svgalib/svgalibpaintengine.h | 4 +- examples/qws/svgalib/svgalibplugin.cpp | 4 +- examples/qws/svgalib/svgalibscreen.cpp | 4 +- examples/qws/svgalib/svgalibscreen.h | 4 +- examples/qws/svgalib/svgalibsurface.cpp | 4 +- examples/qws/svgalib/svgalibsurface.h | 4 +- examples/richtext/calendar/main.cpp | 4 +- examples/richtext/calendar/mainwindow.cpp | 4 +- examples/richtext/calendar/mainwindow.h | 4 +- examples/richtext/orderform/detailsdialog.cpp | 4 +- examples/richtext/orderform/detailsdialog.h | 4 +- examples/richtext/orderform/main.cpp | 4 +- examples/richtext/orderform/mainwindow.cpp | 4 +- examples/richtext/orderform/mainwindow.h | 4 +- .../richtext/syntaxhighlighter/highlighter.cpp | 4 +- examples/richtext/syntaxhighlighter/highlighter.h | 4 +- examples/richtext/syntaxhighlighter/main.cpp | 4 +- examples/richtext/syntaxhighlighter/mainwindow.cpp | 4 +- examples/richtext/syntaxhighlighter/mainwindow.h | 4 +- examples/richtext/textobject/main.cpp | 4 +- examples/richtext/textobject/svgtextobject.cpp | 4 +- examples/richtext/textobject/svgtextobject.h | 4 +- examples/richtext/textobject/window.cpp | 4 +- examples/richtext/textobject/window.h | 4 +- examples/script/calculator/main.cpp | 4 +- examples/script/context2d/context2d.cpp | 4 +- examples/script/context2d/context2d.h | 4 +- examples/script/context2d/domimage.cpp | 4 +- examples/script/context2d/domimage.h | 4 +- examples/script/context2d/environment.cpp | 4 +- examples/script/context2d/environment.h | 4 +- examples/script/context2d/main.cpp | 4 +- examples/script/context2d/qcontext2dcanvas.cpp | 4 +- examples/script/context2d/qcontext2dcanvas.h | 4 +- examples/script/context2d/window.cpp | 4 +- examples/script/context2d/window.h | 4 +- examples/script/customclass/bytearrayclass.cpp | 4 +- examples/script/customclass/bytearrayclass.h | 4 +- examples/script/customclass/bytearrayprototype.cpp | 4 +- examples/script/customclass/bytearrayprototype.h | 4 +- examples/script/customclass/main.cpp | 4 +- examples/script/defaultprototypes/main.cpp | 4 +- examples/script/defaultprototypes/prototypes.cpp | 4 +- examples/script/defaultprototypes/prototypes.h | 4 +- examples/script/helloscript/main.cpp | 4 +- examples/script/marshal/main.cpp | 4 +- examples/script/qscript/main.cpp | 4 +- examples/script/qsdbg/main.cpp | 4 +- examples/script/qsdbg/scriptbreakpointmanager.cpp | 4 +- examples/script/qsdbg/scriptbreakpointmanager.h | 4 +- examples/script/qsdbg/scriptdebugger.cpp | 4 +- examples/script/qsdbg/scriptdebugger.h | 4 +- examples/script/qstetrix/main.cpp | 4 +- examples/script/qstetrix/tetrixboard.cpp | 4 +- examples/script/qstetrix/tetrixboard.h | 4 +- examples/sql/cachedtable/main.cpp | 4 +- examples/sql/cachedtable/tableeditor.cpp | 4 +- examples/sql/cachedtable/tableeditor.h | 4 +- examples/sql/connection.h | 4 +- examples/sql/drilldown/imageitem.cpp | 4 +- examples/sql/drilldown/imageitem.h | 4 +- examples/sql/drilldown/informationwindow.cpp | 4 +- examples/sql/drilldown/informationwindow.h | 4 +- examples/sql/drilldown/main.cpp | 4 +- examples/sql/drilldown/view.cpp | 4 +- examples/sql/drilldown/view.h | 4 +- examples/sql/masterdetail/database.h | 4 +- examples/sql/masterdetail/dialog.cpp | 4 +- examples/sql/masterdetail/dialog.h | 4 +- examples/sql/masterdetail/main.cpp | 4 +- examples/sql/masterdetail/mainwindow.cpp | 4 +- examples/sql/masterdetail/mainwindow.h | 4 +- examples/sql/querymodel/customsqlmodel.cpp | 4 +- examples/sql/querymodel/customsqlmodel.h | 4 +- examples/sql/querymodel/editablesqlmodel.cpp | 4 +- examples/sql/querymodel/editablesqlmodel.h | 4 +- examples/sql/querymodel/main.cpp | 4 +- .../relationaltablemodel/relationaltablemodel.cpp | 4 +- examples/sql/sqlwidgetmapper/main.cpp | 4 +- examples/sql/sqlwidgetmapper/window.cpp | 4 +- examples/sql/sqlwidgetmapper/window.h | 4 +- examples/sql/tablemodel/tablemodel.cpp | 4 +- examples/threads/mandelbrot/main.cpp | 4 +- examples/threads/mandelbrot/mandelbrotwidget.cpp | 4 +- examples/threads/mandelbrot/mandelbrotwidget.h | 4 +- examples/threads/mandelbrot/renderthread.cpp | 4 +- examples/threads/mandelbrot/renderthread.h | 4 +- examples/threads/queuedcustomtype/block.cpp | 4 +- examples/threads/queuedcustomtype/block.h | 4 +- examples/threads/queuedcustomtype/main.cpp | 4 +- examples/threads/queuedcustomtype/renderthread.cpp | 4 +- examples/threads/queuedcustomtype/renderthread.h | 4 +- examples/threads/queuedcustomtype/window.cpp | 4 +- examples/threads/queuedcustomtype/window.h | 4 +- examples/threads/semaphores/semaphores.cpp | 4 +- examples/threads/waitconditions/waitconditions.cpp | 4 +- examples/tools/codecs/main.cpp | 4 +- examples/tools/codecs/mainwindow.cpp | 4 +- examples/tools/codecs/mainwindow.h | 4 +- examples/tools/codecs/previewform.cpp | 4 +- examples/tools/codecs/previewform.h | 4 +- examples/tools/completer/dirmodel.cpp | 4 +- examples/tools/completer/dirmodel.h | 4 +- examples/tools/completer/main.cpp | 4 +- examples/tools/completer/mainwindow.cpp | 4 +- examples/tools/completer/mainwindow.h | 4 +- examples/tools/customcompleter/main.cpp | 4 +- examples/tools/customcompleter/mainwindow.cpp | 4 +- examples/tools/customcompleter/mainwindow.h | 4 +- examples/tools/customcompleter/textedit.cpp | 4 +- examples/tools/customcompleter/textedit.h | 4 +- examples/tools/customtype/main.cpp | 4 +- examples/tools/customtype/message.cpp | 4 +- examples/tools/customtype/message.h | 4 +- examples/tools/customtypesending/main.cpp | 4 +- examples/tools/customtypesending/message.cpp | 4 +- examples/tools/customtypesending/message.h | 4 +- examples/tools/customtypesending/window.cpp | 4 +- examples/tools/customtypesending/window.h | 4 +- .../tools/echoplugin/echowindow/echointerface.h | 4 +- .../tools/echoplugin/echowindow/echowindow.cpp | 4 +- examples/tools/echoplugin/echowindow/echowindow.h | 4 +- examples/tools/echoplugin/echowindow/main.cpp | 4 +- examples/tools/echoplugin/plugin/echoplugin.cpp | 4 +- examples/tools/echoplugin/plugin/echoplugin.h | 4 +- examples/tools/i18n/languagechooser.cpp | 4 +- examples/tools/i18n/languagechooser.h | 4 +- examples/tools/i18n/main.cpp | 4 +- examples/tools/i18n/mainwindow.cpp | 4 +- examples/tools/i18n/mainwindow.h | 4 +- examples/tools/plugandpaint/interfaces.h | 4 +- examples/tools/plugandpaint/main.cpp | 4 +- examples/tools/plugandpaint/mainwindow.cpp | 4 +- examples/tools/plugandpaint/mainwindow.h | 4 +- examples/tools/plugandpaint/paintarea.cpp | 4 +- examples/tools/plugandpaint/paintarea.h | 4 +- examples/tools/plugandpaint/plugindialog.cpp | 4 +- examples/tools/plugandpaint/plugindialog.h | 4 +- .../basictools/basictoolsplugin.cpp | 4 +- .../basictools/basictoolsplugin.h | 4 +- .../extrafilters/extrafiltersplugin.cpp | 4 +- .../extrafilters/extrafiltersplugin.h | 4 +- examples/tools/regexp/main.cpp | 4 +- examples/tools/regexp/regexpdialog.cpp | 4 +- examples/tools/regexp/regexpdialog.h | 4 +- examples/tools/settingseditor/locationdialog.cpp | 4 +- examples/tools/settingseditor/locationdialog.h | 4 +- examples/tools/settingseditor/main.cpp | 4 +- examples/tools/settingseditor/mainwindow.cpp | 4 +- examples/tools/settingseditor/mainwindow.h | 4 +- examples/tools/settingseditor/settingstree.cpp | 4 +- examples/tools/settingseditor/settingstree.h | 4 +- examples/tools/settingseditor/variantdelegate.cpp | 4 +- examples/tools/settingseditor/variantdelegate.h | 4 +- examples/tools/styleplugin/plugin/simplestyle.cpp | 4 +- examples/tools/styleplugin/plugin/simplestyle.h | 4 +- .../tools/styleplugin/plugin/simplestyleplugin.cpp | 4 +- .../tools/styleplugin/plugin/simplestyleplugin.h | 4 +- examples/tools/styleplugin/stylewindow/main.cpp | 4 +- .../tools/styleplugin/stylewindow/stylewindow.cpp | 4 +- .../tools/styleplugin/stylewindow/stylewindow.h | 4 +- examples/tools/treemodelcompleter/main.cpp | 4 +- examples/tools/treemodelcompleter/mainwindow.cpp | 4 +- examples/tools/treemodelcompleter/mainwindow.h | 4 +- .../treemodelcompleter/treemodelcompleter.cpp | 4 +- .../tools/treemodelcompleter/treemodelcompleter.h | 4 +- examples/tools/undoframework/commands.cpp | 4 +- examples/tools/undoframework/commands.h | 4 +- examples/tools/undoframework/diagramitem.cpp | 4 +- examples/tools/undoframework/diagramitem.h | 4 +- examples/tools/undoframework/diagramscene.cpp | 4 +- examples/tools/undoframework/diagramscene.h | 4 +- examples/tools/undoframework/main.cpp | 4 +- examples/tools/undoframework/mainwindow.cpp | 4 +- examples/tools/undoframework/mainwindow.h | 4 +- .../tutorials/addressbook-fr/part1/addressbook.cpp | 4 +- .../tutorials/addressbook-fr/part1/addressbook.h | 4 +- examples/tutorials/addressbook-fr/part1/main.cpp | 4 +- .../tutorials/addressbook-fr/part2/addressbook.cpp | 4 +- .../tutorials/addressbook-fr/part2/addressbook.h | 4 +- examples/tutorials/addressbook-fr/part2/main.cpp | 4 +- .../tutorials/addressbook-fr/part3/addressbook.cpp | 4 +- .../tutorials/addressbook-fr/part3/addressbook.h | 4 +- examples/tutorials/addressbook-fr/part3/main.cpp | 4 +- .../tutorials/addressbook-fr/part4/addressbook.cpp | 4 +- .../tutorials/addressbook-fr/part4/addressbook.h | 4 +- examples/tutorials/addressbook-fr/part4/main.cpp | 4 +- .../tutorials/addressbook-fr/part5/addressbook.cpp | 4 +- .../tutorials/addressbook-fr/part5/addressbook.h | 4 +- .../tutorials/addressbook-fr/part5/finddialog.cpp | 4 +- .../tutorials/addressbook-fr/part5/finddialog.h | 4 +- examples/tutorials/addressbook-fr/part5/main.cpp | 4 +- .../tutorials/addressbook-fr/part6/addressbook.cpp | 4 +- .../tutorials/addressbook-fr/part6/addressbook.h | 4 +- .../tutorials/addressbook-fr/part6/finddialog.cpp | 4 +- .../tutorials/addressbook-fr/part6/finddialog.h | 4 +- examples/tutorials/addressbook-fr/part6/main.cpp | 4 +- .../tutorials/addressbook-fr/part7/addressbook.cpp | 4 +- .../tutorials/addressbook-fr/part7/addressbook.h | 4 +- .../tutorials/addressbook-fr/part7/finddialog.cpp | 4 +- .../tutorials/addressbook-fr/part7/finddialog.h | 4 +- examples/tutorials/addressbook-fr/part7/main.cpp | 4 +- .../tutorials/addressbook/part1/addressbook.cpp | 4 +- examples/tutorials/addressbook/part1/addressbook.h | 4 +- examples/tutorials/addressbook/part1/main.cpp | 4 +- .../tutorials/addressbook/part2/addressbook.cpp | 4 +- examples/tutorials/addressbook/part2/addressbook.h | 4 +- examples/tutorials/addressbook/part2/main.cpp | 4 +- .../tutorials/addressbook/part3/addressbook.cpp | 4 +- examples/tutorials/addressbook/part3/addressbook.h | 4 +- examples/tutorials/addressbook/part3/main.cpp | 4 +- .../tutorials/addressbook/part4/addressbook.cpp | 4 +- examples/tutorials/addressbook/part4/addressbook.h | 4 +- examples/tutorials/addressbook/part4/main.cpp | 4 +- .../tutorials/addressbook/part5/addressbook.cpp | 4 +- examples/tutorials/addressbook/part5/addressbook.h | 4 +- .../tutorials/addressbook/part5/finddialog.cpp | 4 +- examples/tutorials/addressbook/part5/finddialog.h | 4 +- examples/tutorials/addressbook/part5/main.cpp | 4 +- .../tutorials/addressbook/part6/addressbook.cpp | 4 +- examples/tutorials/addressbook/part6/addressbook.h | 4 +- .../tutorials/addressbook/part6/finddialog.cpp | 4 +- examples/tutorials/addressbook/part6/finddialog.h | 4 +- examples/tutorials/addressbook/part6/main.cpp | 4 +- .../tutorials/addressbook/part7/addressbook.cpp | 4 +- examples/tutorials/addressbook/part7/addressbook.h | 4 +- .../tutorials/addressbook/part7/finddialog.cpp | 4 +- examples/tutorials/addressbook/part7/finddialog.h | 4 +- examples/tutorials/addressbook/part7/main.cpp | 4 +- .../uitools/multipleinheritance/calculatorform.cpp | 4 +- .../uitools/multipleinheritance/calculatorform.h | 4 +- examples/uitools/multipleinheritance/main.cpp | 4 +- examples/uitools/textfinder/main.cpp | 4 +- examples/uitools/textfinder/textfinder.cpp | 4 +- examples/uitools/textfinder/textfinder.h | 4 +- examples/webkit/fancybrowser/main.cpp | 4 +- examples/webkit/fancybrowser/mainwindow.cpp | 4 +- examples/webkit/fancybrowser/mainwindow.h | 4 +- examples/webkit/formextractor/formextractor.cpp | 4 +- examples/webkit/formextractor/formextractor.h | 4 +- examples/webkit/formextractor/main.cpp | 4 +- examples/webkit/formextractor/mainwindow.cpp | 4 +- examples/webkit/formextractor/mainwindow.h | 4 +- examples/webkit/googlechat/googlechat.cpp | 4 +- examples/webkit/googlechat/googlechat.h | 4 +- examples/webkit/googlechat/main.cpp | 4 +- examples/webkit/previewer/main.cpp | 4 +- examples/webkit/previewer/mainwindow.cpp | 4 +- examples/webkit/previewer/mainwindow.h | 4 +- examples/webkit/previewer/previewer.cpp | 4 +- examples/webkit/previewer/previewer.h | 4 +- examples/widgets/analogclock/analogclock.cpp | 4 +- examples/widgets/analogclock/analogclock.h | 4 +- examples/widgets/analogclock/main.cpp | 4 +- examples/widgets/calculator/button.cpp | 4 +- examples/widgets/calculator/button.h | 4 +- examples/widgets/calculator/calculator.cpp | 4 +- examples/widgets/calculator/calculator.h | 4 +- examples/widgets/calculator/main.cpp | 4 +- examples/widgets/calendarwidget/main.cpp | 4 +- examples/widgets/calendarwidget/window.cpp | 4 +- examples/widgets/calendarwidget/window.h | 4 +- examples/widgets/charactermap/characterwidget.cpp | 4 +- examples/widgets/charactermap/characterwidget.h | 4 +- examples/widgets/charactermap/main.cpp | 4 +- examples/widgets/charactermap/mainwindow.cpp | 4 +- examples/widgets/charactermap/mainwindow.h | 4 +- examples/widgets/codeeditor/codeeditor.cpp | 4 +- examples/widgets/codeeditor/codeeditor.h | 4 +- examples/widgets/codeeditor/main.cpp | 4 +- examples/widgets/digitalclock/digitalclock.cpp | 4 +- examples/widgets/digitalclock/digitalclock.h | 4 +- examples/widgets/digitalclock/main.cpp | 4 +- examples/widgets/groupbox/main.cpp | 4 +- examples/widgets/groupbox/window.cpp | 4 +- examples/widgets/groupbox/window.h | 4 +- examples/widgets/icons/iconpreviewarea.cpp | 4 +- examples/widgets/icons/iconpreviewarea.h | 4 +- examples/widgets/icons/iconsizespinbox.cpp | 4 +- examples/widgets/icons/iconsizespinbox.h | 4 +- examples/widgets/icons/imagedelegate.cpp | 4 +- examples/widgets/icons/imagedelegate.h | 4 +- examples/widgets/icons/main.cpp | 4 +- examples/widgets/icons/mainwindow.cpp | 4 +- examples/widgets/icons/mainwindow.h | 4 +- examples/widgets/imageviewer/imageviewer.cpp | 4 +- examples/widgets/imageviewer/imageviewer.h | 4 +- examples/widgets/imageviewer/main.cpp | 4 +- examples/widgets/lineedits/main.cpp | 4 +- examples/widgets/lineedits/window.cpp | 4 +- examples/widgets/lineedits/window.h | 4 +- examples/widgets/movie/main.cpp | 4 +- examples/widgets/movie/movieplayer.cpp | 4 +- examples/widgets/movie/movieplayer.h | 4 +- examples/widgets/scribble/main.cpp | 4 +- examples/widgets/scribble/mainwindow.cpp | 4 +- examples/widgets/scribble/mainwindow.h | 4 +- examples/widgets/scribble/scribblearea.cpp | 4 +- examples/widgets/scribble/scribblearea.h | 4 +- examples/widgets/shapedclock/main.cpp | 4 +- examples/widgets/shapedclock/shapedclock.cpp | 4 +- examples/widgets/shapedclock/shapedclock.h | 4 +- examples/widgets/sliders/main.cpp | 4 +- examples/widgets/sliders/slidersgroup.cpp | 4 +- examples/widgets/sliders/slidersgroup.h | 4 +- examples/widgets/sliders/window.cpp | 4 +- examples/widgets/sliders/window.h | 4 +- examples/widgets/spinboxes/main.cpp | 4 +- examples/widgets/spinboxes/window.cpp | 4 +- examples/widgets/spinboxes/window.h | 4 +- examples/widgets/styles/main.cpp | 4 +- examples/widgets/styles/norwegianwoodstyle.cpp | 4 +- examples/widgets/styles/norwegianwoodstyle.h | 4 +- examples/widgets/styles/widgetgallery.cpp | 4 +- examples/widgets/styles/widgetgallery.h | 4 +- examples/widgets/stylesheet/main.cpp | 4 +- examples/widgets/stylesheet/mainwindow.cpp | 4 +- examples/widgets/stylesheet/mainwindow.h | 4 +- examples/widgets/stylesheet/stylesheeteditor.cpp | 4 +- examples/widgets/stylesheet/stylesheeteditor.h | 4 +- examples/widgets/tablet/main.cpp | 4 +- examples/widgets/tablet/mainwindow.cpp | 4 +- examples/widgets/tablet/mainwindow.h | 4 +- examples/widgets/tablet/tabletapplication.cpp | 4 +- examples/widgets/tablet/tabletapplication.h | 4 +- examples/widgets/tablet/tabletcanvas.cpp | 4 +- examples/widgets/tablet/tabletcanvas.h | 4 +- examples/widgets/tetrix/main.cpp | 4 +- examples/widgets/tetrix/tetrixboard.cpp | 4 +- examples/widgets/tetrix/tetrixboard.h | 4 +- examples/widgets/tetrix/tetrixpiece.cpp | 4 +- examples/widgets/tetrix/tetrixpiece.h | 4 +- examples/widgets/tetrix/tetrixwindow.cpp | 4 +- examples/widgets/tetrix/tetrixwindow.h | 4 +- examples/widgets/tooltips/main.cpp | 4 +- examples/widgets/tooltips/shapeitem.cpp | 4 +- examples/widgets/tooltips/shapeitem.h | 4 +- examples/widgets/tooltips/sortingbox.cpp | 4 +- examples/widgets/tooltips/sortingbox.h | 4 +- examples/widgets/validators/ledwidget.cpp | 4 +- examples/widgets/validators/ledwidget.h | 4 +- examples/widgets/validators/localeselector.cpp | 4 +- examples/widgets/validators/localeselector.h | 4 +- examples/widgets/validators/main.cpp | 4 +- examples/widgets/wiggly/dialog.cpp | 4 +- examples/widgets/wiggly/dialog.h | 4 +- examples/widgets/wiggly/main.cpp | 4 +- examples/widgets/wiggly/wigglywidget.cpp | 4 +- examples/widgets/wiggly/wigglywidget.h | 4 +- examples/widgets/windowflags/controllerwindow.cpp | 4 +- examples/widgets/windowflags/controllerwindow.h | 4 +- examples/widgets/windowflags/main.cpp | 4 +- examples/widgets/windowflags/previewwindow.cpp | 4 +- examples/widgets/windowflags/previewwindow.h | 4 +- examples/xml/dombookmarks/main.cpp | 4 +- examples/xml/dombookmarks/mainwindow.cpp | 4 +- examples/xml/dombookmarks/mainwindow.h | 4 +- examples/xml/dombookmarks/xbeltree.cpp | 4 +- examples/xml/dombookmarks/xbeltree.h | 4 +- examples/xml/rsslisting/main.cpp | 4 +- examples/xml/rsslisting/rsslisting.cpp | 4 +- examples/xml/rsslisting/rsslisting.h | 4 +- examples/xml/saxbookmarks/main.cpp | 4 +- examples/xml/saxbookmarks/mainwindow.cpp | 4 +- examples/xml/saxbookmarks/mainwindow.h | 4 +- examples/xml/saxbookmarks/xbelgenerator.cpp | 4 +- examples/xml/saxbookmarks/xbelgenerator.h | 4 +- examples/xml/saxbookmarks/xbelhandler.cpp | 4 +- examples/xml/saxbookmarks/xbelhandler.h | 4 +- examples/xml/streambookmarks/main.cpp | 4 +- examples/xml/streambookmarks/mainwindow.cpp | 4 +- examples/xml/streambookmarks/mainwindow.h | 4 +- examples/xml/streambookmarks/xbelreader.cpp | 4 +- examples/xml/streambookmarks/xbelreader.h | 4 +- examples/xml/streambookmarks/xbelwriter.cpp | 4 +- examples/xml/streambookmarks/xbelwriter.h | 4 +- examples/xml/xmlstreamlint/main.cpp | 4 +- examples/xmlpatterns/filetree/filetree.cpp | 4 +- examples/xmlpatterns/filetree/filetree.h | 4 +- examples/xmlpatterns/filetree/main.cpp | 4 +- examples/xmlpatterns/filetree/mainwindow.cpp | 4 +- examples/xmlpatterns/filetree/mainwindow.h | 4 +- examples/xmlpatterns/qobjectxmlmodel/main.cpp | 4 +- .../xmlpatterns/qobjectxmlmodel/mainwindow.cpp | 4 +- examples/xmlpatterns/qobjectxmlmodel/mainwindow.h | 4 +- .../qobjectxmlmodel/qobjectxmlmodel.cpp | 4 +- .../xmlpatterns/qobjectxmlmodel/qobjectxmlmodel.h | 4 +- examples/xmlpatterns/recipes/main.cpp | 4 +- examples/xmlpatterns/recipes/querymainwindow.cpp | 4 +- examples/xmlpatterns/recipes/querymainwindow.h | 4 +- .../xmlpatterns/shared/xmlsyntaxhighlighter.cpp | 4 +- examples/xmlpatterns/shared/xmlsyntaxhighlighter.h | 4 +- examples/xmlpatterns/trafficinfo/main.cpp | 4 +- examples/xmlpatterns/trafficinfo/mainwindow.cpp | 4 +- examples/xmlpatterns/trafficinfo/mainwindow.h | 4 +- examples/xmlpatterns/trafficinfo/stationdialog.cpp | 4 +- examples/xmlpatterns/trafficinfo/stationdialog.h | 4 +- examples/xmlpatterns/trafficinfo/stationquery.cpp | 4 +- examples/xmlpatterns/trafficinfo/stationquery.h | 4 +- examples/xmlpatterns/trafficinfo/timequery.cpp | 4 +- examples/xmlpatterns/trafficinfo/timequery.h | 4 +- .../xmlpatterns/xquery/globalVariables/globals.cpp | 4 +- mkspecs/aix-g++-64/qplatformdefs.h | 4 +- mkspecs/aix-g++/qplatformdefs.h | 4 +- mkspecs/aix-xlc-64/qplatformdefs.h | 4 +- mkspecs/aix-xlc/qplatformdefs.h | 4 +- mkspecs/cygwin-g++/qplatformdefs.h | 4 +- mkspecs/darwin-g++/qplatformdefs.h | 4 +- mkspecs/freebsd-g++/qplatformdefs.h | 4 +- mkspecs/freebsd-g++34/qplatformdefs.h | 4 +- mkspecs/freebsd-g++40/qplatformdefs.h | 4 +- mkspecs/freebsd-icc/qplatformdefs.h | 4 +- mkspecs/hpux-acc-64/qplatformdefs.h | 4 +- mkspecs/hpux-acc-o64/qplatformdefs.h | 4 +- mkspecs/hpux-acc/qplatformdefs.h | 4 +- mkspecs/hpux-g++-64/qplatformdefs.h | 4 +- mkspecs/hpux-g++/qplatformdefs.h | 4 +- mkspecs/hpuxi-acc-32/qplatformdefs.h | 4 +- mkspecs/hpuxi-acc-64/qplatformdefs.h | 4 +- mkspecs/hpuxi-g++-64/qplatformdefs.h | 4 +- mkspecs/hurd-g++/qplatformdefs.h | 4 +- mkspecs/irix-cc-64/qplatformdefs.h | 4 +- mkspecs/irix-cc/qplatformdefs.h | 4 +- mkspecs/irix-g++-64/qplatformdefs.h | 4 +- mkspecs/irix-g++/qplatformdefs.h | 4 +- mkspecs/linux-cxx/qplatformdefs.h | 4 +- mkspecs/linux-ecc-64/qplatformdefs.h | 4 +- mkspecs/linux-g++-32/qplatformdefs.h | 4 +- mkspecs/linux-g++-64/qplatformdefs.h | 4 +- mkspecs/linux-g++/qplatformdefs.h | 4 +- mkspecs/linux-icc-32/qplatformdefs.h | 4 +- mkspecs/linux-icc-64/qplatformdefs.h | 4 +- mkspecs/linux-icc/qplatformdefs.h | 4 +- mkspecs/linux-kcc/qplatformdefs.h | 4 +- mkspecs/linux-llvm/qplatformdefs.h | 4 +- mkspecs/linux-lsb-g++/qplatformdefs.h | 4 +- mkspecs/linux-pgcc/qplatformdefs.h | 4 +- mkspecs/lynxos-g++/qplatformdefs.h | 4 +- mkspecs/macx-g++/qplatformdefs.h | 4 +- mkspecs/macx-g++42/qplatformdefs.h | 4 +- mkspecs/macx-icc/qplatformdefs.h | 4 +- mkspecs/macx-llvm/qplatformdefs.h | 4 +- mkspecs/macx-pbuilder/qplatformdefs.h | 4 +- mkspecs/macx-xcode/qplatformdefs.h | 4 +- mkspecs/macx-xlc/qplatformdefs.h | 4 +- mkspecs/netbsd-g++/qplatformdefs.h | 4 +- mkspecs/openbsd-g++/qplatformdefs.h | 4 +- mkspecs/qws/freebsd-generic-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-arm-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-cellon-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-dm7000-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-dm800-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-generic-g++-32/qplatformdefs.h | 4 +- mkspecs/qws/linux-generic-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-ipaq-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-lsb-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-mips-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-ppc-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-sharp-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-x86-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-x86_64-g++/qplatformdefs.h | 4 +- mkspecs/qws/linux-zylonite-g++/qplatformdefs.h | 4 +- mkspecs/qws/macx-generic-g++/qplatformdefs.h | 4 +- mkspecs/qws/solaris-generic-g++/qplatformdefs.h | 4 +- mkspecs/sco-cc/qplatformdefs.h | 4 +- mkspecs/sco-g++/qplatformdefs.h | 4 +- mkspecs/solaris-cc-64/qplatformdefs.h | 4 +- mkspecs/solaris-cc/qplatformdefs.h | 4 +- mkspecs/solaris-g++-64/qplatformdefs.h | 4 +- mkspecs/solaris-g++/qplatformdefs.h | 4 +- mkspecs/tru64-cxx/qplatformdefs.h | 4 +- mkspecs/tru64-g++/qplatformdefs.h | 4 +- mkspecs/unixware-cc/qplatformdefs.h | 4 +- mkspecs/unixware-g++/qplatformdefs.h | 4 +- mkspecs/win32-borland/qplatformdefs.h | 4 +- mkspecs/win32-g++/qplatformdefs.h | 4 +- mkspecs/win32-icc/qplatformdefs.h | 4 +- mkspecs/win32-msvc.net/qplatformdefs.h | 4 +- mkspecs/win32-msvc/qplatformdefs.h | 4 +- mkspecs/win32-msvc2002/qplatformdefs.h | 4 +- mkspecs/win32-msvc2003/qplatformdefs.h | 4 +- mkspecs/win32-msvc2005/qplatformdefs.h | 4 +- mkspecs/win32-msvc2008/qplatformdefs.h | 4 +- .../qplatformdefs.h | 4 +- .../qplatformdefs.h | 4 +- .../qplatformdefs.h | 4 +- .../qplatformdefs.h | 4 +- .../qplatformdefs.h | 4 +- .../qplatformdefs.h | 4 +- .../wince50standard-sh4-msvc2005/qplatformdefs.h | 4 +- .../wince50standard-sh4-msvc2008/qplatformdefs.h | 4 +- .../wince50standard-x86-msvc2005/qplatformdefs.h | 4 +- .../wince50standard-x86-msvc2008/qplatformdefs.h | 4 +- .../qplatformdefs.h | 4 +- mkspecs/wincewm50pocket-msvc2005/qplatformdefs.h | 4 +- mkspecs/wincewm50pocket-msvc2008/qplatformdefs.h | 4 +- mkspecs/wincewm50smart-msvc2005/qplatformdefs.h | 4 +- mkspecs/wincewm50smart-msvc2008/qplatformdefs.h | 4 +- .../wincewm60professional-msvc2005/qplatformdefs.h | 4 +- .../wincewm60professional-msvc2008/qplatformdefs.h | 4 +- mkspecs/wincewm60standard-msvc2005/qplatformdefs.h | 4 +- mkspecs/wincewm60standard-msvc2008/qplatformdefs.h | 4 +- qmake/cachekeys.h | 4 +- qmake/generators/mac/pbuilder_pbx.cpp | 4 +- qmake/generators/mac/pbuilder_pbx.h | 4 +- qmake/generators/makefile.cpp | 4 +- qmake/generators/makefile.h | 4 +- qmake/generators/makefiledeps.cpp | 4 +- qmake/generators/makefiledeps.h | 4 +- qmake/generators/metamakefile.cpp | 4 +- qmake/generators/metamakefile.h | 4 +- qmake/generators/projectgenerator.cpp | 4 +- qmake/generators/projectgenerator.h | 4 +- qmake/generators/unix/unixmake.cpp | 4 +- qmake/generators/unix/unixmake.h | 4 +- qmake/generators/unix/unixmake2.cpp | 4 +- qmake/generators/win32/borland_bmake.cpp | 4 +- qmake/generators/win32/borland_bmake.h | 4 +- qmake/generators/win32/mingw_make.cpp | 4 +- qmake/generators/win32/mingw_make.h | 4 +- qmake/generators/win32/msvc_dsp.cpp | 4 +- qmake/generators/win32/msvc_dsp.h | 4 +- qmake/generators/win32/msvc_nmake.cpp | 4 +- qmake/generators/win32/msvc_nmake.h | 4 +- qmake/generators/win32/msvc_objectmodel.cpp | 4 +- qmake/generators/win32/msvc_objectmodel.h | 4 +- qmake/generators/win32/msvc_vcproj.cpp | 4 +- qmake/generators/win32/msvc_vcproj.h | 4 +- qmake/generators/win32/winmakefile.cpp | 4 +- qmake/generators/win32/winmakefile.h | 4 +- qmake/generators/xmloutput.cpp | 4 +- qmake/generators/xmloutput.h | 4 +- qmake/main.cpp | 4 +- qmake/meta.cpp | 4 +- qmake/meta.h | 4 +- qmake/option.cpp | 4 +- qmake/option.h | 4 +- qmake/project.cpp | 4 +- qmake/project.h | 4 +- qmake/property.cpp | 4 +- qmake/property.h | 4 +- qmake/qmake_pch.h | 4 +- src/3rdparty/sha1/sha1.cpp | 4 +- src/activeqt/container/qaxbase.cpp | 2 +- src/activeqt/container/qaxbase.h | 2 +- src/activeqt/container/qaxdump.cpp | 2 +- src/activeqt/container/qaxobject.cpp | 2 +- src/activeqt/container/qaxobject.h | 2 +- src/activeqt/container/qaxscript.cpp | 2 +- src/activeqt/container/qaxscript.h | 2 +- src/activeqt/container/qaxscriptwrapper.cpp | 2 +- src/activeqt/container/qaxselect.cpp | 2 +- src/activeqt/container/qaxselect.h | 2 +- src/activeqt/container/qaxselect.ui | 2 +- src/activeqt/container/qaxwidget.cpp | 2 +- src/activeqt/container/qaxwidget.h | 2 +- src/activeqt/control/qaxaggregated.h | 2 +- src/activeqt/control/qaxbindable.cpp | 2 +- src/activeqt/control/qaxbindable.h | 2 +- src/activeqt/control/qaxfactory.cpp | 2 +- src/activeqt/control/qaxfactory.h | 2 +- src/activeqt/control/qaxmain.cpp | 2 +- src/activeqt/control/qaxserver.cpp | 2 +- src/activeqt/control/qaxserverbase.cpp | 2 +- src/activeqt/control/qaxserverdll.cpp | 2 +- src/activeqt/control/qaxservermain.cpp | 2 +- src/activeqt/shared/qaxtypes.cpp | 2 +- src/activeqt/shared/qaxtypes.h | 2 +- src/corelib/arch/arm/qatomic_arm.cpp | 4 +- src/corelib/arch/generic/qatomic_generic_unix.cpp | 4 +- .../arch/generic/qatomic_generic_windows.cpp | 4 +- src/corelib/arch/parisc/qatomic_parisc.cpp | 4 +- src/corelib/arch/qatomic_alpha.h | 4 +- src/corelib/arch/qatomic_arch.h | 4 +- src/corelib/arch/qatomic_arm.h | 4 +- src/corelib/arch/qatomic_armv6.h | 4 +- src/corelib/arch/qatomic_avr32.h | 4 +- src/corelib/arch/qatomic_bfin.h | 4 +- src/corelib/arch/qatomic_bootstrap.h | 4 +- src/corelib/arch/qatomic_generic.h | 4 +- src/corelib/arch/qatomic_i386.h | 4 +- src/corelib/arch/qatomic_ia64.h | 4 +- src/corelib/arch/qatomic_macosx.h | 4 +- src/corelib/arch/qatomic_mips.h | 4 +- src/corelib/arch/qatomic_parisc.h | 4 +- src/corelib/arch/qatomic_powerpc.h | 4 +- src/corelib/arch/qatomic_s390.h | 4 +- src/corelib/arch/qatomic_sh.h | 4 +- src/corelib/arch/qatomic_sh4a.h | 4 +- src/corelib/arch/qatomic_sparc.h | 4 +- src/corelib/arch/qatomic_windows.h | 4 +- src/corelib/arch/qatomic_windowsce.h | 4 +- src/corelib/arch/qatomic_x86_64.h | 4 +- src/corelib/arch/sh/qatomic_sh.cpp | 4 +- src/corelib/arch/sparc/qatomic_sparc.cpp | 4 +- src/corelib/codecs/qfontlaocodec.cpp | 4 +- src/corelib/codecs/qfontlaocodec_p.h | 4 +- src/corelib/codecs/qiconvcodec.cpp | 4 +- src/corelib/codecs/qiconvcodec_p.h | 4 +- src/corelib/codecs/qisciicodec.cpp | 4 +- src/corelib/codecs/qisciicodec_p.h | 4 +- src/corelib/codecs/qlatincodec.cpp | 4 +- src/corelib/codecs/qlatincodec_p.h | 4 +- src/corelib/codecs/qsimplecodec.cpp | 4 +- src/corelib/codecs/qsimplecodec_p.h | 4 +- src/corelib/codecs/qtextcodec.cpp | 4 +- src/corelib/codecs/qtextcodec.h | 4 +- src/corelib/codecs/qtextcodec_p.h | 4 +- src/corelib/codecs/qtextcodecplugin.cpp | 4 +- src/corelib/codecs/qtextcodecplugin.h | 4 +- src/corelib/codecs/qtsciicodec.cpp | 4 +- src/corelib/codecs/qtsciicodec_p.h | 4 +- src/corelib/codecs/qutfcodec.cpp | 4 +- src/corelib/codecs/qutfcodec_p.h | 4 +- src/corelib/concurrent/qfuture.cpp | 4 +- src/corelib/concurrent/qfuture.h | 4 +- src/corelib/concurrent/qfutureinterface.cpp | 4 +- src/corelib/concurrent/qfutureinterface.h | 4 +- src/corelib/concurrent/qfutureinterface_p.h | 4 +- src/corelib/concurrent/qfuturesynchronizer.cpp | 4 +- src/corelib/concurrent/qfuturesynchronizer.h | 4 +- src/corelib/concurrent/qfuturewatcher.cpp | 4 +- src/corelib/concurrent/qfuturewatcher.h | 4 +- src/corelib/concurrent/qfuturewatcher_p.h | 4 +- src/corelib/concurrent/qrunnable.cpp | 4 +- src/corelib/concurrent/qrunnable.h | 4 +- src/corelib/concurrent/qtconcurrentcompilertest.h | 4 +- src/corelib/concurrent/qtconcurrentexception.cpp | 4 +- src/corelib/concurrent/qtconcurrentexception.h | 4 +- src/corelib/concurrent/qtconcurrentfilter.cpp | 4 +- src/corelib/concurrent/qtconcurrentfilter.h | 4 +- src/corelib/concurrent/qtconcurrentfilterkernel.h | 4 +- .../concurrent/qtconcurrentfunctionwrappers.h | 4 +- .../concurrent/qtconcurrentiteratekernel.cpp | 4 +- src/corelib/concurrent/qtconcurrentiteratekernel.h | 4 +- src/corelib/concurrent/qtconcurrentmap.cpp | 4 +- src/corelib/concurrent/qtconcurrentmap.h | 4 +- src/corelib/concurrent/qtconcurrentmapkernel.h | 4 +- src/corelib/concurrent/qtconcurrentmedian.h | 4 +- src/corelib/concurrent/qtconcurrentreducekernel.h | 4 +- src/corelib/concurrent/qtconcurrentresultstore.cpp | 4 +- src/corelib/concurrent/qtconcurrentresultstore.h | 4 +- src/corelib/concurrent/qtconcurrentrun.cpp | 4 +- src/corelib/concurrent/qtconcurrentrun.h | 4 +- src/corelib/concurrent/qtconcurrentrunbase.h | 4 +- .../concurrent/qtconcurrentstoredfunctioncall.h | 4 +- .../concurrent/qtconcurrentthreadengine.cpp | 4 +- src/corelib/concurrent/qtconcurrentthreadengine.h | 4 +- src/corelib/concurrent/qthreadpool.cpp | 4 +- src/corelib/concurrent/qthreadpool.h | 4 +- src/corelib/concurrent/qthreadpool_p.h | 4 +- src/corelib/global/qconfig-dist.h | 4 +- src/corelib/global/qconfig-large.h | 4 +- src/corelib/global/qconfig-medium.h | 4 +- src/corelib/global/qconfig-minimal.h | 4 +- src/corelib/global/qconfig-small.h | 4 +- src/corelib/global/qendian.h | 4 +- src/corelib/global/qfeatures.h | 4 +- src/corelib/global/qglobal.cpp | 4 +- src/corelib/global/qglobal.h | 4 +- src/corelib/global/qlibraryinfo.cpp | 6 +-- src/corelib/global/qlibraryinfo.h | 4 +- src/corelib/global/qmalloc.cpp | 4 +- src/corelib/global/qnamespace.h | 4 +- src/corelib/global/qnumeric.cpp | 4 +- src/corelib/global/qnumeric.h | 4 +- src/corelib/global/qnumeric_p.h | 4 +- src/corelib/global/qt_pch.h | 4 +- src/corelib/global/qt_windows.h | 4 +- src/corelib/io/qabstractfileengine.cpp | 4 +- src/corelib/io/qabstractfileengine.h | 4 +- src/corelib/io/qabstractfileengine_p.h | 4 +- src/corelib/io/qbuffer.cpp | 4 +- src/corelib/io/qbuffer.h | 4 +- src/corelib/io/qdatastream.cpp | 4 +- src/corelib/io/qdatastream.h | 4 +- src/corelib/io/qdebug.cpp | 4 +- src/corelib/io/qdebug.h | 4 +- src/corelib/io/qdir.cpp | 4 +- src/corelib/io/qdir.h | 4 +- src/corelib/io/qdiriterator.cpp | 4 +- src/corelib/io/qdiriterator.h | 4 +- src/corelib/io/qfile.cpp | 4 +- src/corelib/io/qfile.h | 4 +- src/corelib/io/qfile_p.h | 4 +- src/corelib/io/qfileinfo.cpp | 4 +- src/corelib/io/qfileinfo.h | 4 +- src/corelib/io/qfileinfo_p.h | 4 +- src/corelib/io/qfilesystemwatcher.cpp | 4 +- src/corelib/io/qfilesystemwatcher.h | 4 +- src/corelib/io/qfilesystemwatcher_dnotify.cpp | 4 +- src/corelib/io/qfilesystemwatcher_dnotify_p.h | 4 +- src/corelib/io/qfilesystemwatcher_inotify.cpp | 4 +- src/corelib/io/qfilesystemwatcher_inotify_p.h | 4 +- src/corelib/io/qfilesystemwatcher_kqueue.cpp | 4 +- src/corelib/io/qfilesystemwatcher_kqueue_p.h | 4 +- src/corelib/io/qfilesystemwatcher_p.h | 4 +- src/corelib/io/qfilesystemwatcher_win.cpp | 4 +- src/corelib/io/qfilesystemwatcher_win_p.h | 4 +- src/corelib/io/qfsfileengine.cpp | 4 +- src/corelib/io/qfsfileengine.h | 4 +- src/corelib/io/qfsfileengine_iterator.cpp | 4 +- src/corelib/io/qfsfileengine_iterator_p.h | 4 +- src/corelib/io/qfsfileengine_iterator_unix.cpp | 4 +- src/corelib/io/qfsfileengine_iterator_win.cpp | 4 +- src/corelib/io/qfsfileengine_p.h | 4 +- src/corelib/io/qfsfileengine_unix.cpp | 4 +- src/corelib/io/qfsfileengine_win.cpp | 4 +- src/corelib/io/qiodevice.cpp | 4 +- src/corelib/io/qiodevice.h | 4 +- src/corelib/io/qiodevice_p.h | 4 +- src/corelib/io/qprocess.cpp | 4 +- src/corelib/io/qprocess.h | 4 +- src/corelib/io/qprocess_p.h | 4 +- src/corelib/io/qprocess_unix.cpp | 4 +- src/corelib/io/qprocess_win.cpp | 4 +- src/corelib/io/qresource.cpp | 4 +- src/corelib/io/qresource.h | 4 +- src/corelib/io/qresource_iterator.cpp | 4 +- src/corelib/io/qresource_iterator_p.h | 4 +- src/corelib/io/qresource_p.h | 4 +- src/corelib/io/qsettings.cpp | 4 +- src/corelib/io/qsettings.h | 4 +- src/corelib/io/qsettings_mac.cpp | 4 +- src/corelib/io/qsettings_p.h | 4 +- src/corelib/io/qsettings_win.cpp | 4 +- src/corelib/io/qtemporaryfile.cpp | 4 +- src/corelib/io/qtemporaryfile.h | 4 +- src/corelib/io/qtextstream.cpp | 4 +- src/corelib/io/qtextstream.h | 4 +- src/corelib/io/qurl.cpp | 4 +- src/corelib/io/qurl.h | 4 +- src/corelib/io/qwindowspipewriter.cpp | 4 +- src/corelib/io/qwindowspipewriter_p.h | 4 +- src/corelib/kernel/qabstracteventdispatcher.cpp | 4 +- src/corelib/kernel/qabstracteventdispatcher.h | 4 +- src/corelib/kernel/qabstracteventdispatcher_p.h | 4 +- src/corelib/kernel/qabstractitemmodel.cpp | 4 +- src/corelib/kernel/qabstractitemmodel.h | 4 +- src/corelib/kernel/qabstractitemmodel_p.h | 4 +- src/corelib/kernel/qbasictimer.cpp | 4 +- src/corelib/kernel/qbasictimer.h | 4 +- src/corelib/kernel/qcore_mac.cpp | 4 +- src/corelib/kernel/qcore_mac_p.h | 4 +- src/corelib/kernel/qcoreapplication.cpp | 4 +- src/corelib/kernel/qcoreapplication.h | 4 +- src/corelib/kernel/qcoreapplication_mac.cpp | 4 +- src/corelib/kernel/qcoreapplication_p.h | 4 +- src/corelib/kernel/qcoreapplication_win.cpp | 4 +- src/corelib/kernel/qcorecmdlineargs_p.h | 4 +- src/corelib/kernel/qcoreevent.cpp | 4 +- src/corelib/kernel/qcoreevent.h | 4 +- src/corelib/kernel/qcoreglobaldata.cpp | 4 +- src/corelib/kernel/qcoreglobaldata_p.h | 4 +- src/corelib/kernel/qcrashhandler.cpp | 4 +- src/corelib/kernel/qcrashhandler_p.h | 4 +- src/corelib/kernel/qeventdispatcher_glib.cpp | 4 +- src/corelib/kernel/qeventdispatcher_glib_p.h | 4 +- src/corelib/kernel/qeventdispatcher_unix.cpp | 4 +- src/corelib/kernel/qeventdispatcher_unix_p.h | 4 +- src/corelib/kernel/qeventdispatcher_win.cpp | 4 +- src/corelib/kernel/qeventdispatcher_win_p.h | 4 +- src/corelib/kernel/qeventloop.cpp | 4 +- src/corelib/kernel/qeventloop.h | 4 +- src/corelib/kernel/qfunctions_p.h | 4 +- src/corelib/kernel/qfunctions_wince.cpp | 4 +- src/corelib/kernel/qfunctions_wince.h | 4 +- src/corelib/kernel/qmath.h | 4 +- src/corelib/kernel/qmetaobject.cpp | 4 +- src/corelib/kernel/qmetaobject.h | 4 +- src/corelib/kernel/qmetaobject_p.h | 4 +- src/corelib/kernel/qmetatype.cpp | 4 +- src/corelib/kernel/qmetatype.h | 4 +- src/corelib/kernel/qmimedata.cpp | 4 +- src/corelib/kernel/qmimedata.h | 4 +- src/corelib/kernel/qobject.cpp | 4 +- src/corelib/kernel/qobject.h | 4 +- src/corelib/kernel/qobject_p.h | 4 +- src/corelib/kernel/qobjectcleanuphandler.cpp | 4 +- src/corelib/kernel/qobjectcleanuphandler.h | 4 +- src/corelib/kernel/qobjectdefs.h | 4 +- src/corelib/kernel/qpointer.cpp | 4 +- src/corelib/kernel/qpointer.h | 4 +- src/corelib/kernel/qsharedmemory.cpp | 4 +- src/corelib/kernel/qsharedmemory.h | 4 +- src/corelib/kernel/qsharedmemory_p.h | 4 +- src/corelib/kernel/qsharedmemory_unix.cpp | 4 +- src/corelib/kernel/qsharedmemory_win.cpp | 4 +- src/corelib/kernel/qsignalmapper.cpp | 4 +- src/corelib/kernel/qsignalmapper.h | 4 +- src/corelib/kernel/qsocketnotifier.cpp | 4 +- src/corelib/kernel/qsocketnotifier.h | 4 +- src/corelib/kernel/qsystemsemaphore.cpp | 4 +- src/corelib/kernel/qsystemsemaphore.h | 4 +- src/corelib/kernel/qsystemsemaphore_p.h | 4 +- src/corelib/kernel/qsystemsemaphore_unix.cpp | 4 +- src/corelib/kernel/qsystemsemaphore_win.cpp | 4 +- src/corelib/kernel/qtimer.cpp | 4 +- src/corelib/kernel/qtimer.h | 4 +- src/corelib/kernel/qtranslator.cpp | 4 +- src/corelib/kernel/qtranslator.h | 4 +- src/corelib/kernel/qtranslator_p.h | 4 +- src/corelib/kernel/qvariant.cpp | 4 +- src/corelib/kernel/qvariant.h | 4 +- src/corelib/kernel/qvariant_p.h | 4 +- src/corelib/kernel/qwineventnotifier_p.cpp | 4 +- src/corelib/kernel/qwineventnotifier_p.h | 4 +- src/corelib/plugin/qfactoryinterface.h | 4 +- src/corelib/plugin/qfactoryloader.cpp | 4 +- src/corelib/plugin/qfactoryloader_p.h | 4 +- src/corelib/plugin/qlibrary.cpp | 4 +- src/corelib/plugin/qlibrary.h | 4 +- src/corelib/plugin/qlibrary_p.h | 4 +- src/corelib/plugin/qlibrary_unix.cpp | 4 +- src/corelib/plugin/qlibrary_win.cpp | 4 +- src/corelib/plugin/qplugin.h | 4 +- src/corelib/plugin/qpluginloader.cpp | 4 +- src/corelib/plugin/qpluginloader.h | 4 +- src/corelib/plugin/quuid.cpp | 4 +- src/corelib/plugin/quuid.h | 4 +- src/corelib/thread/qatomic.cpp | 4 +- src/corelib/thread/qatomic.h | 4 +- src/corelib/thread/qbasicatomic.h | 4 +- src/corelib/thread/qmutex.cpp | 4 +- src/corelib/thread/qmutex.h | 4 +- src/corelib/thread/qmutex_p.h | 4 +- src/corelib/thread/qmutex_unix.cpp | 4 +- src/corelib/thread/qmutex_win.cpp | 4 +- src/corelib/thread/qmutexpool.cpp | 4 +- src/corelib/thread/qmutexpool_p.h | 4 +- src/corelib/thread/qorderedmutexlocker_p.h | 4 +- src/corelib/thread/qreadwritelock.cpp | 4 +- src/corelib/thread/qreadwritelock.h | 4 +- src/corelib/thread/qreadwritelock_p.h | 4 +- src/corelib/thread/qsemaphore.cpp | 4 +- src/corelib/thread/qsemaphore.h | 4 +- src/corelib/thread/qthread.cpp | 4 +- src/corelib/thread/qthread.h | 4 +- src/corelib/thread/qthread_p.h | 4 +- src/corelib/thread/qthread_unix.cpp | 4 +- src/corelib/thread/qthread_win.cpp | 4 +- src/corelib/thread/qthreadstorage.cpp | 4 +- src/corelib/thread/qthreadstorage.h | 4 +- src/corelib/thread/qwaitcondition.h | 4 +- src/corelib/thread/qwaitcondition_unix.cpp | 4 +- src/corelib/thread/qwaitcondition_win.cpp | 4 +- src/corelib/tools/qalgorithms.h | 4 +- src/corelib/tools/qbitarray.cpp | 4 +- src/corelib/tools/qbitarray.h | 4 +- src/corelib/tools/qbytearray.cpp | 4 +- src/corelib/tools/qbytearray.h | 4 +- src/corelib/tools/qbytearraymatcher.cpp | 4 +- src/corelib/tools/qbytearraymatcher.h | 4 +- src/corelib/tools/qcache.h | 4 +- src/corelib/tools/qchar.cpp | 4 +- src/corelib/tools/qchar.h | 4 +- src/corelib/tools/qcontainerfwd.h | 4 +- src/corelib/tools/qcryptographichash.cpp | 4 +- src/corelib/tools/qcryptographichash.h | 4 +- src/corelib/tools/qdatetime.cpp | 4 +- src/corelib/tools/qdatetime.h | 4 +- src/corelib/tools/qdatetime_p.h | 4 +- src/corelib/tools/qdumper.cpp | 4 +- src/corelib/tools/qharfbuzz.cpp | 4 +- src/corelib/tools/qharfbuzz_p.h | 4 +- src/corelib/tools/qhash.cpp | 4 +- src/corelib/tools/qhash.h | 4 +- src/corelib/tools/qiterator.h | 4 +- src/corelib/tools/qline.cpp | 4 +- src/corelib/tools/qline.h | 4 +- src/corelib/tools/qlinkedlist.cpp | 4 +- src/corelib/tools/qlinkedlist.h | 4 +- src/corelib/tools/qlist.h | 4 +- src/corelib/tools/qlistdata.cpp | 4 +- src/corelib/tools/qlocale.cpp | 4 +- src/corelib/tools/qlocale.h | 4 +- src/corelib/tools/qlocale_data_p.h | 4 +- src/corelib/tools/qlocale_p.h | 4 +- src/corelib/tools/qmap.cpp | 4 +- src/corelib/tools/qmap.h | 4 +- src/corelib/tools/qpair.h | 4 +- src/corelib/tools/qpodlist_p.h | 4 +- src/corelib/tools/qpoint.cpp | 4 +- src/corelib/tools/qpoint.h | 4 +- src/corelib/tools/qqueue.cpp | 4 +- src/corelib/tools/qqueue.h | 4 +- src/corelib/tools/qrect.cpp | 4 +- src/corelib/tools/qrect.h | 4 +- src/corelib/tools/qregexp.cpp | 4 +- src/corelib/tools/qregexp.h | 4 +- src/corelib/tools/qringbuffer_p.h | 4 +- src/corelib/tools/qset.h | 4 +- src/corelib/tools/qshareddata.cpp | 4 +- src/corelib/tools/qshareddata.h | 4 +- src/corelib/tools/qsharedpointer.cpp | 4 +- src/corelib/tools/qsharedpointer.h | 4 +- src/corelib/tools/qsharedpointer_impl.h | 4 +- src/corelib/tools/qsize.cpp | 4 +- src/corelib/tools/qsize.h | 4 +- src/corelib/tools/qstack.cpp | 4 +- src/corelib/tools/qstack.h | 4 +- src/corelib/tools/qstring.cpp | 4 +- src/corelib/tools/qstring.h | 4 +- src/corelib/tools/qstringlist.cpp | 4 +- src/corelib/tools/qstringlist.h | 4 +- src/corelib/tools/qstringmatcher.cpp | 4 +- src/corelib/tools/qstringmatcher.h | 4 +- src/corelib/tools/qtextboundaryfinder.cpp | 4 +- src/corelib/tools/qtextboundaryfinder.h | 4 +- src/corelib/tools/qtimeline.cpp | 4 +- src/corelib/tools/qtimeline.h | 4 +- src/corelib/tools/qtools_p.h | 4 +- src/corelib/tools/qunicodetables.cpp | 4 +- src/corelib/tools/qunicodetables_p.h | 4 +- src/corelib/tools/qvarlengtharray.h | 4 +- src/corelib/tools/qvector.cpp | 4 +- src/corelib/tools/qvector.h | 4 +- src/corelib/tools/qvsnprintf.cpp | 4 +- src/corelib/xml/qxmlstream.cpp | 4 +- src/corelib/xml/qxmlstream.g | 4 +- src/corelib/xml/qxmlstream.h | 4 +- src/corelib/xml/qxmlstream_p.h | 4 +- src/corelib/xml/qxmlutils.cpp | 4 +- src/corelib/xml/qxmlutils_p.h | 4 +- src/dbus/qdbus_symbols.cpp | 4 +- src/dbus/qdbus_symbols_p.h | 4 +- src/dbus/qdbusabstractadaptor.cpp | 4 +- src/dbus/qdbusabstractadaptor.h | 4 +- src/dbus/qdbusabstractadaptor_p.h | 4 +- src/dbus/qdbusabstractinterface.cpp | 4 +- src/dbus/qdbusabstractinterface.h | 4 +- src/dbus/qdbusabstractinterface_p.h | 4 +- src/dbus/qdbusargument.cpp | 4 +- src/dbus/qdbusargument.h | 4 +- src/dbus/qdbusargument_p.h | 4 +- src/dbus/qdbusconnection.cpp | 4 +- src/dbus/qdbusconnection.h | 4 +- src/dbus/qdbusconnection_p.h | 4 +- src/dbus/qdbusconnectioninterface.cpp | 4 +- src/dbus/qdbusconnectioninterface.h | 4 +- src/dbus/qdbuscontext.cpp | 4 +- src/dbus/qdbuscontext.h | 4 +- src/dbus/qdbuscontext_p.h | 4 +- src/dbus/qdbusdemarshaller.cpp | 4 +- src/dbus/qdbuserror.cpp | 4 +- src/dbus/qdbuserror.h | 4 +- src/dbus/qdbusextratypes.cpp | 4 +- src/dbus/qdbusextratypes.h | 4 +- src/dbus/qdbusintegrator.cpp | 4 +- src/dbus/qdbusintegrator_p.h | 4 +- src/dbus/qdbusinterface.cpp | 4 +- src/dbus/qdbusinterface.h | 4 +- src/dbus/qdbusinterface_p.h | 4 +- src/dbus/qdbusinternalfilters.cpp | 4 +- src/dbus/qdbusintrospection.cpp | 4 +- src/dbus/qdbusintrospection_p.h | 4 +- src/dbus/qdbusmacros.h | 4 +- src/dbus/qdbusmarshaller.cpp | 4 +- src/dbus/qdbusmessage.cpp | 4 +- src/dbus/qdbusmessage.h | 4 +- src/dbus/qdbusmessage_p.h | 4 +- src/dbus/qdbusmetaobject.cpp | 4 +- src/dbus/qdbusmetaobject_p.h | 4 +- src/dbus/qdbusmetatype.cpp | 4 +- src/dbus/qdbusmetatype.h | 4 +- src/dbus/qdbusmetatype_p.h | 4 +- src/dbus/qdbusmisc.cpp | 4 +- src/dbus/qdbuspendingcall.cpp | 4 +- src/dbus/qdbuspendingcall.h | 4 +- src/dbus/qdbuspendingcall_p.h | 4 +- src/dbus/qdbuspendingreply.cpp | 4 +- src/dbus/qdbuspendingreply.h | 4 +- src/dbus/qdbusreply.cpp | 4 +- src/dbus/qdbusreply.h | 4 +- src/dbus/qdbusserver.cpp | 4 +- src/dbus/qdbusserver.h | 4 +- src/dbus/qdbusthread.cpp | 4 +- src/dbus/qdbusthreaddebug_p.h | 4 +- src/dbus/qdbusutil.cpp | 4 +- src/dbus/qdbusutil_p.h | 4 +- src/dbus/qdbusxmlgenerator.cpp | 4 +- src/dbus/qdbusxmlparser.cpp | 4 +- src/dbus/qdbusxmlparser_p.h | 4 +- src/gui/accessible/qaccessible.cpp | 4 +- src/gui/accessible/qaccessible.h | 4 +- src/gui/accessible/qaccessible2.cpp | 4 +- src/gui/accessible/qaccessible2.h | 4 +- src/gui/accessible/qaccessible_mac.mm | 4 +- src/gui/accessible/qaccessible_mac_carbon.cpp | 4 +- src/gui/accessible/qaccessible_mac_p.h | 4 +- src/gui/accessible/qaccessible_unix.cpp | 4 +- src/gui/accessible/qaccessible_win.cpp | 4 +- src/gui/accessible/qaccessiblebridge.cpp | 4 +- src/gui/accessible/qaccessiblebridge.h | 4 +- src/gui/accessible/qaccessibleobject.cpp | 4 +- src/gui/accessible/qaccessibleobject.h | 4 +- src/gui/accessible/qaccessibleplugin.cpp | 4 +- src/gui/accessible/qaccessibleplugin.h | 4 +- src/gui/accessible/qaccessiblewidget.cpp | 4 +- src/gui/accessible/qaccessiblewidget.h | 4 +- src/gui/dialogs/qabstractpagesetupdialog.cpp | 4 +- src/gui/dialogs/qabstractpagesetupdialog.h | 4 +- src/gui/dialogs/qabstractpagesetupdialog_p.h | 4 +- src/gui/dialogs/qabstractprintdialog.cpp | 4 +- src/gui/dialogs/qabstractprintdialog.h | 4 +- src/gui/dialogs/qabstractprintdialog_p.h | 4 +- src/gui/dialogs/qcolordialog.cpp | 4 +- src/gui/dialogs/qcolordialog.h | 4 +- src/gui/dialogs/qcolordialog_mac.mm | 4 +- src/gui/dialogs/qcolordialog_p.h | 4 +- src/gui/dialogs/qdialog.cpp | 4 +- src/gui/dialogs/qdialog.h | 4 +- src/gui/dialogs/qdialog_p.h | 4 +- src/gui/dialogs/qdialogsbinarycompat_win.cpp | 4 +- src/gui/dialogs/qerrormessage.cpp | 4 +- src/gui/dialogs/qerrormessage.h | 4 +- src/gui/dialogs/qfiledialog.cpp | 4 +- src/gui/dialogs/qfiledialog.h | 4 +- src/gui/dialogs/qfiledialog.ui | 4 +- src/gui/dialogs/qfiledialog_mac.mm | 4 +- src/gui/dialogs/qfiledialog_p.h | 4 +- src/gui/dialogs/qfiledialog_win.cpp | 4 +- src/gui/dialogs/qfiledialog_wince.ui | 2 +- src/gui/dialogs/qfileinfogatherer.cpp | 4 +- src/gui/dialogs/qfileinfogatherer_p.h | 4 +- src/gui/dialogs/qfilesystemmodel.cpp | 4 +- src/gui/dialogs/qfilesystemmodel.h | 4 +- src/gui/dialogs/qfilesystemmodel_p.h | 4 +- src/gui/dialogs/qfontdialog.cpp | 4 +- src/gui/dialogs/qfontdialog.h | 4 +- src/gui/dialogs/qfontdialog_mac.mm | 4 +- src/gui/dialogs/qfontdialog_p.h | 4 +- src/gui/dialogs/qinputdialog.cpp | 4 +- src/gui/dialogs/qinputdialog.h | 4 +- src/gui/dialogs/qmessagebox.cpp | 4 +- src/gui/dialogs/qmessagebox.h | 4 +- src/gui/dialogs/qnspanelproxy_mac.mm | 4 +- src/gui/dialogs/qpagesetupdialog.cpp | 4 +- src/gui/dialogs/qpagesetupdialog.h | 4 +- src/gui/dialogs/qpagesetupdialog_mac.mm | 4 +- src/gui/dialogs/qpagesetupdialog_unix.cpp | 4 +- src/gui/dialogs/qpagesetupdialog_unix_p.h | 4 +- src/gui/dialogs/qpagesetupdialog_win.cpp | 4 +- src/gui/dialogs/qprintdialog.h | 4 +- src/gui/dialogs/qprintdialog_mac.mm | 4 +- src/gui/dialogs/qprintdialog_qws.cpp | 4 +- src/gui/dialogs/qprintdialog_unix.cpp | 4 +- src/gui/dialogs/qprintdialog_win.cpp | 4 +- src/gui/dialogs/qprintpreviewdialog.cpp | 4 +- src/gui/dialogs/qprintpreviewdialog.h | 4 +- src/gui/dialogs/qprogressdialog.cpp | 4 +- src/gui/dialogs/qprogressdialog.h | 4 +- src/gui/dialogs/qsidebar.cpp | 4 +- src/gui/dialogs/qsidebar_p.h | 4 +- src/gui/dialogs/qwizard.cpp | 4 +- src/gui/dialogs/qwizard.h | 4 +- src/gui/dialogs/qwizard_win.cpp | 4 +- src/gui/dialogs/qwizard_win_p.h | 4 +- src/gui/embedded/qcopchannel_qws.cpp | 4 +- src/gui/embedded/qcopchannel_qws.h | 4 +- src/gui/embedded/qdecoration_qws.cpp | 4 +- src/gui/embedded/qdecoration_qws.h | 4 +- src/gui/embedded/qdecorationdefault_qws.cpp | 4 +- src/gui/embedded/qdecorationdefault_qws.h | 4 +- src/gui/embedded/qdecorationfactory_qws.cpp | 4 +- src/gui/embedded/qdecorationfactory_qws.h | 4 +- src/gui/embedded/qdecorationplugin_qws.cpp | 4 +- src/gui/embedded/qdecorationplugin_qws.h | 4 +- src/gui/embedded/qdecorationstyled_qws.cpp | 4 +- src/gui/embedded/qdecorationstyled_qws.h | 4 +- src/gui/embedded/qdecorationwindows_qws.cpp | 4 +- src/gui/embedded/qdecorationwindows_qws.h | 4 +- src/gui/embedded/qdirectpainter_qws.cpp | 4 +- src/gui/embedded/qdirectpainter_qws.h | 4 +- src/gui/embedded/qkbd_qws.cpp | 4 +- src/gui/embedded/qkbd_qws.h | 4 +- src/gui/embedded/qkbddriverfactory_qws.cpp | 4 +- src/gui/embedded/qkbddriverfactory_qws.h | 4 +- src/gui/embedded/qkbddriverplugin_qws.cpp | 4 +- src/gui/embedded/qkbddriverplugin_qws.h | 4 +- src/gui/embedded/qkbdpc101_qws.cpp | 4 +- src/gui/embedded/qkbdpc101_qws.h | 4 +- src/gui/embedded/qkbdsl5000_qws.cpp | 4 +- src/gui/embedded/qkbdsl5000_qws.h | 4 +- src/gui/embedded/qkbdtty_qws.cpp | 4 +- src/gui/embedded/qkbdtty_qws.h | 4 +- src/gui/embedded/qkbdum_qws.cpp | 4 +- src/gui/embedded/qkbdum_qws.h | 4 +- src/gui/embedded/qkbdusb_qws.cpp | 4 +- src/gui/embedded/qkbdusb_qws.h | 4 +- src/gui/embedded/qkbdvfb_qws.cpp | 4 +- src/gui/embedded/qkbdvfb_qws.h | 4 +- src/gui/embedded/qkbdvr41xx_qws.cpp | 4 +- src/gui/embedded/qkbdvr41xx_qws.h | 4 +- src/gui/embedded/qkbdyopy_qws.cpp | 4 +- src/gui/embedded/qkbdyopy_qws.h | 4 +- src/gui/embedded/qlock.cpp | 4 +- src/gui/embedded/qlock_p.h | 4 +- src/gui/embedded/qmouse_qws.cpp | 4 +- src/gui/embedded/qmouse_qws.h | 4 +- src/gui/embedded/qmousebus_qws.cpp | 4 +- src/gui/embedded/qmousebus_qws.h | 4 +- src/gui/embedded/qmousedriverfactory_qws.cpp | 4 +- src/gui/embedded/qmousedriverfactory_qws.h | 4 +- src/gui/embedded/qmousedriverplugin_qws.cpp | 4 +- src/gui/embedded/qmousedriverplugin_qws.h | 4 +- src/gui/embedded/qmouselinuxtp_qws.cpp | 4 +- src/gui/embedded/qmouselinuxtp_qws.h | 4 +- src/gui/embedded/qmousepc_qws.cpp | 4 +- src/gui/embedded/qmousepc_qws.h | 4 +- src/gui/embedded/qmousetslib_qws.cpp | 4 +- src/gui/embedded/qmousetslib_qws.h | 4 +- src/gui/embedded/qmousevfb_qws.cpp | 4 +- src/gui/embedded/qmousevfb_qws.h | 4 +- src/gui/embedded/qmousevr41xx_qws.cpp | 4 +- src/gui/embedded/qmousevr41xx_qws.h | 4 +- src/gui/embedded/qmouseyopy_qws.cpp | 4 +- src/gui/embedded/qmouseyopy_qws.h | 4 +- src/gui/embedded/qscreen_qws.cpp | 4 +- src/gui/embedded/qscreen_qws.h | 4 +- src/gui/embedded/qscreendriverfactory_qws.cpp | 4 +- src/gui/embedded/qscreendriverfactory_qws.h | 4 +- src/gui/embedded/qscreendriverplugin_qws.cpp | 4 +- src/gui/embedded/qscreendriverplugin_qws.h | 4 +- src/gui/embedded/qscreenlinuxfb_qws.cpp | 4 +- src/gui/embedded/qscreenlinuxfb_qws.h | 4 +- src/gui/embedded/qscreenmulti_qws.cpp | 4 +- src/gui/embedded/qscreenmulti_qws_p.h | 4 +- src/gui/embedded/qscreenproxy_qws.cpp | 4 +- src/gui/embedded/qscreenproxy_qws.h | 4 +- src/gui/embedded/qscreentransformed_qws.cpp | 4 +- src/gui/embedded/qscreentransformed_qws.h | 4 +- src/gui/embedded/qscreenvfb_qws.cpp | 4 +- src/gui/embedded/qscreenvfb_qws.h | 4 +- src/gui/embedded/qsoundqss_qws.cpp | 4 +- src/gui/embedded/qsoundqss_qws.h | 4 +- src/gui/embedded/qtransportauth_qws.cpp | 4 +- src/gui/embedded/qtransportauth_qws.h | 4 +- src/gui/embedded/qtransportauth_qws_p.h | 4 +- src/gui/embedded/qtransportauthdefs_qws.h | 4 +- src/gui/embedded/qunixsocket.cpp | 4 +- src/gui/embedded/qunixsocket_p.h | 4 +- src/gui/embedded/qunixsocketserver.cpp | 4 +- src/gui/embedded/qunixsocketserver_p.h | 4 +- src/gui/embedded/qvfbhdr.h | 4 +- src/gui/embedded/qwindowsystem_p.h | 4 +- src/gui/embedded/qwindowsystem_qws.cpp | 4 +- src/gui/embedded/qwindowsystem_qws.h | 4 +- src/gui/embedded/qwscommand_qws.cpp | 4 +- src/gui/embedded/qwscommand_qws_p.h | 4 +- src/gui/embedded/qwscursor_qws.cpp | 4 +- src/gui/embedded/qwscursor_qws.h | 4 +- src/gui/embedded/qwsdisplay_qws.h | 4 +- src/gui/embedded/qwsdisplay_qws_p.h | 4 +- src/gui/embedded/qwsembedwidget.cpp | 4 +- src/gui/embedded/qwsembedwidget.h | 4 +- src/gui/embedded/qwsevent_qws.cpp | 4 +- src/gui/embedded/qwsevent_qws.h | 4 +- src/gui/embedded/qwslock.cpp | 4 +- src/gui/embedded/qwslock_p.h | 4 +- src/gui/embedded/qwsmanager_p.h | 4 +- src/gui/embedded/qwsmanager_qws.cpp | 4 +- src/gui/embedded/qwsmanager_qws.h | 4 +- src/gui/embedded/qwsproperty_qws.cpp | 4 +- src/gui/embedded/qwsproperty_qws.h | 4 +- src/gui/embedded/qwsprotocolitem_qws.h | 4 +- src/gui/embedded/qwssharedmemory.cpp | 4 +- src/gui/embedded/qwssharedmemory_p.h | 4 +- src/gui/embedded/qwssignalhandler.cpp | 4 +- src/gui/embedded/qwssignalhandler_p.h | 4 +- src/gui/embedded/qwssocket_qws.cpp | 4 +- src/gui/embedded/qwssocket_qws.h | 4 +- src/gui/embedded/qwsutils_qws.h | 4 +- src/gui/graphicsview/qgraphicsgridlayout.cpp | 4 +- src/gui/graphicsview/qgraphicsgridlayout.h | 4 +- src/gui/graphicsview/qgraphicsitem.cpp | 4 +- src/gui/graphicsview/qgraphicsitem.h | 4 +- src/gui/graphicsview/qgraphicsitem_p.h | 4 +- src/gui/graphicsview/qgraphicsitemanimation.cpp | 4 +- src/gui/graphicsview/qgraphicsitemanimation.h | 4 +- src/gui/graphicsview/qgraphicslayout.cpp | 4 +- src/gui/graphicsview/qgraphicslayout.h | 4 +- src/gui/graphicsview/qgraphicslayout_p.cpp | 4 +- src/gui/graphicsview/qgraphicslayout_p.h | 4 +- src/gui/graphicsview/qgraphicslayoutitem.cpp | 4 +- src/gui/graphicsview/qgraphicslayoutitem.h | 4 +- src/gui/graphicsview/qgraphicslayoutitem_p.h | 4 +- src/gui/graphicsview/qgraphicslinearlayout.cpp | 4 +- src/gui/graphicsview/qgraphicslinearlayout.h | 4 +- src/gui/graphicsview/qgraphicsproxywidget.cpp | 4 +- src/gui/graphicsview/qgraphicsproxywidget.h | 4 +- src/gui/graphicsview/qgraphicsproxywidget_p.h | 4 +- src/gui/graphicsview/qgraphicsscene.cpp | 4 +- src/gui/graphicsview/qgraphicsscene.h | 4 +- src/gui/graphicsview/qgraphicsscene_bsp.cpp | 4 +- src/gui/graphicsview/qgraphicsscene_bsp_p.h | 4 +- src/gui/graphicsview/qgraphicsscene_p.h | 4 +- src/gui/graphicsview/qgraphicssceneevent.cpp | 4 +- src/gui/graphicsview/qgraphicssceneevent.h | 4 +- src/gui/graphicsview/qgraphicsview.cpp | 4 +- src/gui/graphicsview/qgraphicsview.h | 4 +- src/gui/graphicsview/qgraphicsview_p.h | 4 +- src/gui/graphicsview/qgraphicswidget.cpp | 4 +- src/gui/graphicsview/qgraphicswidget.h | 4 +- src/gui/graphicsview/qgraphicswidget_p.cpp | 4 +- src/gui/graphicsview/qgraphicswidget_p.h | 4 +- src/gui/graphicsview/qgridlayoutengine.cpp | 4 +- src/gui/graphicsview/qgridlayoutengine_p.h | 4 +- src/gui/image/qbitmap.cpp | 4 +- src/gui/image/qbitmap.h | 4 +- src/gui/image/qbmphandler.cpp | 4 +- src/gui/image/qbmphandler_p.h | 4 +- src/gui/image/qicon.cpp | 4 +- src/gui/image/qicon.h | 4 +- src/gui/image/qiconengine.cpp | 4 +- src/gui/image/qiconengine.h | 4 +- src/gui/image/qiconengineplugin.cpp | 4 +- src/gui/image/qiconengineplugin.h | 4 +- src/gui/image/qimage.cpp | 4 +- src/gui/image/qimage.h | 4 +- src/gui/image/qimage_p.h | 4 +- src/gui/image/qimageiohandler.cpp | 4 +- src/gui/image/qimageiohandler.h | 4 +- src/gui/image/qimagereader.cpp | 4 +- src/gui/image/qimagereader.h | 4 +- src/gui/image/qimagewriter.cpp | 4 +- src/gui/image/qimagewriter.h | 4 +- src/gui/image/qmovie.cpp | 4 +- src/gui/image/qmovie.h | 4 +- src/gui/image/qnativeimage.cpp | 4 +- src/gui/image/qnativeimage_p.h | 4 +- src/gui/image/qpaintengine_pic.cpp | 4 +- src/gui/image/qpaintengine_pic_p.h | 4 +- src/gui/image/qpicture.cpp | 4 +- src/gui/image/qpicture.h | 4 +- src/gui/image/qpicture_p.h | 4 +- src/gui/image/qpictureformatplugin.cpp | 4 +- src/gui/image/qpictureformatplugin.h | 4 +- src/gui/image/qpixmap.cpp | 4 +- src/gui/image/qpixmap.h | 4 +- src/gui/image/qpixmap_mac.cpp | 4 +- src/gui/image/qpixmap_mac_p.h | 4 +- src/gui/image/qpixmap_qws.cpp | 4 +- src/gui/image/qpixmap_raster.cpp | 4 +- src/gui/image/qpixmap_raster_p.h | 4 +- src/gui/image/qpixmap_win.cpp | 4 +- src/gui/image/qpixmap_x11.cpp | 4 +- src/gui/image/qpixmap_x11_p.h | 4 +- src/gui/image/qpixmapcache.cpp | 4 +- src/gui/image/qpixmapcache.h | 4 +- src/gui/image/qpixmapdata.cpp | 4 +- src/gui/image/qpixmapdata_p.h | 4 +- src/gui/image/qpixmapdatafactory.cpp | 4 +- src/gui/image/qpixmapdatafactory_p.h | 4 +- src/gui/image/qpixmapfilter.cpp | 4 +- src/gui/image/qpixmapfilter_p.h | 4 +- src/gui/image/qpnghandler.cpp | 4 +- src/gui/image/qpnghandler_p.h | 4 +- src/gui/image/qppmhandler.cpp | 4 +- src/gui/image/qppmhandler_p.h | 4 +- src/gui/image/qxbmhandler.cpp | 4 +- src/gui/image/qxbmhandler_p.h | 4 +- src/gui/image/qxpmhandler.cpp | 4 +- src/gui/image/qxpmhandler_p.h | 4 +- src/gui/inputmethod/qinputcontext.cpp | 4 +- src/gui/inputmethod/qinputcontext.h | 4 +- src/gui/inputmethod/qinputcontext_p.h | 4 +- src/gui/inputmethod/qinputcontextfactory.cpp | 4 +- src/gui/inputmethod/qinputcontextfactory.h | 4 +- src/gui/inputmethod/qinputcontextplugin.cpp | 4 +- src/gui/inputmethod/qinputcontextplugin.h | 4 +- src/gui/inputmethod/qmacinputcontext_mac.cpp | 4 +- src/gui/inputmethod/qmacinputcontext_p.h | 4 +- src/gui/inputmethod/qwininputcontext_p.h | 4 +- src/gui/inputmethod/qwininputcontext_win.cpp | 4 +- src/gui/inputmethod/qwsinputcontext_p.h | 4 +- src/gui/inputmethod/qwsinputcontext_qws.cpp | 4 +- src/gui/inputmethod/qximinputcontext_p.h | 4 +- src/gui/inputmethod/qximinputcontext_x11.cpp | 4 +- src/gui/itemviews/qabstractitemdelegate.cpp | 4 +- src/gui/itemviews/qabstractitemdelegate.h | 4 +- src/gui/itemviews/qabstractitemview.cpp | 4 +- src/gui/itemviews/qabstractitemview.h | 4 +- src/gui/itemviews/qabstractitemview_p.h | 4 +- src/gui/itemviews/qabstractproxymodel.cpp | 4 +- src/gui/itemviews/qabstractproxymodel.h | 4 +- src/gui/itemviews/qabstractproxymodel_p.h | 4 +- src/gui/itemviews/qbsptree.cpp | 4 +- src/gui/itemviews/qbsptree_p.h | 4 +- src/gui/itemviews/qcolumnview.cpp | 4 +- src/gui/itemviews/qcolumnview.h | 4 +- src/gui/itemviews/qcolumnview_p.h | 4 +- src/gui/itemviews/qcolumnviewgrip.cpp | 4 +- src/gui/itemviews/qcolumnviewgrip_p.h | 4 +- src/gui/itemviews/qdatawidgetmapper.cpp | 4 +- src/gui/itemviews/qdatawidgetmapper.h | 4 +- src/gui/itemviews/qdirmodel.cpp | 4 +- src/gui/itemviews/qdirmodel.h | 4 +- src/gui/itemviews/qfileiconprovider.cpp | 4 +- src/gui/itemviews/qfileiconprovider.h | 4 +- src/gui/itemviews/qheaderview.cpp | 4 +- src/gui/itemviews/qheaderview.h | 4 +- src/gui/itemviews/qheaderview_p.h | 4 +- src/gui/itemviews/qitemdelegate.cpp | 4 +- src/gui/itemviews/qitemdelegate.h | 4 +- src/gui/itemviews/qitemeditorfactory.cpp | 4 +- src/gui/itemviews/qitemeditorfactory.h | 4 +- src/gui/itemviews/qitemeditorfactory_p.h | 4 +- src/gui/itemviews/qitemselectionmodel.cpp | 4 +- src/gui/itemviews/qitemselectionmodel.h | 4 +- src/gui/itemviews/qitemselectionmodel_p.h | 4 +- src/gui/itemviews/qlistview.cpp | 4 +- src/gui/itemviews/qlistview.h | 4 +- src/gui/itemviews/qlistview_p.h | 4 +- src/gui/itemviews/qlistwidget.cpp | 4 +- src/gui/itemviews/qlistwidget.h | 4 +- src/gui/itemviews/qlistwidget_p.h | 4 +- src/gui/itemviews/qproxymodel.cpp | 4 +- src/gui/itemviews/qproxymodel.h | 4 +- src/gui/itemviews/qproxymodel_p.h | 4 +- src/gui/itemviews/qsortfilterproxymodel.cpp | 4 +- src/gui/itemviews/qsortfilterproxymodel.h | 4 +- src/gui/itemviews/qstandarditemmodel.cpp | 4 +- src/gui/itemviews/qstandarditemmodel.h | 4 +- src/gui/itemviews/qstandarditemmodel_p.h | 4 +- src/gui/itemviews/qstringlistmodel.cpp | 4 +- src/gui/itemviews/qstringlistmodel.h | 4 +- src/gui/itemviews/qstyleditemdelegate.cpp | 4 +- src/gui/itemviews/qstyleditemdelegate.h | 4 +- src/gui/itemviews/qtableview.cpp | 4 +- src/gui/itemviews/qtableview.h | 4 +- src/gui/itemviews/qtableview_p.h | 4 +- src/gui/itemviews/qtablewidget.cpp | 4 +- src/gui/itemviews/qtablewidget.h | 4 +- src/gui/itemviews/qtablewidget_p.h | 4 +- src/gui/itemviews/qtreeview.cpp | 4 +- src/gui/itemviews/qtreeview.h | 4 +- src/gui/itemviews/qtreeview_p.h | 4 +- src/gui/itemviews/qtreewidget.cpp | 4 +- src/gui/itemviews/qtreewidget.h | 4 +- src/gui/itemviews/qtreewidget_p.h | 4 +- src/gui/itemviews/qtreewidgetitemiterator.cpp | 4 +- src/gui/itemviews/qtreewidgetitemiterator.h | 4 +- src/gui/itemviews/qtreewidgetitemiterator_p.h | 4 +- src/gui/itemviews/qwidgetitemdata_p.h | 4 +- src/gui/kernel/qaction.cpp | 4 +- src/gui/kernel/qaction.h | 4 +- src/gui/kernel/qaction_p.h | 4 +- src/gui/kernel/qactiongroup.cpp | 4 +- src/gui/kernel/qactiongroup.h | 4 +- src/gui/kernel/qapplication.cpp | 4 +- src/gui/kernel/qapplication.h | 4 +- src/gui/kernel/qapplication_mac.mm | 4 +- src/gui/kernel/qapplication_p.h | 4 +- src/gui/kernel/qapplication_qws.cpp | 4 +- src/gui/kernel/qapplication_win.cpp | 4 +- src/gui/kernel/qapplication_x11.cpp | 4 +- src/gui/kernel/qboxlayout.cpp | 4 +- src/gui/kernel/qboxlayout.h | 4 +- src/gui/kernel/qclipboard.cpp | 4 +- src/gui/kernel/qclipboard.h | 4 +- src/gui/kernel/qclipboard_mac.cpp | 4 +- src/gui/kernel/qclipboard_p.h | 4 +- src/gui/kernel/qclipboard_qws.cpp | 4 +- src/gui/kernel/qclipboard_win.cpp | 4 +- src/gui/kernel/qclipboard_x11.cpp | 4 +- src/gui/kernel/qcocoaapplication_mac.mm | 4 +- src/gui/kernel/qcocoaapplication_mac_p.h | 4 +- src/gui/kernel/qcocoaapplicationdelegate_mac.mm | 4 +- src/gui/kernel/qcocoaapplicationdelegate_mac_p.h | 4 +- src/gui/kernel/qcocoamenuloader_mac.mm | 4 +- src/gui/kernel/qcocoamenuloader_mac_p.h | 4 +- src/gui/kernel/qcocoapanel_mac.mm | 4 +- src/gui/kernel/qcocoapanel_mac_p.h | 4 +- src/gui/kernel/qcocoaview_mac.mm | 4 +- src/gui/kernel/qcocoaview_mac_p.h | 4 +- src/gui/kernel/qcocoawindow_mac.mm | 4 +- src/gui/kernel/qcocoawindow_mac_p.h | 4 +- src/gui/kernel/qcocoawindowcustomthemeframe_mac.mm | 4 +- .../kernel/qcocoawindowcustomthemeframe_mac_p.h | 4 +- src/gui/kernel/qcocoawindowdelegate_mac.mm | 4 +- src/gui/kernel/qcocoawindowdelegate_mac_p.h | 4 +- src/gui/kernel/qcursor.cpp | 4 +- src/gui/kernel/qcursor.h | 4 +- src/gui/kernel/qcursor_mac.mm | 4 +- src/gui/kernel/qcursor_p.h | 4 +- src/gui/kernel/qcursor_qws.cpp | 4 +- src/gui/kernel/qcursor_win.cpp | 4 +- src/gui/kernel/qcursor_x11.cpp | 4 +- src/gui/kernel/qdesktopwidget.h | 4 +- src/gui/kernel/qdesktopwidget_mac.mm | 4 +- src/gui/kernel/qdesktopwidget_mac_p.h | 4 +- src/gui/kernel/qdesktopwidget_qws.cpp | 4 +- src/gui/kernel/qdesktopwidget_win.cpp | 4 +- src/gui/kernel/qdesktopwidget_x11.cpp | 4 +- src/gui/kernel/qdnd.cpp | 4 +- src/gui/kernel/qdnd_mac.mm | 4 +- src/gui/kernel/qdnd_p.h | 4 +- src/gui/kernel/qdnd_qws.cpp | 4 +- src/gui/kernel/qdnd_win.cpp | 4 +- src/gui/kernel/qdnd_x11.cpp | 4 +- src/gui/kernel/qdrag.cpp | 4 +- src/gui/kernel/qdrag.h | 4 +- src/gui/kernel/qevent.cpp | 4 +- src/gui/kernel/qevent.h | 4 +- src/gui/kernel/qevent_p.h | 4 +- src/gui/kernel/qeventdispatcher_glib_qws.cpp | 4 +- src/gui/kernel/qeventdispatcher_glib_qws_p.h | 4 +- src/gui/kernel/qeventdispatcher_mac.mm | 4 +- src/gui/kernel/qeventdispatcher_mac_p.h | 4 +- src/gui/kernel/qeventdispatcher_qws.cpp | 4 +- src/gui/kernel/qeventdispatcher_qws_p.h | 4 +- src/gui/kernel/qeventdispatcher_x11.cpp | 4 +- src/gui/kernel/qeventdispatcher_x11_p.h | 4 +- src/gui/kernel/qformlayout.cpp | 4 +- src/gui/kernel/qformlayout.h | 4 +- src/gui/kernel/qgridlayout.cpp | 4 +- src/gui/kernel/qgridlayout.h | 4 +- src/gui/kernel/qguieventdispatcher_glib.cpp | 4 +- src/gui/kernel/qguieventdispatcher_glib_p.h | 4 +- src/gui/kernel/qguifunctions_wince.cpp | 4 +- src/gui/kernel/qguifunctions_wince.h | 4 +- src/gui/kernel/qguivariant.cpp | 4 +- src/gui/kernel/qkeymapper.cpp | 4 +- src/gui/kernel/qkeymapper_mac.cpp | 4 +- src/gui/kernel/qkeymapper_p.h | 4 +- src/gui/kernel/qkeymapper_qws.cpp | 4 +- src/gui/kernel/qkeymapper_win.cpp | 4 +- src/gui/kernel/qkeymapper_x11.cpp | 4 +- src/gui/kernel/qkeymapper_x11_p.cpp | 4 +- src/gui/kernel/qkeysequence.cpp | 4 +- src/gui/kernel/qkeysequence.h | 4 +- src/gui/kernel/qkeysequence_p.h | 4 +- src/gui/kernel/qlayout.cpp | 4 +- src/gui/kernel/qlayout.h | 4 +- src/gui/kernel/qlayout_p.h | 4 +- src/gui/kernel/qlayoutengine.cpp | 4 +- src/gui/kernel/qlayoutengine_p.h | 4 +- src/gui/kernel/qlayoutitem.cpp | 4 +- src/gui/kernel/qlayoutitem.h | 4 +- src/gui/kernel/qmacdefines_mac.h | 4 +- src/gui/kernel/qmime.cpp | 4 +- src/gui/kernel/qmime.h | 4 +- src/gui/kernel/qmime_mac.cpp | 4 +- src/gui/kernel/qmime_win.cpp | 4 +- src/gui/kernel/qmotifdnd_x11.cpp | 4 +- src/gui/kernel/qnsframeview_mac_p.h | 4 +- src/gui/kernel/qnsthemeframe_mac_p.h | 4 +- src/gui/kernel/qnstitledframe_mac_p.h | 4 +- src/gui/kernel/qole_win.cpp | 4 +- src/gui/kernel/qpalette.cpp | 4 +- src/gui/kernel/qpalette.h | 4 +- src/gui/kernel/qsessionmanager.h | 4 +- src/gui/kernel/qsessionmanager_qws.cpp | 4 +- src/gui/kernel/qshortcut.cpp | 4 +- src/gui/kernel/qshortcut.h | 4 +- src/gui/kernel/qshortcutmap.cpp | 4 +- src/gui/kernel/qshortcutmap_p.h | 4 +- src/gui/kernel/qsizepolicy.h | 4 +- src/gui/kernel/qsound.cpp | 4 +- src/gui/kernel/qsound.h | 4 +- src/gui/kernel/qsound_mac.mm | 4 +- src/gui/kernel/qsound_p.h | 4 +- src/gui/kernel/qsound_qws.cpp | 4 +- src/gui/kernel/qsound_win.cpp | 4 +- src/gui/kernel/qsound_x11.cpp | 4 +- src/gui/kernel/qstackedlayout.cpp | 4 +- src/gui/kernel/qstackedlayout.h | 4 +- src/gui/kernel/qt_cocoa_helpers_mac.mm | 4 +- src/gui/kernel/qt_cocoa_helpers_mac_p.h | 4 +- src/gui/kernel/qt_gui_pch.h | 4 +- src/gui/kernel/qt_mac.cpp | 4 +- src/gui/kernel/qt_mac_p.h | 4 +- src/gui/kernel/qt_x11_p.h | 4 +- src/gui/kernel/qtooltip.cpp | 4 +- src/gui/kernel/qtooltip.h | 4 +- src/gui/kernel/qwhatsthis.cpp | 4 +- src/gui/kernel/qwhatsthis.h | 4 +- src/gui/kernel/qwidget.cpp | 4 +- src/gui/kernel/qwidget.h | 4 +- src/gui/kernel/qwidget_mac.mm | 4 +- src/gui/kernel/qwidget_p.h | 4 +- src/gui/kernel/qwidget_qws.cpp | 4 +- src/gui/kernel/qwidget_win.cpp | 4 +- src/gui/kernel/qwidget_wince.cpp | 4 +- src/gui/kernel/qwidget_x11.cpp | 4 +- src/gui/kernel/qwidgetaction.cpp | 4 +- src/gui/kernel/qwidgetaction.h | 4 +- src/gui/kernel/qwidgetaction_p.h | 4 +- src/gui/kernel/qwidgetcreate_x11.cpp | 4 +- src/gui/kernel/qwindowdefs.h | 4 +- src/gui/kernel/qwindowdefs_win.h | 4 +- src/gui/kernel/qx11embed_x11.cpp | 4 +- src/gui/kernel/qx11embed_x11.h | 4 +- src/gui/kernel/qx11info_x11.cpp | 4 +- src/gui/kernel/qx11info_x11.h | 4 +- src/gui/painting/qbackingstore.cpp | 4 +- src/gui/painting/qbackingstore_p.h | 4 +- src/gui/painting/qbezier.cpp | 4 +- src/gui/painting/qbezier_p.h | 4 +- src/gui/painting/qblendfunctions.cpp | 4 +- src/gui/painting/qbrush.cpp | 4 +- src/gui/painting/qbrush.h | 4 +- src/gui/painting/qcolor.cpp | 4 +- src/gui/painting/qcolor.h | 4 +- src/gui/painting/qcolor_p.cpp | 4 +- src/gui/painting/qcolor_p.h | 4 +- src/gui/painting/qcolormap.h | 4 +- src/gui/painting/qcolormap_mac.cpp | 4 +- src/gui/painting/qcolormap_qws.cpp | 4 +- src/gui/painting/qcolormap_win.cpp | 4 +- src/gui/painting/qcolormap_x11.cpp | 4 +- src/gui/painting/qcssutil.cpp | 4 +- src/gui/painting/qcssutil_p.h | 4 +- src/gui/painting/qcups.cpp | 4 +- src/gui/painting/qcups_p.h | 4 +- src/gui/painting/qdatabuffer_p.h | 4 +- src/gui/painting/qdrawhelper.cpp | 4 +- src/gui/painting/qdrawhelper_iwmmxt.cpp | 4 +- src/gui/painting/qdrawhelper_mmx.cpp | 4 +- src/gui/painting/qdrawhelper_mmx3dnow.cpp | 4 +- src/gui/painting/qdrawhelper_mmx_p.h | 4 +- src/gui/painting/qdrawhelper_p.h | 4 +- src/gui/painting/qdrawhelper_sse.cpp | 4 +- src/gui/painting/qdrawhelper_sse2.cpp | 4 +- src/gui/painting/qdrawhelper_sse3dnow.cpp | 4 +- src/gui/painting/qdrawhelper_sse_p.h | 4 +- src/gui/painting/qdrawhelper_x86_p.h | 4 +- src/gui/painting/qdrawutil.cpp | 4 +- src/gui/painting/qdrawutil.h | 4 +- src/gui/painting/qemulationpaintengine.cpp | 4 +- src/gui/painting/qemulationpaintengine_p.h | 4 +- src/gui/painting/qfixed_p.h | 4 +- src/gui/painting/qgraphicssystem.cpp | 4 +- src/gui/painting/qgraphicssystem_mac.cpp | 4 +- src/gui/painting/qgraphicssystem_mac_p.h | 4 +- src/gui/painting/qgraphicssystem_p.h | 4 +- src/gui/painting/qgraphicssystem_qws.cpp | 4 +- src/gui/painting/qgraphicssystem_qws_p.h | 4 +- src/gui/painting/qgraphicssystem_raster.cpp | 4 +- src/gui/painting/qgraphicssystem_raster_p.h | 4 +- src/gui/painting/qgraphicssystemfactory.cpp | 4 +- src/gui/painting/qgraphicssystemfactory_p.h | 4 +- src/gui/painting/qgraphicssystemplugin.cpp | 4 +- src/gui/painting/qgraphicssystemplugin_p.h | 4 +- src/gui/painting/qgrayraster.c | 2 +- src/gui/painting/qgrayraster_p.h | 4 +- src/gui/painting/qimagescale.cpp | 4 +- src/gui/painting/qimagescale_p.h | 4 +- src/gui/painting/qmath_p.h | 4 +- src/gui/painting/qmatrix.cpp | 4 +- src/gui/painting/qmatrix.h | 4 +- src/gui/painting/qmemrotate.cpp | 4 +- src/gui/painting/qmemrotate_p.h | 4 +- src/gui/painting/qoutlinemapper.cpp | 4 +- src/gui/painting/qoutlinemapper_p.h | 4 +- src/gui/painting/qpaintdevice.h | 4 +- src/gui/painting/qpaintdevice_mac.cpp | 4 +- src/gui/painting/qpaintdevice_qws.cpp | 4 +- src/gui/painting/qpaintdevice_win.cpp | 4 +- src/gui/painting/qpaintdevice_x11.cpp | 4 +- src/gui/painting/qpaintengine.cpp | 4 +- src/gui/painting/qpaintengine.h | 4 +- src/gui/painting/qpaintengine_alpha.cpp | 4 +- src/gui/painting/qpaintengine_alpha_p.h | 4 +- src/gui/painting/qpaintengine_d3d.cpp | 4 +- src/gui/painting/qpaintengine_d3d_p.h | 4 +- src/gui/painting/qpaintengine_mac.cpp | 4 +- src/gui/painting/qpaintengine_mac_p.h | 4 +- src/gui/painting/qpaintengine_p.h | 4 +- src/gui/painting/qpaintengine_preview.cpp | 4 +- src/gui/painting/qpaintengine_preview_p.h | 4 +- src/gui/painting/qpaintengine_raster.cpp | 4 +- src/gui/painting/qpaintengine_raster_p.h | 4 +- src/gui/painting/qpaintengine_x11.cpp | 4 +- src/gui/painting/qpaintengine_x11_p.h | 4 +- src/gui/painting/qpaintengineex.cpp | 4 +- src/gui/painting/qpaintengineex_p.h | 4 +- src/gui/painting/qpainter.cpp | 4 +- src/gui/painting/qpainter.h | 4 +- src/gui/painting/qpainter_p.h | 4 +- src/gui/painting/qpainterpath.cpp | 4 +- src/gui/painting/qpainterpath.h | 4 +- src/gui/painting/qpainterpath_p.h | 4 +- src/gui/painting/qpathclipper.cpp | 4 +- src/gui/painting/qpathclipper_p.h | 4 +- src/gui/painting/qpdf.cpp | 4 +- src/gui/painting/qpdf_p.h | 4 +- src/gui/painting/qpen.cpp | 4 +- src/gui/painting/qpen.h | 4 +- src/gui/painting/qpen_p.h | 4 +- src/gui/painting/qpolygon.cpp | 4 +- src/gui/painting/qpolygon.h | 4 +- src/gui/painting/qpolygonclipper_p.h | 4 +- src/gui/painting/qprintengine.h | 4 +- src/gui/painting/qprintengine_mac.mm | 4 +- src/gui/painting/qprintengine_mac_p.h | 4 +- src/gui/painting/qprintengine_pdf.cpp | 4 +- src/gui/painting/qprintengine_pdf_p.h | 4 +- src/gui/painting/qprintengine_ps.cpp | 4 +- src/gui/painting/qprintengine_ps_p.h | 4 +- src/gui/painting/qprintengine_qws.cpp | 4 +- src/gui/painting/qprintengine_qws_p.h | 4 +- src/gui/painting/qprintengine_win.cpp | 4 +- src/gui/painting/qprintengine_win_p.h | 4 +- src/gui/painting/qprinter.cpp | 4 +- src/gui/painting/qprinter.h | 4 +- src/gui/painting/qprinter_p.h | 4 +- src/gui/painting/qprinterinfo.h | 4 +- src/gui/painting/qprinterinfo_mac.cpp | 4 +- src/gui/painting/qprinterinfo_unix.cpp | 4 +- src/gui/painting/qprinterinfo_unix_p.h | 4 +- src/gui/painting/qprinterinfo_win.cpp | 4 +- src/gui/painting/qrasterdefs_p.h | 4 +- src/gui/painting/qrasterizer.cpp | 4 +- src/gui/painting/qrasterizer_p.h | 4 +- src/gui/painting/qregion.cpp | 4 +- src/gui/painting/qregion.h | 4 +- src/gui/painting/qregion_mac.cpp | 4 +- src/gui/painting/qregion_qws.cpp | 4 +- src/gui/painting/qregion_win.cpp | 4 +- src/gui/painting/qregion_wince.cpp | 4 +- src/gui/painting/qregion_x11.cpp | 4 +- src/gui/painting/qrgb.h | 4 +- src/gui/painting/qstroker.cpp | 4 +- src/gui/painting/qstroker_p.h | 4 +- src/gui/painting/qstylepainter.cpp | 4 +- src/gui/painting/qstylepainter.h | 4 +- src/gui/painting/qtessellator.cpp | 4 +- src/gui/painting/qtessellator_p.h | 4 +- src/gui/painting/qtextureglyphcache.cpp | 4 +- src/gui/painting/qtextureglyphcache_p.h | 4 +- src/gui/painting/qtransform.cpp | 4 +- src/gui/painting/qtransform.h | 4 +- src/gui/painting/qvectorpath_p.h | 4 +- src/gui/painting/qwindowsurface.cpp | 4 +- src/gui/painting/qwindowsurface_d3d.cpp | 4 +- src/gui/painting/qwindowsurface_d3d_p.h | 4 +- src/gui/painting/qwindowsurface_mac.cpp | 4 +- src/gui/painting/qwindowsurface_mac_p.h | 4 +- src/gui/painting/qwindowsurface_p.h | 4 +- src/gui/painting/qwindowsurface_qws.cpp | 4 +- src/gui/painting/qwindowsurface_qws_p.h | 4 +- src/gui/painting/qwindowsurface_raster.cpp | 4 +- src/gui/painting/qwindowsurface_raster_p.h | 4 +- src/gui/painting/qwindowsurface_x11.cpp | 4 +- src/gui/painting/qwindowsurface_x11_p.h | 4 +- src/gui/painting/qwmatrix.h | 4 +- src/gui/styles/gtksymbols.cpp | 4 +- src/gui/styles/gtksymbols_p.h | 4 +- src/gui/styles/qcdestyle.cpp | 4 +- src/gui/styles/qcdestyle.h | 4 +- src/gui/styles/qcleanlooksstyle.cpp | 4 +- src/gui/styles/qcleanlooksstyle.h | 4 +- src/gui/styles/qcleanlooksstyle_p.h | 4 +- src/gui/styles/qcommonstyle.cpp | 4 +- src/gui/styles/qcommonstyle.h | 4 +- src/gui/styles/qcommonstyle_p.h | 4 +- src/gui/styles/qcommonstylepixmaps_p.h | 4 +- src/gui/styles/qgtkpainter.cpp | 4 +- src/gui/styles/qgtkpainter_p.h | 4 +- src/gui/styles/qgtkstyle.cpp | 4 +- src/gui/styles/qgtkstyle.h | 4 +- src/gui/styles/qmacstyle_mac.h | 4 +- src/gui/styles/qmacstyle_mac.mm | 4 +- src/gui/styles/qmacstylepixmaps_mac_p.h | 4 +- src/gui/styles/qmotifstyle.cpp | 4 +- src/gui/styles/qmotifstyle.h | 4 +- src/gui/styles/qmotifstyle_p.h | 4 +- src/gui/styles/qplastiquestyle.cpp | 4 +- src/gui/styles/qplastiquestyle.h | 4 +- src/gui/styles/qstyle.cpp | 4 +- src/gui/styles/qstyle.h | 4 +- src/gui/styles/qstyle_p.h | 4 +- src/gui/styles/qstylefactory.cpp | 4 +- src/gui/styles/qstylefactory.h | 4 +- src/gui/styles/qstyleoption.cpp | 4 +- src/gui/styles/qstyleoption.h | 4 +- src/gui/styles/qstyleplugin.cpp | 4 +- src/gui/styles/qstyleplugin.h | 4 +- src/gui/styles/qstylesheetstyle.cpp | 4 +- src/gui/styles/qstylesheetstyle_default.cpp | 4 +- src/gui/styles/qstylesheetstyle_p.h | 4 +- src/gui/styles/qwindowscestyle.cpp | 4 +- src/gui/styles/qwindowscestyle.h | 4 +- src/gui/styles/qwindowscestyle_p.h | 4 +- src/gui/styles/qwindowsmobilestyle.cpp | 4 +- src/gui/styles/qwindowsmobilestyle.h | 4 +- src/gui/styles/qwindowsmobilestyle_p.h | 4 +- src/gui/styles/qwindowsstyle.cpp | 4 +- src/gui/styles/qwindowsstyle.h | 4 +- src/gui/styles/qwindowsstyle_p.h | 4 +- src/gui/styles/qwindowsvistastyle.cpp | 4 +- src/gui/styles/qwindowsvistastyle.h | 4 +- src/gui/styles/qwindowsvistastyle_p.h | 4 +- src/gui/styles/qwindowsxpstyle.cpp | 4 +- src/gui/styles/qwindowsxpstyle.h | 4 +- src/gui/styles/qwindowsxpstyle_p.h | 4 +- src/gui/text/qabstractfontengine_p.h | 4 +- src/gui/text/qabstractfontengine_qws.cpp | 4 +- src/gui/text/qabstractfontengine_qws.h | 4 +- src/gui/text/qabstracttextdocumentlayout.cpp | 4 +- src/gui/text/qabstracttextdocumentlayout.h | 4 +- src/gui/text/qabstracttextdocumentlayout_p.h | 4 +- src/gui/text/qcssparser.cpp | 4 +- src/gui/text/qcssparser_p.h | 4 +- src/gui/text/qcssscanner.cpp | 4 +- src/gui/text/qfont.cpp | 4 +- src/gui/text/qfont.h | 4 +- src/gui/text/qfont_mac.cpp | 4 +- src/gui/text/qfont_p.h | 4 +- src/gui/text/qfont_qws.cpp | 4 +- src/gui/text/qfont_win.cpp | 4 +- src/gui/text/qfont_x11.cpp | 4 +- src/gui/text/qfontdatabase.cpp | 4 +- src/gui/text/qfontdatabase.h | 4 +- src/gui/text/qfontdatabase_mac.cpp | 4 +- src/gui/text/qfontdatabase_qws.cpp | 4 +- src/gui/text/qfontdatabase_win.cpp | 4 +- src/gui/text/qfontdatabase_x11.cpp | 4 +- src/gui/text/qfontengine.cpp | 4 +- src/gui/text/qfontengine_ft.cpp | 4 +- src/gui/text/qfontengine_ft_p.h | 4 +- src/gui/text/qfontengine_mac.mm | 4 +- src/gui/text/qfontengine_p.h | 4 +- src/gui/text/qfontengine_qpf.cpp | 4 +- src/gui/text/qfontengine_qpf_p.h | 4 +- src/gui/text/qfontengine_qws.cpp | 4 +- src/gui/text/qfontengine_win.cpp | 4 +- src/gui/text/qfontengine_win_p.h | 4 +- src/gui/text/qfontengine_x11.cpp | 4 +- src/gui/text/qfontengine_x11_p.h | 4 +- src/gui/text/qfontengineglyphcache_p.h | 4 +- src/gui/text/qfontinfo.h | 4 +- src/gui/text/qfontmetrics.cpp | 4 +- src/gui/text/qfontmetrics.h | 4 +- src/gui/text/qfontsubset.cpp | 4 +- src/gui/text/qfontsubset_p.h | 4 +- src/gui/text/qfragmentmap.cpp | 4 +- src/gui/text/qfragmentmap_p.h | 4 +- src/gui/text/qpfutil.cpp | 4 +- src/gui/text/qsyntaxhighlighter.cpp | 4 +- src/gui/text/qsyntaxhighlighter.h | 4 +- src/gui/text/qtextcontrol.cpp | 4 +- src/gui/text/qtextcontrol_p.h | 4 +- src/gui/text/qtextcontrol_p_p.h | 4 +- src/gui/text/qtextcursor.cpp | 4 +- src/gui/text/qtextcursor.h | 4 +- src/gui/text/qtextcursor_p.h | 4 +- src/gui/text/qtextdocument.cpp | 4 +- src/gui/text/qtextdocument.h | 4 +- src/gui/text/qtextdocument_p.cpp | 4 +- src/gui/text/qtextdocument_p.h | 4 +- src/gui/text/qtextdocumentfragment.cpp | 4 +- src/gui/text/qtextdocumentfragment.h | 4 +- src/gui/text/qtextdocumentfragment_p.h | 4 +- src/gui/text/qtextdocumentlayout.cpp | 4 +- src/gui/text/qtextdocumentlayout_p.h | 4 +- src/gui/text/qtextdocumentwriter.cpp | 4 +- src/gui/text/qtextdocumentwriter.h | 4 +- src/gui/text/qtextengine.cpp | 4 +- src/gui/text/qtextengine_mac.cpp | 4 +- src/gui/text/qtextengine_p.h | 4 +- src/gui/text/qtextformat.cpp | 4 +- src/gui/text/qtextformat.h | 4 +- src/gui/text/qtextformat_p.h | 4 +- src/gui/text/qtexthtmlparser.cpp | 4 +- src/gui/text/qtexthtmlparser_p.h | 4 +- src/gui/text/qtextimagehandler.cpp | 4 +- src/gui/text/qtextimagehandler_p.h | 4 +- src/gui/text/qtextlayout.cpp | 4 +- src/gui/text/qtextlayout.h | 4 +- src/gui/text/qtextlist.cpp | 4 +- src/gui/text/qtextlist.h | 4 +- src/gui/text/qtextobject.cpp | 4 +- src/gui/text/qtextobject.h | 4 +- src/gui/text/qtextobject_p.h | 4 +- src/gui/text/qtextodfwriter.cpp | 4 +- src/gui/text/qtextodfwriter_p.h | 4 +- src/gui/text/qtextoption.cpp | 4 +- src/gui/text/qtextoption.h | 4 +- src/gui/text/qtexttable.cpp | 4 +- src/gui/text/qtexttable.h | 4 +- src/gui/text/qtexttable_p.h | 4 +- src/gui/text/qzip.cpp | 4 +- src/gui/text/qzipreader_p.h | 4 +- src/gui/text/qzipwriter_p.h | 4 +- src/gui/util/qcompleter.cpp | 4 +- src/gui/util/qcompleter.h | 4 +- src/gui/util/qcompleter_p.h | 4 +- src/gui/util/qdesktopservices.cpp | 4 +- src/gui/util/qdesktopservices.h | 4 +- src/gui/util/qdesktopservices_mac.cpp | 4 +- src/gui/util/qdesktopservices_qws.cpp | 4 +- src/gui/util/qdesktopservices_win.cpp | 4 +- src/gui/util/qdesktopservices_x11.cpp | 4 +- src/gui/util/qsystemtrayicon.cpp | 4 +- src/gui/util/qsystemtrayicon.h | 4 +- src/gui/util/qsystemtrayicon_mac.mm | 4 +- src/gui/util/qsystemtrayicon_p.h | 4 +- src/gui/util/qsystemtrayicon_qws.cpp | 4 +- src/gui/util/qsystemtrayicon_win.cpp | 4 +- src/gui/util/qsystemtrayicon_x11.cpp | 4 +- src/gui/util/qundogroup.cpp | 4 +- src/gui/util/qundogroup.h | 4 +- src/gui/util/qundostack.cpp | 4 +- src/gui/util/qundostack.h | 4 +- src/gui/util/qundostack_p.h | 4 +- src/gui/util/qundoview.cpp | 4 +- src/gui/util/qundoview.h | 4 +- src/gui/widgets/qabstractbutton.cpp | 4 +- src/gui/widgets/qabstractbutton.h | 4 +- src/gui/widgets/qabstractbutton_p.h | 4 +- src/gui/widgets/qabstractscrollarea.cpp | 4 +- src/gui/widgets/qabstractscrollarea.h | 4 +- src/gui/widgets/qabstractscrollarea_p.h | 4 +- src/gui/widgets/qabstractslider.cpp | 4 +- src/gui/widgets/qabstractslider.h | 4 +- src/gui/widgets/qabstractslider_p.h | 4 +- src/gui/widgets/qabstractspinbox.cpp | 4 +- src/gui/widgets/qabstractspinbox.h | 4 +- src/gui/widgets/qabstractspinbox_p.h | 4 +- src/gui/widgets/qbuttongroup.cpp | 4 +- src/gui/widgets/qbuttongroup.h | 4 +- src/gui/widgets/qcalendartextnavigator_p.h | 4 +- src/gui/widgets/qcalendarwidget.cpp | 4 +- src/gui/widgets/qcalendarwidget.h | 4 +- src/gui/widgets/qcheckbox.cpp | 4 +- src/gui/widgets/qcheckbox.h | 4 +- src/gui/widgets/qcocoamenu_mac.mm | 4 +- src/gui/widgets/qcocoamenu_mac_p.h | 4 +- src/gui/widgets/qcocoatoolbardelegate_mac.mm | 4 +- src/gui/widgets/qcocoatoolbardelegate_mac_p.h | 4 +- src/gui/widgets/qcombobox.cpp | 4 +- src/gui/widgets/qcombobox.h | 4 +- src/gui/widgets/qcombobox_p.h | 4 +- src/gui/widgets/qcommandlinkbutton.cpp | 4 +- src/gui/widgets/qcommandlinkbutton.h | 4 +- src/gui/widgets/qdatetimeedit.cpp | 4 +- src/gui/widgets/qdatetimeedit.h | 4 +- src/gui/widgets/qdatetimeedit_p.h | 4 +- src/gui/widgets/qdial.cpp | 4 +- src/gui/widgets/qdial.h | 4 +- src/gui/widgets/qdialogbuttonbox.cpp | 4 +- src/gui/widgets/qdialogbuttonbox.h | 4 +- src/gui/widgets/qdockarealayout.cpp | 4 +- src/gui/widgets/qdockarealayout_p.h | 4 +- src/gui/widgets/qdockwidget.cpp | 4 +- src/gui/widgets/qdockwidget.h | 4 +- src/gui/widgets/qdockwidget_p.h | 4 +- src/gui/widgets/qeffects.cpp | 4 +- src/gui/widgets/qeffects_p.h | 4 +- src/gui/widgets/qfocusframe.cpp | 4 +- src/gui/widgets/qfocusframe.h | 4 +- src/gui/widgets/qfontcombobox.cpp | 4 +- src/gui/widgets/qfontcombobox.h | 4 +- src/gui/widgets/qframe.cpp | 4 +- src/gui/widgets/qframe.h | 4 +- src/gui/widgets/qframe_p.h | 4 +- src/gui/widgets/qgroupbox.cpp | 4 +- src/gui/widgets/qgroupbox.h | 4 +- src/gui/widgets/qlabel.cpp | 4 +- src/gui/widgets/qlabel.h | 4 +- src/gui/widgets/qlabel_p.h | 4 +- src/gui/widgets/qlcdnumber.cpp | 4 +- src/gui/widgets/qlcdnumber.h | 4 +- src/gui/widgets/qlineedit.cpp | 4 +- src/gui/widgets/qlineedit.h | 4 +- src/gui/widgets/qlineedit_p.h | 4 +- src/gui/widgets/qmaccocoaviewcontainer_mac.h | 4 +- src/gui/widgets/qmaccocoaviewcontainer_mac.mm | 4 +- src/gui/widgets/qmacnativewidget_mac.h | 4 +- src/gui/widgets/qmacnativewidget_mac.mm | 4 +- src/gui/widgets/qmainwindow.cpp | 4 +- src/gui/widgets/qmainwindow.h | 4 +- src/gui/widgets/qmainwindowlayout.cpp | 4 +- src/gui/widgets/qmainwindowlayout_mac.mm | 4 +- src/gui/widgets/qmainwindowlayout_p.h | 4 +- src/gui/widgets/qmdiarea.cpp | 4 +- src/gui/widgets/qmdiarea.h | 4 +- src/gui/widgets/qmdiarea_p.h | 4 +- src/gui/widgets/qmdisubwindow.cpp | 4 +- src/gui/widgets/qmdisubwindow.h | 4 +- src/gui/widgets/qmdisubwindow_p.h | 4 +- src/gui/widgets/qmenu.cpp | 4 +- src/gui/widgets/qmenu.h | 4 +- src/gui/widgets/qmenu_mac.mm | 4 +- src/gui/widgets/qmenu_p.h | 4 +- src/gui/widgets/qmenu_wince.cpp | 4 +- src/gui/widgets/qmenu_wince_resource_p.h | 4 +- src/gui/widgets/qmenubar.cpp | 4 +- src/gui/widgets/qmenubar.h | 4 +- src/gui/widgets/qmenubar_p.h | 4 +- src/gui/widgets/qmenudata.cpp | 4 +- src/gui/widgets/qmenudata.h | 4 +- src/gui/widgets/qplaintextedit.cpp | 4 +- src/gui/widgets/qplaintextedit.h | 4 +- src/gui/widgets/qplaintextedit_p.h | 4 +- src/gui/widgets/qprintpreviewwidget.cpp | 4 +- src/gui/widgets/qprintpreviewwidget.h | 4 +- src/gui/widgets/qprogressbar.cpp | 4 +- src/gui/widgets/qprogressbar.h | 4 +- src/gui/widgets/qpushbutton.cpp | 4 +- src/gui/widgets/qpushbutton.h | 4 +- src/gui/widgets/qpushbutton_p.h | 4 +- src/gui/widgets/qradiobutton.cpp | 4 +- src/gui/widgets/qradiobutton.h | 4 +- src/gui/widgets/qrubberband.cpp | 4 +- src/gui/widgets/qrubberband.h | 4 +- src/gui/widgets/qscrollarea.cpp | 4 +- src/gui/widgets/qscrollarea.h | 4 +- src/gui/widgets/qscrollarea_p.h | 4 +- src/gui/widgets/qscrollbar.cpp | 4 +- src/gui/widgets/qscrollbar.h | 4 +- src/gui/widgets/qsizegrip.cpp | 4 +- src/gui/widgets/qsizegrip.h | 4 +- src/gui/widgets/qslider.cpp | 4 +- src/gui/widgets/qslider.h | 4 +- src/gui/widgets/qspinbox.cpp | 4 +- src/gui/widgets/qspinbox.h | 4 +- src/gui/widgets/qsplashscreen.cpp | 4 +- src/gui/widgets/qsplashscreen.h | 4 +- src/gui/widgets/qsplitter.cpp | 4 +- src/gui/widgets/qsplitter.h | 4 +- src/gui/widgets/qsplitter_p.h | 4 +- src/gui/widgets/qstackedwidget.cpp | 4 +- src/gui/widgets/qstackedwidget.h | 4 +- src/gui/widgets/qstatusbar.cpp | 4 +- src/gui/widgets/qstatusbar.h | 4 +- src/gui/widgets/qtabbar.cpp | 4 +- src/gui/widgets/qtabbar.h | 4 +- src/gui/widgets/qtabbar_p.h | 4 +- src/gui/widgets/qtabwidget.cpp | 4 +- src/gui/widgets/qtabwidget.h | 4 +- src/gui/widgets/qtextbrowser.cpp | 4 +- src/gui/widgets/qtextbrowser.h | 4 +- src/gui/widgets/qtextedit.cpp | 4 +- src/gui/widgets/qtextedit.h | 4 +- src/gui/widgets/qtextedit_p.h | 4 +- src/gui/widgets/qtoolbar.cpp | 4 +- src/gui/widgets/qtoolbar.h | 4 +- src/gui/widgets/qtoolbar_p.h | 4 +- src/gui/widgets/qtoolbararealayout.cpp | 4 +- src/gui/widgets/qtoolbararealayout_p.h | 4 +- src/gui/widgets/qtoolbarextension.cpp | 4 +- src/gui/widgets/qtoolbarextension_p.h | 4 +- src/gui/widgets/qtoolbarlayout.cpp | 4 +- src/gui/widgets/qtoolbarlayout_p.h | 4 +- src/gui/widgets/qtoolbarseparator.cpp | 4 +- src/gui/widgets/qtoolbarseparator_p.h | 4 +- src/gui/widgets/qtoolbox.cpp | 4 +- src/gui/widgets/qtoolbox.h | 4 +- src/gui/widgets/qtoolbutton.cpp | 4 +- src/gui/widgets/qtoolbutton.h | 4 +- src/gui/widgets/qvalidator.cpp | 4 +- src/gui/widgets/qvalidator.h | 4 +- src/gui/widgets/qwidgetanimator.cpp | 4 +- src/gui/widgets/qwidgetanimator_p.h | 4 +- src/gui/widgets/qwidgetresizehandler.cpp | 4 +- src/gui/widgets/qwidgetresizehandler_p.h | 4 +- src/gui/widgets/qworkspace.cpp | 4 +- src/gui/widgets/qworkspace.h | 4 +- src/network/access/qabstractnetworkcache.cpp | 4 +- src/network/access/qabstractnetworkcache.h | 4 +- src/network/access/qabstractnetworkcache_p.h | 4 +- src/network/access/qftp.cpp | 4 +- src/network/access/qftp.h | 4 +- src/network/access/qhttp.cpp | 4 +- src/network/access/qhttp.h | 4 +- src/network/access/qhttpnetworkconnection.cpp | 4 +- src/network/access/qhttpnetworkconnection_p.h | 4 +- src/network/access/qhttpnetworkheader.cpp | 4 +- src/network/access/qhttpnetworkheader_p.h | 4 +- src/network/access/qhttpnetworkreply.cpp | 4 +- src/network/access/qhttpnetworkreply_p.h | 4 +- src/network/access/qhttpnetworkrequest.cpp | 4 +- src/network/access/qhttpnetworkrequest_p.h | 4 +- src/network/access/qnetworkaccessbackend.cpp | 4 +- src/network/access/qnetworkaccessbackend_p.h | 4 +- src/network/access/qnetworkaccesscache.cpp | 4 +- src/network/access/qnetworkaccesscache_p.h | 4 +- src/network/access/qnetworkaccesscachebackend.cpp | 4 +- src/network/access/qnetworkaccesscachebackend_p.h | 4 +- src/network/access/qnetworkaccessdatabackend.cpp | 4 +- src/network/access/qnetworkaccessdatabackend_p.h | 4 +- .../access/qnetworkaccessdebugpipebackend.cpp | 4 +- .../access/qnetworkaccessdebugpipebackend_p.h | 4 +- src/network/access/qnetworkaccessfilebackend.cpp | 4 +- src/network/access/qnetworkaccessfilebackend_p.h | 4 +- src/network/access/qnetworkaccessftpbackend.cpp | 4 +- src/network/access/qnetworkaccessftpbackend_p.h | 4 +- src/network/access/qnetworkaccesshttpbackend.cpp | 4 +- src/network/access/qnetworkaccesshttpbackend_p.h | 4 +- src/network/access/qnetworkaccessmanager.cpp | 4 +- src/network/access/qnetworkaccessmanager.h | 4 +- src/network/access/qnetworkaccessmanager_p.h | 4 +- src/network/access/qnetworkcookie.cpp | 4 +- src/network/access/qnetworkcookie.h | 4 +- src/network/access/qnetworkcookie_p.h | 4 +- src/network/access/qnetworkdiskcache.cpp | 4 +- src/network/access/qnetworkdiskcache.h | 4 +- src/network/access/qnetworkdiskcache_p.h | 4 +- src/network/access/qnetworkreply.cpp | 4 +- src/network/access/qnetworkreply.h | 4 +- src/network/access/qnetworkreply_p.h | 4 +- src/network/access/qnetworkreplyimpl.cpp | 4 +- src/network/access/qnetworkreplyimpl_p.h | 4 +- src/network/access/qnetworkrequest.cpp | 4 +- src/network/access/qnetworkrequest.h | 4 +- src/network/access/qnetworkrequest_p.h | 4 +- src/network/kernel/qauthenticator.cpp | 4 +- src/network/kernel/qauthenticator.h | 4 +- src/network/kernel/qauthenticator_p.h | 4 +- src/network/kernel/qhostaddress.cpp | 4 +- src/network/kernel/qhostaddress.h | 4 +- src/network/kernel/qhostaddress_p.h | 4 +- src/network/kernel/qhostinfo.cpp | 4 +- src/network/kernel/qhostinfo.h | 4 +- src/network/kernel/qhostinfo_p.h | 4 +- src/network/kernel/qhostinfo_unix.cpp | 4 +- src/network/kernel/qhostinfo_win.cpp | 4 +- src/network/kernel/qnetworkinterface.cpp | 4 +- src/network/kernel/qnetworkinterface.h | 4 +- src/network/kernel/qnetworkinterface_p.h | 4 +- src/network/kernel/qnetworkinterface_unix.cpp | 4 +- src/network/kernel/qnetworkinterface_win.cpp | 4 +- src/network/kernel/qnetworkinterface_win_p.h | 4 +- src/network/kernel/qnetworkproxy.cpp | 4 +- src/network/kernel/qnetworkproxy.h | 4 +- src/network/kernel/qnetworkproxy_generic.cpp | 4 +- src/network/kernel/qnetworkproxy_mac.cpp | 4 +- src/network/kernel/qnetworkproxy_win.cpp | 4 +- src/network/kernel/qurlinfo.cpp | 4 +- src/network/kernel/qurlinfo.h | 4 +- src/network/socket/qabstractsocket.cpp | 4 +- src/network/socket/qabstractsocket.h | 4 +- src/network/socket/qabstractsocket_p.h | 4 +- src/network/socket/qabstractsocketengine.cpp | 4 +- src/network/socket/qabstractsocketengine_p.h | 4 +- src/network/socket/qhttpsocketengine.cpp | 4 +- src/network/socket/qhttpsocketengine_p.h | 4 +- src/network/socket/qlocalserver.cpp | 4 +- src/network/socket/qlocalserver.h | 4 +- src/network/socket/qlocalserver_p.h | 4 +- src/network/socket/qlocalserver_tcp.cpp | 4 +- src/network/socket/qlocalserver_unix.cpp | 4 +- src/network/socket/qlocalserver_win.cpp | 4 +- src/network/socket/qlocalsocket.cpp | 4 +- src/network/socket/qlocalsocket.h | 4 +- src/network/socket/qlocalsocket_p.h | 4 +- src/network/socket/qlocalsocket_tcp.cpp | 4 +- src/network/socket/qlocalsocket_unix.cpp | 4 +- src/network/socket/qlocalsocket_win.cpp | 4 +- src/network/socket/qnativesocketengine.cpp | 4 +- src/network/socket/qnativesocketengine_p.h | 4 +- src/network/socket/qnativesocketengine_unix.cpp | 4 +- src/network/socket/qnativesocketengine_win.cpp | 4 +- src/network/socket/qsocks5socketengine.cpp | 4 +- src/network/socket/qsocks5socketengine_p.h | 4 +- src/network/socket/qtcpserver.cpp | 4 +- src/network/socket/qtcpserver.h | 4 +- src/network/socket/qtcpsocket.cpp | 4 +- src/network/socket/qtcpsocket.h | 4 +- src/network/socket/qtcpsocket_p.h | 4 +- src/network/socket/qudpsocket.cpp | 4 +- src/network/socket/qudpsocket.h | 4 +- src/network/ssl/qssl.cpp | 4 +- src/network/ssl/qssl.h | 4 +- src/network/ssl/qsslcertificate.cpp | 4 +- src/network/ssl/qsslcertificate.h | 4 +- src/network/ssl/qsslcertificate_p.h | 4 +- src/network/ssl/qsslcipher.cpp | 4 +- src/network/ssl/qsslcipher.h | 4 +- src/network/ssl/qsslcipher_p.h | 4 +- src/network/ssl/qsslconfiguration.cpp | 4 +- src/network/ssl/qsslconfiguration.h | 4 +- src/network/ssl/qsslconfiguration_p.h | 4 +- src/network/ssl/qsslerror.cpp | 4 +- src/network/ssl/qsslerror.h | 4 +- src/network/ssl/qsslkey.cpp | 4 +- src/network/ssl/qsslkey.h | 4 +- src/network/ssl/qsslkey_p.h | 4 +- src/network/ssl/qsslsocket.cpp | 4 +- src/network/ssl/qsslsocket.h | 4 +- src/network/ssl/qsslsocket_openssl.cpp | 4 +- src/network/ssl/qsslsocket_openssl_p.h | 4 +- src/network/ssl/qsslsocket_openssl_symbols.cpp | 4 +- src/network/ssl/qsslsocket_openssl_symbols_p.h | 4 +- src/network/ssl/qsslsocket_p.h | 4 +- src/opengl/gl2paintengineex/glgc_shader_source.h | 4 +- src/opengl/gl2paintengineex/qgl2pexvertexarray.cpp | 4 +- src/opengl/gl2paintengineex/qgl2pexvertexarray_p.h | 4 +- src/opengl/gl2paintengineex/qglgradientcache.cpp | 4 +- src/opengl/gl2paintengineex/qglgradientcache_p.h | 4 +- .../gl2paintengineex/qglpexshadermanager.cpp | 4 +- .../gl2paintengineex/qglpexshadermanager_p.h | 4 +- src/opengl/gl2paintengineex/qglshader.cpp | 4 +- src/opengl/gl2paintengineex/qglshader_p.h | 4 +- .../gl2paintengineex/qpaintengineex_opengl2.cpp | 4 +- .../gl2paintengineex/qpaintengineex_opengl2_p.h | 4 +- src/opengl/qegl.cpp | 4 +- src/opengl/qegl_p.h | 4 +- src/opengl/qegl_qws.cpp | 4 +- src/opengl/qegl_wince.cpp | 4 +- src/opengl/qegl_x11egl.cpp | 4 +- src/opengl/qgl.cpp | 4 +- src/opengl/qgl.h | 4 +- src/opengl/qgl_cl_p.h | 4 +- src/opengl/qgl_egl.cpp | 4 +- src/opengl/qgl_egl_p.h | 4 +- src/opengl/qgl_mac.mm | 4 +- src/opengl/qgl_p.h | 4 +- src/opengl/qgl_qws.cpp | 4 +- src/opengl/qgl_win.cpp | 4 +- src/opengl/qgl_wince.cpp | 4 +- src/opengl/qgl_x11.cpp | 4 +- src/opengl/qgl_x11egl.cpp | 4 +- src/opengl/qglcolormap.cpp | 4 +- src/opengl/qglcolormap.h | 4 +- src/opengl/qglextensions.cpp | 4 +- src/opengl/qglextensions_p.h | 4 +- src/opengl/qglframebufferobject.cpp | 4 +- src/opengl/qglframebufferobject.h | 4 +- src/opengl/qglpaintdevice_qws.cpp | 4 +- src/opengl/qglpaintdevice_qws_p.h | 4 +- src/opengl/qglpixelbuffer.cpp | 4 +- src/opengl/qglpixelbuffer.h | 4 +- src/opengl/qglpixelbuffer_egl.cpp | 4 +- src/opengl/qglpixelbuffer_mac.mm | 4 +- src/opengl/qglpixelbuffer_p.h | 4 +- src/opengl/qglpixelbuffer_win.cpp | 4 +- src/opengl/qglpixelbuffer_x11.cpp | 4 +- src/opengl/qglpixmapfilter.cpp | 4 +- src/opengl/qglpixmapfilter_p.h | 4 +- src/opengl/qglscreen_qws.cpp | 4 +- src/opengl/qglscreen_qws.h | 4 +- src/opengl/qglwindowsurface_qws.cpp | 4 +- src/opengl/qglwindowsurface_qws_p.h | 4 +- src/opengl/qgraphicssystem_gl.cpp | 4 +- src/opengl/qgraphicssystem_gl_p.h | 4 +- src/opengl/qpaintengine_opengl.cpp | 4 +- src/opengl/qpaintengine_opengl_p.h | 4 +- src/opengl/qpixmapdata_gl.cpp | 4 +- src/opengl/qpixmapdata_gl_p.h | 4 +- src/opengl/qwindowsurface_gl.cpp | 4 +- src/opengl/qwindowsurface_gl_p.h | 4 +- src/opengl/util/fragmentprograms_p.h | 4 +- src/opengl/util/generator.cpp | 4 +- src/plugins/accessible/compat/main.cpp | 4 +- src/plugins/accessible/compat/q3complexwidgets.cpp | 4 +- src/plugins/accessible/compat/q3complexwidgets.h | 4 +- src/plugins/accessible/compat/q3simplewidgets.cpp | 4 +- src/plugins/accessible/compat/q3simplewidgets.h | 4 +- .../accessible/compat/qaccessiblecompat.cpp | 4 +- src/plugins/accessible/compat/qaccessiblecompat.h | 4 +- src/plugins/accessible/widgets/complexwidgets.cpp | 4 +- src/plugins/accessible/widgets/complexwidgets.h | 4 +- src/plugins/accessible/widgets/main.cpp | 4 +- src/plugins/accessible/widgets/qaccessiblemenu.cpp | 4 +- src/plugins/accessible/widgets/qaccessiblemenu.h | 4 +- .../accessible/widgets/qaccessiblewidgets.cpp | 4 +- .../accessible/widgets/qaccessiblewidgets.h | 4 +- src/plugins/accessible/widgets/rangecontrols.cpp | 4 +- src/plugins/accessible/widgets/rangecontrols.h | 4 +- src/plugins/accessible/widgets/simplewidgets.cpp | 4 +- src/plugins/accessible/widgets/simplewidgets.h | 4 +- src/plugins/codecs/cn/main.cpp | 4 +- src/plugins/codecs/cn/qgb18030codec.cpp | 4 +- src/plugins/codecs/cn/qgb18030codec.h | 4 +- src/plugins/codecs/jp/main.cpp | 4 +- src/plugins/codecs/jp/qeucjpcodec.cpp | 4 +- src/plugins/codecs/jp/qeucjpcodec.h | 4 +- src/plugins/codecs/jp/qfontjpcodec.cpp | 4 +- src/plugins/codecs/jp/qfontjpcodec.h | 4 +- src/plugins/codecs/jp/qjiscodec.cpp | 4 +- src/plugins/codecs/jp/qjiscodec.h | 4 +- src/plugins/codecs/jp/qjpunicode.cpp | 4 +- src/plugins/codecs/jp/qjpunicode.h | 4 +- src/plugins/codecs/jp/qsjiscodec.cpp | 4 +- src/plugins/codecs/jp/qsjiscodec.h | 4 +- src/plugins/codecs/kr/cp949codetbl.h | 4 +- src/plugins/codecs/kr/main.cpp | 4 +- src/plugins/codecs/kr/qeuckrcodec.cpp | 4 +- src/plugins/codecs/kr/qeuckrcodec.h | 4 +- src/plugins/codecs/tw/main.cpp | 4 +- src/plugins/codecs/tw/qbig5codec.cpp | 4 +- src/plugins/codecs/tw/qbig5codec.h | 4 +- src/plugins/decorations/default/main.cpp | 4 +- src/plugins/decorations/styled/main.cpp | 4 +- src/plugins/decorations/windows/main.cpp | 4 +- src/plugins/gfxdrivers/ahi/qscreenahi_qws.cpp | 4 +- src/plugins/gfxdrivers/ahi/qscreenahi_qws.h | 4 +- src/plugins/gfxdrivers/ahi/qscreenahiplugin.cpp | 4 +- .../gfxdrivers/directfb/qdirectfbkeyboard.cpp | 4 +- .../gfxdrivers/directfb/qdirectfbkeyboard.h | 4 +- src/plugins/gfxdrivers/directfb/qdirectfbmouse.cpp | 4 +- src/plugins/gfxdrivers/directfb/qdirectfbmouse.h | 4 +- .../gfxdrivers/directfb/qdirectfbpaintdevice.cpp | 4 +- .../gfxdrivers/directfb/qdirectfbpaintdevice.h | 4 +- .../gfxdrivers/directfb/qdirectfbpaintengine.cpp | 4 +- .../gfxdrivers/directfb/qdirectfbpaintengine.h | 4 +- .../gfxdrivers/directfb/qdirectfbpixmap.cpp | 4 +- src/plugins/gfxdrivers/directfb/qdirectfbpixmap.h | 4 +- .../gfxdrivers/directfb/qdirectfbscreen.cpp | 4 +- src/plugins/gfxdrivers/directfb/qdirectfbscreen.h | 4 +- .../gfxdrivers/directfb/qdirectfbscreenplugin.cpp | 4 +- .../gfxdrivers/directfb/qdirectfbwindowsurface.cpp | 4 +- .../gfxdrivers/directfb/qdirectfbwindowsurface.h | 4 +- src/plugins/gfxdrivers/hybrid/hybridplugin.cpp | 4 +- src/plugins/gfxdrivers/hybrid/hybridscreen.cpp | 4 +- src/plugins/gfxdrivers/hybrid/hybridscreen.h | 4 +- src/plugins/gfxdrivers/hybrid/hybridsurface.cpp | 4 +- src/plugins/gfxdrivers/hybrid/hybridsurface.h | 4 +- src/plugins/gfxdrivers/linuxfb/main.cpp | 4 +- .../gfxdrivers/powervr/QWSWSEGL/pvrqwsdrawable.c | 4 +- .../gfxdrivers/powervr/QWSWSEGL/pvrqwsdrawable.h | 4 +- .../gfxdrivers/powervr/QWSWSEGL/pvrqwsdrawable_p.h | 4 +- .../gfxdrivers/powervr/QWSWSEGL/pvrqwswsegl.c | 4 +- .../powervr/pvreglscreen/pvreglscreen.cpp | 4 +- .../gfxdrivers/powervr/pvreglscreen/pvreglscreen.h | 4 +- .../powervr/pvreglscreen/pvreglscreenplugin.cpp | 4 +- .../powervr/pvreglscreen/pvreglwindowsurface.cpp | 4 +- .../powervr/pvreglscreen/pvreglwindowsurface.h | 4 +- src/plugins/gfxdrivers/qvfb/main.cpp | 4 +- src/plugins/gfxdrivers/transformed/main.cpp | 4 +- src/plugins/gfxdrivers/vnc/main.cpp | 4 +- src/plugins/gfxdrivers/vnc/qscreenvnc_p.h | 4 +- src/plugins/gfxdrivers/vnc/qscreenvnc_qws.cpp | 4 +- src/plugins/gfxdrivers/vnc/qscreenvnc_qws.h | 4 +- src/plugins/graphicssystems/opengl/main.cpp | 4 +- src/plugins/iconengines/svgiconengine/main.cpp | 4 +- .../iconengines/svgiconengine/qsvgiconengine.cpp | 4 +- .../iconengines/svgiconengine/qsvgiconengine.h | 4 +- src/plugins/imageformats/gif/main.cpp | 4 +- src/plugins/imageformats/gif/qgifhandler.cpp | 4 +- src/plugins/imageformats/gif/qgifhandler.h | 4 +- src/plugins/imageformats/ico/main.cpp | 4 +- src/plugins/imageformats/ico/qicohandler.cpp | 4 +- src/plugins/imageformats/ico/qicohandler.h | 4 +- src/plugins/imageformats/jpeg/main.cpp | 4 +- src/plugins/imageformats/jpeg/qjpeghandler.cpp | 4 +- src/plugins/imageformats/jpeg/qjpeghandler.h | 4 +- src/plugins/imageformats/mng/main.cpp | 4 +- src/plugins/imageformats/mng/qmnghandler.cpp | 4 +- src/plugins/imageformats/mng/qmnghandler.h | 4 +- src/plugins/imageformats/svg/main.cpp | 4 +- src/plugins/imageformats/svg/qsvgiohandler.cpp | 4 +- src/plugins/imageformats/svg/qsvgiohandler.h | 4 +- src/plugins/imageformats/tiff/main.cpp | 4 +- src/plugins/imageformats/tiff/qtiffhandler.cpp | 4 +- src/plugins/imageformats/tiff/qtiffhandler.h | 4 +- .../inputmethods/imsw-multi/qmultiinputcontext.cpp | 4 +- .../inputmethods/imsw-multi/qmultiinputcontext.h | 4 +- .../imsw-multi/qmultiinputcontextplugin.cpp | 4 +- .../imsw-multi/qmultiinputcontextplugin.h | 4 +- .../kbddrivers/linuxis/linuxiskbddriverplugin.cpp | 4 +- .../kbddrivers/linuxis/linuxiskbddriverplugin.h | 4 +- .../kbddrivers/linuxis/linuxiskbdhandler.cpp | 4 +- src/plugins/kbddrivers/linuxis/linuxiskbdhandler.h | 4 +- src/plugins/kbddrivers/sl5000/main.cpp | 4 +- src/plugins/kbddrivers/usb/main.cpp | 4 +- src/plugins/kbddrivers/vr41xx/main.cpp | 4 +- src/plugins/kbddrivers/yopy/main.cpp | 4 +- src/plugins/mousedrivers/bus/main.cpp | 4 +- .../linuxis/linuxismousedriverplugin.cpp | 4 +- .../linuxis/linuxismousedriverplugin.h | 4 +- .../mousedrivers/linuxis/linuxismousehandler.cpp | 4 +- .../mousedrivers/linuxis/linuxismousehandler.h | 4 +- src/plugins/mousedrivers/linuxtp/main.cpp | 4 +- src/plugins/mousedrivers/pc/main.cpp | 4 +- src/plugins/mousedrivers/tslib/main.cpp | 4 +- src/plugins/mousedrivers/vr41xx/main.cpp | 4 +- src/plugins/mousedrivers/yopy/main.cpp | 4 +- src/plugins/script/qtdbus/main.cpp | 4 +- src/plugins/script/qtdbus/main.h | 4 +- src/plugins/sqldrivers/db2/main.cpp | 4 +- src/plugins/sqldrivers/ibase/main.cpp | 4 +- src/plugins/sqldrivers/mysql/main.cpp | 4 +- src/plugins/sqldrivers/oci/main.cpp | 4 +- src/plugins/sqldrivers/odbc/main.cpp | 4 +- src/plugins/sqldrivers/psql/main.cpp | 4 +- src/plugins/sqldrivers/sqlite/smain.cpp | 4 +- src/plugins/sqldrivers/sqlite2/smain.cpp | 4 +- src/plugins/sqldrivers/tds/main.cpp | 4 +- src/qt3support/canvas/q3canvas.cpp | 4 +- src/qt3support/canvas/q3canvas.h | 4 +- src/qt3support/dialogs/q3filedialog.cpp | 4 +- src/qt3support/dialogs/q3filedialog.h | 4 +- src/qt3support/dialogs/q3filedialog_mac.cpp | 4 +- src/qt3support/dialogs/q3filedialog_win.cpp | 4 +- src/qt3support/dialogs/q3progressdialog.cpp | 4 +- src/qt3support/dialogs/q3progressdialog.h | 4 +- src/qt3support/dialogs/q3tabdialog.cpp | 4 +- src/qt3support/dialogs/q3tabdialog.h | 4 +- src/qt3support/dialogs/q3wizard.cpp | 4 +- src/qt3support/dialogs/q3wizard.h | 4 +- src/qt3support/itemviews/q3iconview.cpp | 4 +- src/qt3support/itemviews/q3iconview.h | 4 +- src/qt3support/itemviews/q3listbox.cpp | 4 +- src/qt3support/itemviews/q3listbox.h | 4 +- src/qt3support/itemviews/q3listview.cpp | 4 +- src/qt3support/itemviews/q3listview.h | 4 +- src/qt3support/itemviews/q3table.cpp | 4 +- src/qt3support/itemviews/q3table.h | 4 +- src/qt3support/network/q3dns.cpp | 4 +- src/qt3support/network/q3dns.h | 4 +- src/qt3support/network/q3ftp.cpp | 4 +- src/qt3support/network/q3ftp.h | 4 +- src/qt3support/network/q3http.cpp | 4 +- src/qt3support/network/q3http.h | 4 +- src/qt3support/network/q3localfs.cpp | 4 +- src/qt3support/network/q3localfs.h | 4 +- src/qt3support/network/q3network.cpp | 4 +- src/qt3support/network/q3network.h | 4 +- src/qt3support/network/q3networkprotocol.cpp | 4 +- src/qt3support/network/q3networkprotocol.h | 4 +- src/qt3support/network/q3serversocket.cpp | 4 +- src/qt3support/network/q3serversocket.h | 4 +- src/qt3support/network/q3socket.cpp | 4 +- src/qt3support/network/q3socket.h | 4 +- src/qt3support/network/q3socketdevice.cpp | 4 +- src/qt3support/network/q3socketdevice.h | 4 +- src/qt3support/network/q3socketdevice_unix.cpp | 4 +- src/qt3support/network/q3socketdevice_win.cpp | 4 +- src/qt3support/network/q3url.cpp | 4 +- src/qt3support/network/q3url.h | 4 +- src/qt3support/network/q3urloperator.cpp | 4 +- src/qt3support/network/q3urloperator.h | 4 +- src/qt3support/other/q3accel.cpp | 4 +- src/qt3support/other/q3accel.h | 4 +- src/qt3support/other/q3boxlayout.cpp | 4 +- src/qt3support/other/q3boxlayout.h | 4 +- src/qt3support/other/q3dragobject.cpp | 4 +- src/qt3support/other/q3dragobject.h | 4 +- src/qt3support/other/q3dropsite.cpp | 4 +- src/qt3support/other/q3dropsite.h | 4 +- src/qt3support/other/q3gridlayout.h | 4 +- src/qt3support/other/q3membuf.cpp | 4 +- src/qt3support/other/q3membuf_p.h | 4 +- src/qt3support/other/q3mimefactory.cpp | 4 +- src/qt3support/other/q3mimefactory.h | 4 +- src/qt3support/other/q3polygonscanner.cpp | 4 +- src/qt3support/other/q3polygonscanner.h | 4 +- src/qt3support/other/q3process.cpp | 4 +- src/qt3support/other/q3process.h | 4 +- src/qt3support/other/q3process_unix.cpp | 4 +- src/qt3support/other/q3process_win.cpp | 4 +- src/qt3support/other/qiconset.h | 4 +- src/qt3support/other/qt_compat_pch.h | 4 +- src/qt3support/painting/q3paintdevicemetrics.cpp | 4 +- src/qt3support/painting/q3paintdevicemetrics.h | 4 +- src/qt3support/painting/q3paintengine_svg.cpp | 4 +- src/qt3support/painting/q3paintengine_svg_p.h | 4 +- src/qt3support/painting/q3painter.cpp | 4 +- src/qt3support/painting/q3painter.h | 4 +- src/qt3support/painting/q3picture.cpp | 4 +- src/qt3support/painting/q3picture.h | 4 +- src/qt3support/painting/q3pointarray.cpp | 4 +- src/qt3support/painting/q3pointarray.h | 4 +- src/qt3support/sql/q3databrowser.cpp | 4 +- src/qt3support/sql/q3databrowser.h | 4 +- src/qt3support/sql/q3datatable.cpp | 4 +- src/qt3support/sql/q3datatable.h | 4 +- src/qt3support/sql/q3dataview.cpp | 4 +- src/qt3support/sql/q3dataview.h | 4 +- src/qt3support/sql/q3editorfactory.cpp | 4 +- src/qt3support/sql/q3editorfactory.h | 4 +- src/qt3support/sql/q3sqlcursor.cpp | 4 +- src/qt3support/sql/q3sqlcursor.h | 4 +- src/qt3support/sql/q3sqleditorfactory.cpp | 4 +- src/qt3support/sql/q3sqleditorfactory.h | 4 +- src/qt3support/sql/q3sqlfieldinfo.h | 4 +- src/qt3support/sql/q3sqlform.cpp | 4 +- src/qt3support/sql/q3sqlform.h | 4 +- src/qt3support/sql/q3sqlmanager_p.cpp | 4 +- src/qt3support/sql/q3sqlmanager_p.h | 4 +- src/qt3support/sql/q3sqlpropertymap.cpp | 4 +- src/qt3support/sql/q3sqlpropertymap.h | 4 +- src/qt3support/sql/q3sqlrecordinfo.h | 4 +- src/qt3support/sql/q3sqlselectcursor.cpp | 4 +- src/qt3support/sql/q3sqlselectcursor.h | 4 +- src/qt3support/text/q3multilineedit.cpp | 4 +- src/qt3support/text/q3multilineedit.h | 4 +- src/qt3support/text/q3richtext.cpp | 4 +- src/qt3support/text/q3richtext_p.cpp | 4 +- src/qt3support/text/q3richtext_p.h | 4 +- src/qt3support/text/q3simplerichtext.cpp | 4 +- src/qt3support/text/q3simplerichtext.h | 4 +- src/qt3support/text/q3stylesheet.cpp | 4 +- src/qt3support/text/q3stylesheet.h | 4 +- src/qt3support/text/q3syntaxhighlighter.cpp | 4 +- src/qt3support/text/q3syntaxhighlighter.h | 4 +- src/qt3support/text/q3syntaxhighlighter_p.h | 4 +- src/qt3support/text/q3textbrowser.cpp | 4 +- src/qt3support/text/q3textbrowser.h | 4 +- src/qt3support/text/q3textedit.cpp | 4 +- src/qt3support/text/q3textedit.h | 4 +- src/qt3support/text/q3textstream.cpp | 4 +- src/qt3support/text/q3textstream.h | 4 +- src/qt3support/text/q3textview.cpp | 4 +- src/qt3support/text/q3textview.h | 4 +- src/qt3support/tools/q3asciicache.h | 4 +- src/qt3support/tools/q3asciidict.h | 4 +- src/qt3support/tools/q3cache.h | 4 +- src/qt3support/tools/q3cleanuphandler.h | 4 +- src/qt3support/tools/q3cstring.cpp | 4 +- src/qt3support/tools/q3cstring.h | 4 +- src/qt3support/tools/q3deepcopy.cpp | 4 +- src/qt3support/tools/q3deepcopy.h | 4 +- src/qt3support/tools/q3dict.h | 4 +- src/qt3support/tools/q3garray.cpp | 4 +- src/qt3support/tools/q3garray.h | 4 +- src/qt3support/tools/q3gcache.cpp | 4 +- src/qt3support/tools/q3gcache.h | 4 +- src/qt3support/tools/q3gdict.cpp | 4 +- src/qt3support/tools/q3gdict.h | 4 +- src/qt3support/tools/q3glist.cpp | 4 +- src/qt3support/tools/q3glist.h | 4 +- src/qt3support/tools/q3gvector.cpp | 4 +- src/qt3support/tools/q3gvector.h | 4 +- src/qt3support/tools/q3intcache.h | 4 +- src/qt3support/tools/q3intdict.h | 4 +- src/qt3support/tools/q3memarray.h | 4 +- src/qt3support/tools/q3objectdict.h | 4 +- src/qt3support/tools/q3ptrcollection.cpp | 4 +- src/qt3support/tools/q3ptrcollection.h | 4 +- src/qt3support/tools/q3ptrdict.h | 4 +- src/qt3support/tools/q3ptrlist.h | 4 +- src/qt3support/tools/q3ptrqueue.h | 4 +- src/qt3support/tools/q3ptrstack.h | 4 +- src/qt3support/tools/q3ptrvector.h | 4 +- src/qt3support/tools/q3semaphore.cpp | 4 +- src/qt3support/tools/q3semaphore.h | 4 +- src/qt3support/tools/q3shared.cpp | 4 +- src/qt3support/tools/q3shared.h | 4 +- src/qt3support/tools/q3signal.cpp | 4 +- src/qt3support/tools/q3signal.h | 4 +- src/qt3support/tools/q3sortedlist.h | 4 +- src/qt3support/tools/q3strlist.h | 4 +- src/qt3support/tools/q3strvec.h | 4 +- src/qt3support/tools/q3tl.h | 4 +- src/qt3support/tools/q3valuelist.h | 4 +- src/qt3support/tools/q3valuestack.h | 4 +- src/qt3support/tools/q3valuevector.h | 4 +- src/qt3support/widgets/q3action.cpp | 4 +- src/qt3support/widgets/q3action.h | 4 +- src/qt3support/widgets/q3button.cpp | 4 +- src/qt3support/widgets/q3button.h | 4 +- src/qt3support/widgets/q3buttongroup.cpp | 4 +- src/qt3support/widgets/q3buttongroup.h | 4 +- src/qt3support/widgets/q3combobox.cpp | 4 +- src/qt3support/widgets/q3combobox.h | 4 +- src/qt3support/widgets/q3datetimeedit.cpp | 4 +- src/qt3support/widgets/q3datetimeedit.h | 4 +- src/qt3support/widgets/q3dockarea.cpp | 4 +- src/qt3support/widgets/q3dockarea.h | 4 +- src/qt3support/widgets/q3dockwindow.cpp | 4 +- src/qt3support/widgets/q3dockwindow.h | 4 +- src/qt3support/widgets/q3frame.cpp | 4 +- src/qt3support/widgets/q3frame.h | 4 +- src/qt3support/widgets/q3grid.cpp | 4 +- src/qt3support/widgets/q3grid.h | 4 +- src/qt3support/widgets/q3gridview.cpp | 4 +- src/qt3support/widgets/q3gridview.h | 4 +- src/qt3support/widgets/q3groupbox.cpp | 4 +- src/qt3support/widgets/q3groupbox.h | 4 +- src/qt3support/widgets/q3hbox.cpp | 4 +- src/qt3support/widgets/q3hbox.h | 4 +- src/qt3support/widgets/q3header.cpp | 4 +- src/qt3support/widgets/q3header.h | 4 +- src/qt3support/widgets/q3hgroupbox.cpp | 4 +- src/qt3support/widgets/q3hgroupbox.h | 4 +- src/qt3support/widgets/q3mainwindow.cpp | 4 +- src/qt3support/widgets/q3mainwindow.h | 4 +- src/qt3support/widgets/q3mainwindow_p.h | 4 +- src/qt3support/widgets/q3popupmenu.cpp | 4 +- src/qt3support/widgets/q3popupmenu.h | 4 +- src/qt3support/widgets/q3progressbar.cpp | 4 +- src/qt3support/widgets/q3progressbar.h | 4 +- src/qt3support/widgets/q3rangecontrol.cpp | 4 +- src/qt3support/widgets/q3rangecontrol.h | 4 +- src/qt3support/widgets/q3scrollview.cpp | 4 +- src/qt3support/widgets/q3scrollview.h | 4 +- src/qt3support/widgets/q3spinwidget.cpp | 4 +- src/qt3support/widgets/q3titlebar.cpp | 4 +- src/qt3support/widgets/q3titlebar_p.h | 4 +- src/qt3support/widgets/q3toolbar.cpp | 4 +- src/qt3support/widgets/q3toolbar.h | 4 +- src/qt3support/widgets/q3vbox.cpp | 4 +- src/qt3support/widgets/q3vbox.h | 4 +- src/qt3support/widgets/q3vgroupbox.cpp | 4 +- src/qt3support/widgets/q3vgroupbox.h | 4 +- src/qt3support/widgets/q3whatsthis.cpp | 4 +- src/qt3support/widgets/q3whatsthis.h | 4 +- src/qt3support/widgets/q3widgetstack.cpp | 4 +- src/qt3support/widgets/q3widgetstack.h | 4 +- src/script/qscript.g | 12 +++--- src/script/qscriptable.cpp | 4 +- src/script/qscriptable.h | 4 +- src/script/qscriptable_p.h | 4 +- src/script/qscriptarray_p.h | 4 +- src/script/qscriptasm.cpp | 4 +- src/script/qscriptasm_p.h | 4 +- src/script/qscriptast.cpp | 4 +- src/script/qscriptast_p.h | 4 +- src/script/qscriptastfwd_p.h | 4 +- src/script/qscriptastvisitor.cpp | 4 +- src/script/qscriptastvisitor_p.h | 4 +- src/script/qscriptbuffer_p.h | 4 +- src/script/qscriptclass.cpp | 4 +- src/script/qscriptclass.h | 4 +- src/script/qscriptclass_p.h | 4 +- src/script/qscriptclassdata.cpp | 4 +- src/script/qscriptclassdata_p.h | 4 +- src/script/qscriptclassinfo_p.h | 4 +- src/script/qscriptclasspropertyiterator.cpp | 4 +- src/script/qscriptclasspropertyiterator.h | 4 +- src/script/qscriptclasspropertyiterator_p.h | 4 +- src/script/qscriptcompiler.cpp | 4 +- src/script/qscriptcompiler_p.h | 4 +- src/script/qscriptcontext.cpp | 4 +- src/script/qscriptcontext.h | 4 +- src/script/qscriptcontext_p.cpp | 4 +- src/script/qscriptcontext_p.h | 4 +- src/script/qscriptcontextfwd_p.h | 4 +- src/script/qscriptcontextinfo.cpp | 4 +- src/script/qscriptcontextinfo.h | 4 +- src/script/qscriptcontextinfo_p.h | 4 +- src/script/qscriptecmaarray.cpp | 4 +- src/script/qscriptecmaarray_p.h | 4 +- src/script/qscriptecmaboolean.cpp | 4 +- src/script/qscriptecmaboolean_p.h | 4 +- src/script/qscriptecmacore.cpp | 4 +- src/script/qscriptecmacore_p.h | 4 +- src/script/qscriptecmadate.cpp | 4 +- src/script/qscriptecmadate_p.h | 4 +- src/script/qscriptecmaerror.cpp | 4 +- src/script/qscriptecmaerror_p.h | 4 +- src/script/qscriptecmafunction.cpp | 4 +- src/script/qscriptecmafunction_p.h | 4 +- src/script/qscriptecmaglobal.cpp | 4 +- src/script/qscriptecmaglobal_p.h | 4 +- src/script/qscriptecmamath.cpp | 4 +- src/script/qscriptecmamath_p.h | 4 +- src/script/qscriptecmanumber.cpp | 4 +- src/script/qscriptecmanumber_p.h | 4 +- src/script/qscriptecmaobject.cpp | 4 +- src/script/qscriptecmaobject_p.h | 4 +- src/script/qscriptecmaregexp.cpp | 4 +- src/script/qscriptecmaregexp_p.h | 4 +- src/script/qscriptecmastring.cpp | 4 +- src/script/qscriptecmastring_p.h | 4 +- src/script/qscriptengine.cpp | 4 +- src/script/qscriptengine.h | 4 +- src/script/qscriptengine_p.cpp | 4 +- src/script/qscriptengine_p.h | 4 +- src/script/qscriptengineagent.cpp | 4 +- src/script/qscriptengineagent.h | 4 +- src/script/qscriptengineagent_p.h | 4 +- src/script/qscriptenginefwd_p.h | 4 +- src/script/qscriptextensioninterface.h | 4 +- src/script/qscriptextensionplugin.cpp | 4 +- src/script/qscriptextensionplugin.h | 4 +- src/script/qscriptextenumeration.cpp | 4 +- src/script/qscriptextenumeration_p.h | 4 +- src/script/qscriptextqobject.cpp | 4 +- src/script/qscriptextqobject_p.h | 4 +- src/script/qscriptextvariant.cpp | 4 +- src/script/qscriptextvariant_p.h | 4 +- src/script/qscriptfunction.cpp | 4 +- src/script/qscriptfunction_p.h | 4 +- src/script/qscriptgc_p.h | 4 +- src/script/qscriptglobals_p.h | 4 +- src/script/qscriptgrammar.cpp | 4 +- src/script/qscriptgrammar_p.h | 4 +- src/script/qscriptlexer.cpp | 4 +- src/script/qscriptlexer_p.h | 4 +- src/script/qscriptmember_p.h | 4 +- src/script/qscriptmemberfwd_p.h | 4 +- src/script/qscriptmemorypool_p.h | 4 +- src/script/qscriptnameid_p.h | 4 +- src/script/qscriptnodepool_p.h | 4 +- src/script/qscriptobject_p.h | 4 +- src/script/qscriptobjectdata_p.h | 4 +- src/script/qscriptobjectfwd_p.h | 4 +- src/script/qscriptparser.cpp | 4 +- src/script/qscriptparser_p.h | 4 +- src/script/qscriptprettypretty.cpp | 4 +- src/script/qscriptprettypretty_p.h | 4 +- src/script/qscriptrepository_p.h | 4 +- src/script/qscriptstring.cpp | 4 +- src/script/qscriptstring.h | 4 +- src/script/qscriptstring_p.h | 4 +- src/script/qscriptsyntaxchecker.cpp | 4 +- src/script/qscriptsyntaxchecker_p.h | 4 +- src/script/qscriptsyntaxcheckresult_p.h | 4 +- src/script/qscriptvalue.cpp | 4 +- src/script/qscriptvalue.h | 4 +- src/script/qscriptvalue_p.h | 4 +- src/script/qscriptvaluefwd_p.h | 4 +- src/script/qscriptvalueimpl.cpp | 4 +- src/script/qscriptvalueimpl_p.h | 4 +- src/script/qscriptvalueimplfwd_p.h | 4 +- src/script/qscriptvalueiterator.cpp | 4 +- src/script/qscriptvalueiterator.h | 4 +- src/script/qscriptvalueiterator_p.h | 4 +- src/script/qscriptvalueiteratorimpl.cpp | 4 +- src/script/qscriptvalueiteratorimpl_p.h | 4 +- src/script/qscriptxmlgenerator.cpp | 4 +- src/script/qscriptxmlgenerator_p.h | 4 +- .../debugging/qscriptbreakpointdata.cpp | 4 +- .../debugging/qscriptbreakpointdata_p.h | 4 +- .../debugging/qscriptbreakpointsmodel.cpp | 4 +- .../debugging/qscriptbreakpointsmodel_p.h | 4 +- .../debugging/qscriptbreakpointswidget.cpp | 4 +- .../debugging/qscriptbreakpointswidget_p.h | 4 +- .../qscriptbreakpointswidgetinterface.cpp | 4 +- .../qscriptbreakpointswidgetinterface_p.h | 4 +- .../qscriptbreakpointswidgetinterface_p_p.h | 4 +- .../qscriptcompletionproviderinterface_p.h | 4 +- .../debugging/qscriptcompletiontask.cpp | 4 +- .../debugging/qscriptcompletiontask_p.h | 4 +- .../debugging/qscriptcompletiontaskinterface.cpp | 4 +- .../debugging/qscriptcompletiontaskinterface_p.h | 4 +- .../debugging/qscriptcompletiontaskinterface_p_p.h | 4 +- src/scripttools/debugging/qscriptdebugger.cpp | 4 +- src/scripttools/debugging/qscriptdebugger_p.h | 4 +- src/scripttools/debugging/qscriptdebuggeragent.cpp | 4 +- src/scripttools/debugging/qscriptdebuggeragent_p.h | 4 +- .../debugging/qscriptdebuggeragent_p_p.h | 4 +- .../debugging/qscriptdebuggerbackend.cpp | 4 +- .../debugging/qscriptdebuggerbackend_p.h | 4 +- .../debugging/qscriptdebuggerbackend_p_p.h | 4 +- .../debugging/qscriptdebuggercodefinderwidget.cpp | 4 +- .../debugging/qscriptdebuggercodefinderwidget_p.h | 4 +- .../qscriptdebuggercodefinderwidgetinterface.cpp | 4 +- .../qscriptdebuggercodefinderwidgetinterface_p.h | 4 +- .../qscriptdebuggercodefinderwidgetinterface_p_p.h | 4 +- .../debugging/qscriptdebuggercodeview.cpp | 4 +- .../debugging/qscriptdebuggercodeview_p.h | 4 +- .../debugging/qscriptdebuggercodeviewinterface.cpp | 4 +- .../debugging/qscriptdebuggercodeviewinterface_p.h | 4 +- .../qscriptdebuggercodeviewinterface_p_p.h | 4 +- .../debugging/qscriptdebuggercodewidget.cpp | 4 +- .../debugging/qscriptdebuggercodewidget_p.h | 4 +- .../qscriptdebuggercodewidgetinterface.cpp | 4 +- .../qscriptdebuggercodewidgetinterface_p.h | 4 +- .../qscriptdebuggercodewidgetinterface_p_p.h | 4 +- .../debugging/qscriptdebuggercommand.cpp | 4 +- .../debugging/qscriptdebuggercommand_p.h | 4 +- .../debugging/qscriptdebuggercommandexecutor.cpp | 4 +- .../debugging/qscriptdebuggercommandexecutor_p.h | 4 +- .../qscriptdebuggercommandschedulerfrontend.cpp | 4 +- .../qscriptdebuggercommandschedulerfrontend_p.h | 4 +- .../qscriptdebuggercommandschedulerinterface_p.h | 4 +- .../qscriptdebuggercommandschedulerjob.cpp | 4 +- .../qscriptdebuggercommandschedulerjob_p.h | 4 +- .../qscriptdebuggercommandschedulerjob_p_p.h | 4 +- .../debugging/qscriptdebuggerconsole.cpp | 4 +- .../debugging/qscriptdebuggerconsole_p.h | 4 +- .../debugging/qscriptdebuggerconsolecommand.cpp | 4 +- .../debugging/qscriptdebuggerconsolecommand_p.h | 4 +- .../debugging/qscriptdebuggerconsolecommand_p_p.h | 4 +- .../qscriptdebuggerconsolecommandgroupdata.cpp | 4 +- .../qscriptdebuggerconsolecommandgroupdata_p.h | 4 +- .../debugging/qscriptdebuggerconsolecommandjob.cpp | 4 +- .../debugging/qscriptdebuggerconsolecommandjob_p.h | 4 +- .../qscriptdebuggerconsolecommandjob_p_p.h | 4 +- .../qscriptdebuggerconsolecommandmanager.cpp | 4 +- .../qscriptdebuggerconsolecommandmanager_p.h | 4 +- .../qscriptdebuggerconsoleglobalobject.cpp | 4 +- .../qscriptdebuggerconsoleglobalobject_p.h | 4 +- .../qscriptdebuggerconsolehistorianinterface_p.h | 4 +- .../debugging/qscriptdebuggerconsolewidget.cpp | 4 +- .../debugging/qscriptdebuggerconsolewidget_p.h | 4 +- .../qscriptdebuggerconsolewidgetinterface.cpp | 4 +- .../qscriptdebuggerconsolewidgetinterface_p.h | 4 +- .../qscriptdebuggerconsolewidgetinterface_p_p.h | 4 +- src/scripttools/debugging/qscriptdebuggerevent.cpp | 4 +- src/scripttools/debugging/qscriptdebuggerevent_p.h | 4 +- .../qscriptdebuggereventhandlerinterface_p.h | 4 +- .../debugging/qscriptdebuggerfrontend.cpp | 4 +- .../debugging/qscriptdebuggerfrontend_p.h | 4 +- .../debugging/qscriptdebuggerfrontend_p_p.h | 4 +- src/scripttools/debugging/qscriptdebuggerjob.cpp | 4 +- src/scripttools/debugging/qscriptdebuggerjob_p.h | 4 +- src/scripttools/debugging/qscriptdebuggerjob_p_p.h | 4 +- .../qscriptdebuggerjobschedulerinterface_p.h | 4 +- .../debugging/qscriptdebuggerlocalsmodel.cpp | 4 +- .../debugging/qscriptdebuggerlocalsmodel_p.h | 4 +- .../debugging/qscriptdebuggerlocalswidget.cpp | 4 +- .../debugging/qscriptdebuggerlocalswidget_p.h | 4 +- .../qscriptdebuggerlocalswidgetinterface.cpp | 4 +- .../qscriptdebuggerlocalswidgetinterface_p.h | 4 +- .../qscriptdebuggerlocalswidgetinterface_p_p.h | 4 +- .../qscriptdebuggerobjectsnapshotdelta_p.h | 4 +- .../debugging/qscriptdebuggerresponse.cpp | 4 +- .../debugging/qscriptdebuggerresponse_p.h | 4 +- .../qscriptdebuggerresponsehandlerinterface_p.h | 4 +- .../qscriptdebuggerscriptedconsolecommand.cpp | 4 +- .../qscriptdebuggerscriptedconsolecommand_p.h | 4 +- .../debugging/qscriptdebuggerscriptsmodel.cpp | 4 +- .../debugging/qscriptdebuggerscriptsmodel_p.h | 4 +- .../debugging/qscriptdebuggerscriptswidget.cpp | 4 +- .../debugging/qscriptdebuggerscriptswidget_p.h | 4 +- .../qscriptdebuggerscriptswidgetinterface.cpp | 4 +- .../qscriptdebuggerscriptswidgetinterface_p.h | 4 +- .../qscriptdebuggerscriptswidgetinterface_p_p.h | 4 +- .../debugging/qscriptdebuggerstackmodel.cpp | 4 +- .../debugging/qscriptdebuggerstackmodel_p.h | 4 +- .../debugging/qscriptdebuggerstackwidget.cpp | 4 +- .../debugging/qscriptdebuggerstackwidget_p.h | 4 +- .../qscriptdebuggerstackwidgetinterface.cpp | 4 +- .../qscriptdebuggerstackwidgetinterface_p.h | 4 +- .../qscriptdebuggerstackwidgetinterface_p_p.h | 4 +- src/scripttools/debugging/qscriptdebuggervalue.cpp | 4 +- src/scripttools/debugging/qscriptdebuggervalue_p.h | 4 +- .../debugging/qscriptdebuggervalueproperty.cpp | 4 +- .../debugging/qscriptdebuggervalueproperty_p.h | 4 +- .../qscriptdebuggerwidgetfactoryinterface_p.h | 4 +- .../debugging/qscriptdebugoutputwidget.cpp | 4 +- .../debugging/qscriptdebugoutputwidget_p.h | 4 +- .../qscriptdebugoutputwidgetinterface.cpp | 4 +- .../qscriptdebugoutputwidgetinterface_p.h | 4 +- .../qscriptdebugoutputwidgetinterface_p_p.h | 4 +- src/scripttools/debugging/qscriptedit.cpp | 4 +- src/scripttools/debugging/qscriptedit_p.h | 4 +- .../debugging/qscriptenginedebugger.cpp | 4 +- src/scripttools/debugging/qscriptenginedebugger.h | 4 +- .../debugging/qscriptenginedebuggerfrontend.cpp | 4 +- .../debugging/qscriptenginedebuggerfrontend_p.h | 4 +- .../debugging/qscripterrorlogwidget.cpp | 4 +- .../debugging/qscripterrorlogwidget_p.h | 4 +- .../debugging/qscripterrorlogwidgetinterface.cpp | 4 +- .../debugging/qscripterrorlogwidgetinterface_p.h | 4 +- .../debugging/qscripterrorlogwidgetinterface_p_p.h | 4 +- .../debugging/qscriptmessagehandlerinterface_p.h | 4 +- .../debugging/qscriptobjectsnapshot.cpp | 4 +- .../debugging/qscriptobjectsnapshot_p.h | 4 +- src/scripttools/debugging/qscriptscriptdata.cpp | 4 +- src/scripttools/debugging/qscriptscriptdata_p.h | 4 +- .../debugging/qscriptstdmessagehandler.cpp | 4 +- .../debugging/qscriptstdmessagehandler_p.h | 4 +- .../debugging/qscriptsyntaxhighlighter.cpp | 4 +- .../debugging/qscriptsyntaxhighlighter_p.h | 4 +- .../debugging/qscripttooltipproviderinterface_p.h | 4 +- src/scripttools/debugging/qscriptvalueproperty.cpp | 4 +- src/scripttools/debugging/qscriptvalueproperty_p.h | 4 +- src/scripttools/debugging/qscriptxmlparser.cpp | 4 +- src/scripttools/debugging/qscriptxmlparser_p.h | 4 +- src/sql/drivers/db2/qsql_db2.cpp | 4 +- src/sql/drivers/db2/qsql_db2.h | 4 +- src/sql/drivers/ibase/qsql_ibase.cpp | 4 +- src/sql/drivers/ibase/qsql_ibase.h | 4 +- src/sql/drivers/mysql/qsql_mysql.cpp | 4 +- src/sql/drivers/mysql/qsql_mysql.h | 4 +- src/sql/drivers/oci/qsql_oci.cpp | 4 +- src/sql/drivers/oci/qsql_oci.h | 4 +- src/sql/drivers/odbc/qsql_odbc.cpp | 4 +- src/sql/drivers/odbc/qsql_odbc.h | 4 +- src/sql/drivers/psql/qsql_psql.cpp | 4 +- src/sql/drivers/psql/qsql_psql.h | 4 +- src/sql/drivers/sqlite/qsql_sqlite.cpp | 4 +- src/sql/drivers/sqlite/qsql_sqlite.h | 4 +- src/sql/drivers/sqlite2/qsql_sqlite2.cpp | 4 +- src/sql/drivers/sqlite2/qsql_sqlite2.h | 4 +- src/sql/drivers/tds/qsql_tds.cpp | 4 +- src/sql/drivers/tds/qsql_tds.h | 4 +- src/sql/kernel/qsql.h | 4 +- src/sql/kernel/qsqlcachedresult.cpp | 4 +- src/sql/kernel/qsqlcachedresult_p.h | 4 +- src/sql/kernel/qsqldatabase.cpp | 4 +- src/sql/kernel/qsqldatabase.h | 4 +- src/sql/kernel/qsqldriver.cpp | 4 +- src/sql/kernel/qsqldriver.h | 4 +- src/sql/kernel/qsqldriverplugin.cpp | 4 +- src/sql/kernel/qsqldriverplugin.h | 4 +- src/sql/kernel/qsqlerror.cpp | 4 +- src/sql/kernel/qsqlerror.h | 4 +- src/sql/kernel/qsqlfield.cpp | 4 +- src/sql/kernel/qsqlfield.h | 4 +- src/sql/kernel/qsqlindex.cpp | 4 +- src/sql/kernel/qsqlindex.h | 4 +- src/sql/kernel/qsqlnulldriver_p.h | 4 +- src/sql/kernel/qsqlquery.cpp | 4 +- src/sql/kernel/qsqlquery.h | 4 +- src/sql/kernel/qsqlrecord.cpp | 4 +- src/sql/kernel/qsqlrecord.h | 4 +- src/sql/kernel/qsqlresult.cpp | 4 +- src/sql/kernel/qsqlresult.h | 4 +- src/sql/models/qsqlquerymodel.cpp | 4 +- src/sql/models/qsqlquerymodel.h | 4 +- src/sql/models/qsqlquerymodel_p.h | 4 +- src/sql/models/qsqlrelationaldelegate.cpp | 4 +- src/sql/models/qsqlrelationaldelegate.h | 4 +- src/sql/models/qsqlrelationaltablemodel.cpp | 4 +- src/sql/models/qsqlrelationaltablemodel.h | 4 +- src/sql/models/qsqltablemodel.cpp | 4 +- src/sql/models/qsqltablemodel.h | 4 +- src/sql/models/qsqltablemodel_p.h | 4 +- src/svg/qgraphicssvgitem.cpp | 4 +- src/svg/qgraphicssvgitem.h | 4 +- src/svg/qsvgfont.cpp | 4 +- src/svg/qsvgfont_p.h | 4 +- src/svg/qsvggenerator.cpp | 4 +- src/svg/qsvggenerator.h | 4 +- src/svg/qsvggraphics.cpp | 4 +- src/svg/qsvggraphics_p.h | 4 +- src/svg/qsvghandler.cpp | 4 +- src/svg/qsvghandler_p.h | 4 +- src/svg/qsvgnode.cpp | 4 +- src/svg/qsvgnode_p.h | 4 +- src/svg/qsvgrenderer.cpp | 4 +- src/svg/qsvgrenderer.h | 4 +- src/svg/qsvgstructure.cpp | 4 +- src/svg/qsvgstructure_p.h | 4 +- src/svg/qsvgstyle.cpp | 4 +- src/svg/qsvgstyle_p.h | 4 +- src/svg/qsvgtinydocument.cpp | 4 +- src/svg/qsvgtinydocument_p.h | 4 +- src/svg/qsvgwidget.cpp | 4 +- src/svg/qsvgwidget.h | 4 +- src/testlib/qabstracttestlogger.cpp | 4 +- src/testlib/qabstracttestlogger_p.h | 4 +- src/testlib/qasciikey.cpp | 4 +- src/testlib/qbenchmark.cpp | 4 +- src/testlib/qbenchmark.h | 4 +- src/testlib/qbenchmark_p.h | 4 +- src/testlib/qbenchmarkevent.cpp | 4 +- src/testlib/qbenchmarkevent_p.h | 4 +- src/testlib/qbenchmarkmeasurement.cpp | 4 +- src/testlib/qbenchmarkmeasurement_p.h | 4 +- src/testlib/qbenchmarkvalgrind.cpp | 4 +- src/testlib/qbenchmarkvalgrind_p.h | 4 +- src/testlib/qplaintestlogger.cpp | 4 +- src/testlib/qplaintestlogger_p.h | 4 +- src/testlib/qsignaldumper.cpp | 4 +- src/testlib/qsignaldumper_p.h | 4 +- src/testlib/qsignalspy.h | 4 +- src/testlib/qtest.h | 4 +- src/testlib/qtest_global.h | 4 +- src/testlib/qtest_gui.h | 4 +- src/testlib/qtestaccessible.h | 4 +- src/testlib/qtestassert.h | 4 +- src/testlib/qtestcase.cpp | 4 +- src/testlib/qtestcase.h | 4 +- src/testlib/qtestdata.cpp | 4 +- src/testlib/qtestdata.h | 4 +- src/testlib/qtestevent.h | 4 +- src/testlib/qtesteventloop.h | 4 +- src/testlib/qtestkeyboard.h | 4 +- src/testlib/qtestlog.cpp | 4 +- src/testlib/qtestlog_p.h | 4 +- src/testlib/qtestmouse.h | 4 +- src/testlib/qtestresult.cpp | 4 +- src/testlib/qtestresult_p.h | 4 +- src/testlib/qtestspontaneevent.h | 4 +- src/testlib/qtestsystem.h | 4 +- src/testlib/qtesttable.cpp | 4 +- src/testlib/qtesttable_p.h | 4 +- src/testlib/qxmltestlogger.cpp | 4 +- src/testlib/qxmltestlogger_p.h | 4 +- src/tools/idc/main.cpp | 4 +- src/tools/moc/generator.cpp | 4 +- src/tools/moc/generator.h | 4 +- src/tools/moc/keywords.cpp | 4 +- src/tools/moc/main.cpp | 4 +- src/tools/moc/moc.cpp | 4 +- src/tools/moc/moc.h | 4 +- src/tools/moc/mwerks_mac.cpp | 4 +- src/tools/moc/mwerks_mac.h | 4 +- src/tools/moc/outputrevision.h | 4 +- src/tools/moc/parser.cpp | 4 +- src/tools/moc/parser.h | 4 +- src/tools/moc/ppkeywords.cpp | 4 +- src/tools/moc/preprocessor.cpp | 4 +- src/tools/moc/preprocessor.h | 4 +- src/tools/moc/symbols.h | 4 +- src/tools/moc/token.cpp | 4 +- src/tools/moc/token.h | 4 +- src/tools/moc/util/generate_keywords.cpp | 4 +- src/tools/moc/util/licenseheader.txt | 4 +- src/tools/moc/utils.h | 4 +- src/tools/rcc/main.cpp | 4 +- src/tools/rcc/rcc.cpp | 4 +- src/tools/rcc/rcc.h | 4 +- src/tools/uic/cpp/cppextractimages.cpp | 4 +- src/tools/uic/cpp/cppextractimages.h | 4 +- src/tools/uic/cpp/cppwritedeclaration.cpp | 4 +- src/tools/uic/cpp/cppwritedeclaration.h | 4 +- src/tools/uic/cpp/cppwriteicondata.cpp | 4 +- src/tools/uic/cpp/cppwriteicondata.h | 4 +- src/tools/uic/cpp/cppwriteicondeclaration.cpp | 4 +- src/tools/uic/cpp/cppwriteicondeclaration.h | 4 +- src/tools/uic/cpp/cppwriteiconinitialization.cpp | 4 +- src/tools/uic/cpp/cppwriteiconinitialization.h | 4 +- src/tools/uic/cpp/cppwriteincludes.cpp | 4 +- src/tools/uic/cpp/cppwriteincludes.h | 4 +- src/tools/uic/cpp/cppwriteinitialization.cpp | 4 +- src/tools/uic/cpp/cppwriteinitialization.h | 4 +- src/tools/uic/customwidgetsinfo.cpp | 4 +- src/tools/uic/customwidgetsinfo.h | 4 +- src/tools/uic/databaseinfo.cpp | 4 +- src/tools/uic/databaseinfo.h | 4 +- src/tools/uic/driver.cpp | 4 +- src/tools/uic/driver.h | 4 +- src/tools/uic/globaldefs.h | 4 +- src/tools/uic/main.cpp | 4 +- src/tools/uic/option.h | 4 +- src/tools/uic/treewalker.cpp | 4 +- src/tools/uic/treewalker.h | 4 +- src/tools/uic/ui4.cpp | 4 +- src/tools/uic/ui4.h | 4 +- src/tools/uic/uic.cpp | 4 +- src/tools/uic/uic.h | 4 +- src/tools/uic/utils.h | 4 +- src/tools/uic/validator.cpp | 4 +- src/tools/uic/validator.h | 4 +- src/tools/uic3/converter.cpp | 4 +- src/tools/uic3/deps.cpp | 4 +- src/tools/uic3/domtool.cpp | 4 +- src/tools/uic3/domtool.h | 4 +- src/tools/uic3/embed.cpp | 4 +- src/tools/uic3/form.cpp | 4 +- src/tools/uic3/main.cpp | 4 +- src/tools/uic3/object.cpp | 4 +- src/tools/uic3/parser.cpp | 4 +- src/tools/uic3/parser.h | 4 +- src/tools/uic3/qt3to4.cpp | 4 +- src/tools/uic3/qt3to4.h | 4 +- src/tools/uic3/subclassing.cpp | 4 +- src/tools/uic3/ui3reader.cpp | 4 +- src/tools/uic3/ui3reader.h | 4 +- src/tools/uic3/uic.cpp | 4 +- src/tools/uic3/uic.h | 4 +- src/tools/uic3/widgetinfo.cpp | 4 +- src/tools/uic3/widgetinfo.h | 4 +- src/winmain/qtmain_win.cpp | 2 +- src/xml/dom/qdom.cpp | 4 +- src/xml/dom/qdom.h | 4 +- src/xml/sax/qxml.cpp | 4 +- src/xml/sax/qxml.h | 4 +- src/xml/stream/qxmlstream.h | 4 +- src/xmlpatterns/Mainpage.dox | 4 +- src/xmlpatterns/acceltree/qacceliterators.cpp | 4 +- src/xmlpatterns/acceltree/qacceliterators_p.h | 4 +- src/xmlpatterns/acceltree/qacceltree.cpp | 4 +- src/xmlpatterns/acceltree/qacceltree_p.h | 4 +- src/xmlpatterns/acceltree/qacceltreebuilder.cpp | 4 +- src/xmlpatterns/acceltree/qacceltreebuilder_p.h | 4 +- .../acceltree/qacceltreeresourceloader.cpp | 4 +- .../acceltree/qacceltreeresourceloader_p.h | 4 +- .../acceltree/qcompressedwhitespace.cpp | 4 +- .../acceltree/qcompressedwhitespace_p.h | 4 +- src/xmlpatterns/api/qabstractmessagehandler.cpp | 4 +- src/xmlpatterns/api/qabstractmessagehandler.h | 4 +- src/xmlpatterns/api/qabstracturiresolver.cpp | 4 +- src/xmlpatterns/api/qabstracturiresolver.h | 4 +- .../api/qabstractxmlforwarditerator.cpp | 4 +- .../api/qabstractxmlforwarditerator_p.h | 4 +- src/xmlpatterns/api/qabstractxmlnodemodel.cpp | 4 +- src/xmlpatterns/api/qabstractxmlnodemodel.h | 4 +- src/xmlpatterns/api/qabstractxmlnodemodel_p.h | 4 +- src/xmlpatterns/api/qabstractxmlreceiver.cpp | 4 +- src/xmlpatterns/api/qabstractxmlreceiver.h | 4 +- src/xmlpatterns/api/qabstractxmlreceiver_p.h | 4 +- src/xmlpatterns/api/qdeviceresourceloader_p.h | 4 +- src/xmlpatterns/api/qiodevicedelegate.cpp | 4 +- src/xmlpatterns/api/qiodevicedelegate_p.h | 4 +- src/xmlpatterns/api/qnetworkaccessdelegator.cpp | 4 +- src/xmlpatterns/api/qnetworkaccessdelegator_p.h | 4 +- src/xmlpatterns/api/qreferencecountedvalue_p.h | 4 +- src/xmlpatterns/api/qresourcedelegator.cpp | 4 +- src/xmlpatterns/api/qresourcedelegator_p.h | 4 +- src/xmlpatterns/api/qsimplexmlnodemodel.cpp | 4 +- src/xmlpatterns/api/qsimplexmlnodemodel.h | 4 +- src/xmlpatterns/api/qsourcelocation.cpp | 4 +- src/xmlpatterns/api/qsourcelocation.h | 4 +- src/xmlpatterns/api/quriloader.cpp | 4 +- src/xmlpatterns/api/quriloader_p.h | 4 +- src/xmlpatterns/api/qvariableloader.cpp | 4 +- src/xmlpatterns/api/qvariableloader_p.h | 4 +- src/xmlpatterns/api/qxmlformatter.cpp | 4 +- src/xmlpatterns/api/qxmlformatter.h | 4 +- src/xmlpatterns/api/qxmlname.cpp | 4 +- src/xmlpatterns/api/qxmlname.h | 4 +- src/xmlpatterns/api/qxmlnamepool.cpp | 4 +- src/xmlpatterns/api/qxmlnamepool.h | 4 +- src/xmlpatterns/api/qxmlquery.cpp | 4 +- src/xmlpatterns/api/qxmlquery.h | 4 +- src/xmlpatterns/api/qxmlquery_p.h | 4 +- src/xmlpatterns/api/qxmlresultitems.cpp | 4 +- src/xmlpatterns/api/qxmlresultitems.h | 4 +- src/xmlpatterns/api/qxmlresultitems_p.h | 4 +- src/xmlpatterns/api/qxmlserializer.cpp | 4 +- src/xmlpatterns/api/qxmlserializer.h | 4 +- src/xmlpatterns/api/qxmlserializer_p.h | 4 +- src/xmlpatterns/data/qabstractdatetime.cpp | 4 +- src/xmlpatterns/data/qabstractdatetime_p.h | 4 +- src/xmlpatterns/data/qabstractduration.cpp | 4 +- src/xmlpatterns/data/qabstractduration_p.h | 4 +- src/xmlpatterns/data/qabstractfloat.cpp | 4 +- src/xmlpatterns/data/qabstractfloat_p.h | 4 +- src/xmlpatterns/data/qabstractfloatcasters.cpp | 4 +- src/xmlpatterns/data/qabstractfloatcasters_p.h | 4 +- .../data/qabstractfloatmathematician.cpp | 4 +- .../data/qabstractfloatmathematician_p.h | 4 +- src/xmlpatterns/data/qanyuri.cpp | 4 +- src/xmlpatterns/data/qanyuri_p.h | 4 +- src/xmlpatterns/data/qatomiccaster.cpp | 4 +- src/xmlpatterns/data/qatomiccaster_p.h | 4 +- src/xmlpatterns/data/qatomiccasters.cpp | 4 +- src/xmlpatterns/data/qatomiccasters_p.h | 4 +- src/xmlpatterns/data/qatomiccomparator.cpp | 4 +- src/xmlpatterns/data/qatomiccomparator_p.h | 4 +- src/xmlpatterns/data/qatomiccomparators.cpp | 4 +- src/xmlpatterns/data/qatomiccomparators_p.h | 4 +- src/xmlpatterns/data/qatomicmathematician.cpp | 4 +- src/xmlpatterns/data/qatomicmathematician_p.h | 4 +- src/xmlpatterns/data/qatomicmathematicians.cpp | 4 +- src/xmlpatterns/data/qatomicmathematicians_p.h | 4 +- src/xmlpatterns/data/qatomicstring.cpp | 4 +- src/xmlpatterns/data/qatomicstring_p.h | 4 +- src/xmlpatterns/data/qatomicvalue.cpp | 4 +- src/xmlpatterns/data/qbase64binary.cpp | 4 +- src/xmlpatterns/data/qbase64binary_p.h | 4 +- src/xmlpatterns/data/qboolean.cpp | 4 +- src/xmlpatterns/data/qboolean_p.h | 4 +- src/xmlpatterns/data/qcommonvalues.cpp | 4 +- src/xmlpatterns/data/qcommonvalues_p.h | 4 +- src/xmlpatterns/data/qdate.cpp | 4 +- src/xmlpatterns/data/qdate_p.h | 4 +- src/xmlpatterns/data/qdaytimeduration.cpp | 4 +- src/xmlpatterns/data/qdaytimeduration_p.h | 4 +- src/xmlpatterns/data/qdecimal.cpp | 4 +- src/xmlpatterns/data/qdecimal_p.h | 4 +- src/xmlpatterns/data/qderivedinteger_p.h | 4 +- src/xmlpatterns/data/qderivedstring_p.h | 4 +- src/xmlpatterns/data/qduration.cpp | 4 +- src/xmlpatterns/data/qduration_p.h | 4 +- src/xmlpatterns/data/qgday.cpp | 4 +- src/xmlpatterns/data/qgday_p.h | 4 +- src/xmlpatterns/data/qgmonth.cpp | 4 +- src/xmlpatterns/data/qgmonth_p.h | 4 +- src/xmlpatterns/data/qgmonthday.cpp | 4 +- src/xmlpatterns/data/qgmonthday_p.h | 4 +- src/xmlpatterns/data/qgyear.cpp | 4 +- src/xmlpatterns/data/qgyear_p.h | 4 +- src/xmlpatterns/data/qgyearmonth.cpp | 4 +- src/xmlpatterns/data/qgyearmonth_p.h | 4 +- src/xmlpatterns/data/qhexbinary.cpp | 4 +- src/xmlpatterns/data/qhexbinary_p.h | 4 +- src/xmlpatterns/data/qinteger.cpp | 4 +- src/xmlpatterns/data/qinteger_p.h | 4 +- src/xmlpatterns/data/qitem.cpp | 4 +- src/xmlpatterns/data/qitem_p.h | 4 +- src/xmlpatterns/data/qnodebuilder.cpp | 4 +- src/xmlpatterns/data/qnodebuilder_p.h | 4 +- src/xmlpatterns/data/qnodemodel.cpp | 4 +- src/xmlpatterns/data/qqnamevalue.cpp | 4 +- src/xmlpatterns/data/qqnamevalue_p.h | 4 +- src/xmlpatterns/data/qresourceloader.cpp | 4 +- src/xmlpatterns/data/qresourceloader_p.h | 4 +- src/xmlpatterns/data/qschemadatetime.cpp | 4 +- src/xmlpatterns/data/qschemadatetime_p.h | 4 +- src/xmlpatterns/data/qschemanumeric.cpp | 4 +- src/xmlpatterns/data/qschemanumeric_p.h | 4 +- src/xmlpatterns/data/qschematime.cpp | 4 +- src/xmlpatterns/data/qschematime_p.h | 4 +- src/xmlpatterns/data/qsequencereceiver.cpp | 4 +- src/xmlpatterns/data/qsequencereceiver_p.h | 4 +- src/xmlpatterns/data/qsorttuple.cpp | 4 +- src/xmlpatterns/data/qsorttuple_p.h | 4 +- src/xmlpatterns/data/quntypedatomic.cpp | 4 +- src/xmlpatterns/data/quntypedatomic_p.h | 4 +- src/xmlpatterns/data/qvalidationerror.cpp | 4 +- src/xmlpatterns/data/qvalidationerror_p.h | 4 +- src/xmlpatterns/data/qyearmonthduration.cpp | 4 +- src/xmlpatterns/data/qyearmonthduration_p.h | 4 +- src/xmlpatterns/documentationGroups.dox | 4 +- .../environment/createReportContext.xsl | 8 ++-- .../environment/qcurrentitemcontext.cpp | 4 +- .../environment/qcurrentitemcontext_p.h | 4 +- .../environment/qdelegatingdynamiccontext.cpp | 4 +- .../environment/qdelegatingdynamiccontext_p.h | 4 +- .../environment/qdelegatingstaticcontext.cpp | 4 +- .../environment/qdelegatingstaticcontext_p.h | 4 +- src/xmlpatterns/environment/qdynamiccontext.cpp | 4 +- src/xmlpatterns/environment/qdynamiccontext_p.h | 4 +- src/xmlpatterns/environment/qfocus.cpp | 4 +- src/xmlpatterns/environment/qfocus_p.h | 4 +- .../environment/qgenericdynamiccontext.cpp | 4 +- .../environment/qgenericdynamiccontext_p.h | 4 +- .../environment/qgenericstaticcontext.cpp | 4 +- .../environment/qgenericstaticcontext_p.h | 4 +- .../environment/qreceiverdynamiccontext.cpp | 4 +- .../environment/qreceiverdynamiccontext_p.h | 4 +- src/xmlpatterns/environment/qreportcontext.cpp | 4 +- src/xmlpatterns/environment/qreportcontext_p.h | 4 +- src/xmlpatterns/environment/qstackcontextbase.cpp | 4 +- src/xmlpatterns/environment/qstackcontextbase_p.h | 4 +- .../environment/qstaticbaseuricontext.cpp | 4 +- .../environment/qstaticbaseuricontext_p.h | 4 +- .../environment/qstaticcompatibilitycontext.cpp | 4 +- .../environment/qstaticcompatibilitycontext_p.h | 4 +- src/xmlpatterns/environment/qstaticcontext.cpp | 4 +- src/xmlpatterns/environment/qstaticcontext_p.h | 4 +- .../environment/qstaticcurrentcontext.cpp | 4 +- .../environment/qstaticcurrentcontext_p.h | 4 +- .../environment/qstaticfocuscontext.cpp | 4 +- .../environment/qstaticfocuscontext_p.h | 4 +- .../environment/qstaticnamespacecontext.cpp | 4 +- .../environment/qstaticnamespacecontext_p.h | 4 +- src/xmlpatterns/expr/qandexpression.cpp | 4 +- src/xmlpatterns/expr/qandexpression_p.h | 4 +- src/xmlpatterns/expr/qapplytemplate.cpp | 4 +- src/xmlpatterns/expr/qapplytemplate_p.h | 4 +- src/xmlpatterns/expr/qargumentreference.cpp | 4 +- src/xmlpatterns/expr/qargumentreference_p.h | 4 +- src/xmlpatterns/expr/qarithmeticexpression.cpp | 4 +- src/xmlpatterns/expr/qarithmeticexpression_p.h | 4 +- src/xmlpatterns/expr/qattributeconstructor.cpp | 4 +- src/xmlpatterns/expr/qattributeconstructor_p.h | 4 +- src/xmlpatterns/expr/qattributenamevalidator.cpp | 4 +- src/xmlpatterns/expr/qattributenamevalidator_p.h | 4 +- src/xmlpatterns/expr/qaxisstep.cpp | 4 +- src/xmlpatterns/expr/qaxisstep_p.h | 4 +- src/xmlpatterns/expr/qcachecells_p.h | 4 +- src/xmlpatterns/expr/qcallsite.cpp | 4 +- src/xmlpatterns/expr/qcallsite_p.h | 4 +- src/xmlpatterns/expr/qcalltargetdescription.cpp | 4 +- src/xmlpatterns/expr/qcalltargetdescription_p.h | 4 +- src/xmlpatterns/expr/qcalltemplate.cpp | 4 +- src/xmlpatterns/expr/qcalltemplate_p.h | 4 +- src/xmlpatterns/expr/qcastableas.cpp | 4 +- src/xmlpatterns/expr/qcastableas_p.h | 4 +- src/xmlpatterns/expr/qcastas.cpp | 4 +- src/xmlpatterns/expr/qcastas_p.h | 4 +- src/xmlpatterns/expr/qcastingplatform.cpp | 4 +- src/xmlpatterns/expr/qcastingplatform_p.h | 4 +- src/xmlpatterns/expr/qcollationchecker.cpp | 4 +- src/xmlpatterns/expr/qcollationchecker_p.h | 4 +- src/xmlpatterns/expr/qcombinenodes.cpp | 4 +- src/xmlpatterns/expr/qcombinenodes_p.h | 4 +- src/xmlpatterns/expr/qcommentconstructor.cpp | 4 +- src/xmlpatterns/expr/qcommentconstructor_p.h | 4 +- src/xmlpatterns/expr/qcomparisonplatform.cpp | 4 +- src/xmlpatterns/expr/qcomparisonplatform_p.h | 4 +- .../expr/qcomputednamespaceconstructor.cpp | 4 +- .../expr/qcomputednamespaceconstructor_p.h | 4 +- src/xmlpatterns/expr/qcontextitem.cpp | 4 +- src/xmlpatterns/expr/qcontextitem_p.h | 4 +- src/xmlpatterns/expr/qcopyof.cpp | 4 +- src/xmlpatterns/expr/qcopyof_p.h | 4 +- src/xmlpatterns/expr/qcurrentitemstore.cpp | 4 +- src/xmlpatterns/expr/qcurrentitemstore_p.h | 4 +- src/xmlpatterns/expr/qdocumentconstructor.cpp | 4 +- src/xmlpatterns/expr/qdocumentconstructor_p.h | 4 +- src/xmlpatterns/expr/qdocumentcontentvalidator.cpp | 4 +- src/xmlpatterns/expr/qdocumentcontentvalidator_p.h | 4 +- src/xmlpatterns/expr/qdynamiccontextstore.cpp | 4 +- src/xmlpatterns/expr/qdynamiccontextstore_p.h | 4 +- src/xmlpatterns/expr/qelementconstructor.cpp | 4 +- src/xmlpatterns/expr/qelementconstructor_p.h | 4 +- src/xmlpatterns/expr/qemptycontainer.cpp | 4 +- src/xmlpatterns/expr/qemptycontainer_p.h | 4 +- src/xmlpatterns/expr/qemptysequence.cpp | 4 +- src/xmlpatterns/expr/qemptysequence_p.h | 4 +- src/xmlpatterns/expr/qevaluationcache.cpp | 4 +- src/xmlpatterns/expr/qevaluationcache_p.h | 4 +- src/xmlpatterns/expr/qexpression.cpp | 4 +- src/xmlpatterns/expr/qexpression_p.h | 4 +- src/xmlpatterns/expr/qexpressiondispatch_p.h | 4 +- src/xmlpatterns/expr/qexpressionfactory.cpp | 4 +- src/xmlpatterns/expr/qexpressionfactory_p.h | 4 +- src/xmlpatterns/expr/qexpressionsequence.cpp | 4 +- src/xmlpatterns/expr/qexpressionsequence_p.h | 4 +- .../expr/qexpressionvariablereference.cpp | 4 +- .../expr/qexpressionvariablereference_p.h | 4 +- src/xmlpatterns/expr/qexternalvariableloader.cpp | 4 +- src/xmlpatterns/expr/qexternalvariableloader_p.h | 4 +- .../expr/qexternalvariablereference.cpp | 4 +- .../expr/qexternalvariablereference_p.h | 4 +- src/xmlpatterns/expr/qfirstitempredicate.cpp | 4 +- src/xmlpatterns/expr/qfirstitempredicate_p.h | 4 +- src/xmlpatterns/expr/qforclause.cpp | 4 +- src/xmlpatterns/expr/qforclause_p.h | 4 +- src/xmlpatterns/expr/qgeneralcomparison.cpp | 4 +- src/xmlpatterns/expr/qgeneralcomparison_p.h | 4 +- src/xmlpatterns/expr/qgenericpredicate.cpp | 4 +- src/xmlpatterns/expr/qgenericpredicate_p.h | 4 +- src/xmlpatterns/expr/qifthenclause.cpp | 4 +- src/xmlpatterns/expr/qifthenclause_p.h | 4 +- src/xmlpatterns/expr/qinstanceof.cpp | 4 +- src/xmlpatterns/expr/qinstanceof_p.h | 4 +- src/xmlpatterns/expr/qletclause.cpp | 4 +- src/xmlpatterns/expr/qletclause_p.h | 4 +- src/xmlpatterns/expr/qliteral.cpp | 4 +- src/xmlpatterns/expr/qliteral_p.h | 4 +- src/xmlpatterns/expr/qliteralsequence.cpp | 4 +- src/xmlpatterns/expr/qliteralsequence_p.h | 4 +- src/xmlpatterns/expr/qnamespaceconstructor.cpp | 4 +- src/xmlpatterns/expr/qnamespaceconstructor_p.h | 4 +- src/xmlpatterns/expr/qncnameconstructor.cpp | 4 +- src/xmlpatterns/expr/qncnameconstructor_p.h | 4 +- src/xmlpatterns/expr/qnodecomparison.cpp | 4 +- src/xmlpatterns/expr/qnodecomparison_p.h | 4 +- src/xmlpatterns/expr/qnodesort.cpp | 4 +- src/xmlpatterns/expr/qnodesort_p.h | 4 +- src/xmlpatterns/expr/qoperandsiterator_p.h | 4 +- src/xmlpatterns/expr/qoptimizationpasses.cpp | 4 +- src/xmlpatterns/expr/qoptimizationpasses_p.h | 4 +- src/xmlpatterns/expr/qoptimizerblocks.cpp | 4 +- src/xmlpatterns/expr/qoptimizerblocks_p.h | 4 +- src/xmlpatterns/expr/qoptimizerframework.cpp | 4 +- src/xmlpatterns/expr/qoptimizerframework_p.h | 4 +- src/xmlpatterns/expr/qorderby.cpp | 4 +- src/xmlpatterns/expr/qorderby_p.h | 4 +- src/xmlpatterns/expr/qorexpression.cpp | 4 +- src/xmlpatterns/expr/qorexpression_p.h | 4 +- src/xmlpatterns/expr/qpaircontainer.cpp | 4 +- src/xmlpatterns/expr/qpaircontainer_p.h | 4 +- src/xmlpatterns/expr/qparentnodeaxis.cpp | 4 +- src/xmlpatterns/expr/qparentnodeaxis_p.h | 4 +- src/xmlpatterns/expr/qpath.cpp | 4 +- src/xmlpatterns/expr/qpath_p.h | 4 +- .../expr/qpositionalvariablereference.cpp | 4 +- .../expr/qpositionalvariablereference_p.h | 4 +- .../expr/qprocessinginstructionconstructor.cpp | 4 +- .../expr/qprocessinginstructionconstructor_p.h | 4 +- src/xmlpatterns/expr/qqnameconstructor.cpp | 4 +- src/xmlpatterns/expr/qqnameconstructor_p.h | 4 +- src/xmlpatterns/expr/qquantifiedexpression.cpp | 4 +- src/xmlpatterns/expr/qquantifiedexpression_p.h | 4 +- src/xmlpatterns/expr/qrangeexpression.cpp | 4 +- src/xmlpatterns/expr/qrangeexpression_p.h | 4 +- src/xmlpatterns/expr/qrangevariablereference.cpp | 4 +- src/xmlpatterns/expr/qrangevariablereference_p.h | 4 +- src/xmlpatterns/expr/qreturnorderby.cpp | 4 +- src/xmlpatterns/expr/qreturnorderby_p.h | 4 +- src/xmlpatterns/expr/qsimplecontentconstructor.cpp | 4 +- src/xmlpatterns/expr/qsimplecontentconstructor_p.h | 4 +- src/xmlpatterns/expr/qsinglecontainer.cpp | 4 +- src/xmlpatterns/expr/qsinglecontainer_p.h | 4 +- src/xmlpatterns/expr/qsourcelocationreflection.cpp | 4 +- src/xmlpatterns/expr/qsourcelocationreflection_p.h | 4 +- src/xmlpatterns/expr/qstaticbaseuristore.cpp | 4 +- src/xmlpatterns/expr/qstaticbaseuristore_p.h | 4 +- src/xmlpatterns/expr/qstaticcompatibilitystore.cpp | 4 +- src/xmlpatterns/expr/qstaticcompatibilitystore_p.h | 4 +- src/xmlpatterns/expr/qtemplate.cpp | 4 +- src/xmlpatterns/expr/qtemplate_p.h | 4 +- src/xmlpatterns/expr/qtemplateinvoker.cpp | 4 +- src/xmlpatterns/expr/qtemplateinvoker_p.h | 4 +- src/xmlpatterns/expr/qtemplatemode.cpp | 4 +- src/xmlpatterns/expr/qtemplatemode_p.h | 4 +- .../expr/qtemplateparameterreference.cpp | 4 +- .../expr/qtemplateparameterreference_p.h | 4 +- src/xmlpatterns/expr/qtemplatepattern_p.h | 4 +- src/xmlpatterns/expr/qtextnodeconstructor.cpp | 4 +- src/xmlpatterns/expr/qtextnodeconstructor_p.h | 4 +- src/xmlpatterns/expr/qtreatas.cpp | 4 +- src/xmlpatterns/expr/qtreatas_p.h | 4 +- src/xmlpatterns/expr/qtriplecontainer.cpp | 4 +- src/xmlpatterns/expr/qtriplecontainer_p.h | 4 +- src/xmlpatterns/expr/qtruthpredicate.cpp | 4 +- src/xmlpatterns/expr/qtruthpredicate_p.h | 4 +- src/xmlpatterns/expr/qunaryexpression.cpp | 4 +- src/xmlpatterns/expr/qunaryexpression_p.h | 4 +- src/xmlpatterns/expr/qunlimitedcontainer.cpp | 4 +- src/xmlpatterns/expr/qunlimitedcontainer_p.h | 4 +- .../expr/qunresolvedvariablereference.cpp | 4 +- .../expr/qunresolvedvariablereference_p.h | 4 +- src/xmlpatterns/expr/quserfunction.cpp | 4 +- src/xmlpatterns/expr/quserfunction_p.h | 4 +- src/xmlpatterns/expr/quserfunctioncallsite.cpp | 4 +- src/xmlpatterns/expr/quserfunctioncallsite_p.h | 4 +- src/xmlpatterns/expr/qvalidate.cpp | 4 +- src/xmlpatterns/expr/qvalidate_p.h | 4 +- src/xmlpatterns/expr/qvaluecomparison.cpp | 4 +- src/xmlpatterns/expr/qvaluecomparison_p.h | 4 +- src/xmlpatterns/expr/qvariabledeclaration.cpp | 4 +- src/xmlpatterns/expr/qvariabledeclaration_p.h | 4 +- src/xmlpatterns/expr/qvariablereference.cpp | 4 +- src/xmlpatterns/expr/qvariablereference_p.h | 4 +- src/xmlpatterns/expr/qwithparam_p.h | 4 +- .../expr/qxsltsimplecontentconstructor.cpp | 4 +- .../expr/qxsltsimplecontentconstructor_p.h | 4 +- .../functions/qabstractfunctionfactory.cpp | 4 +- .../functions/qabstractfunctionfactory_p.h | 4 +- src/xmlpatterns/functions/qaccessorfns.cpp | 4 +- src/xmlpatterns/functions/qaccessorfns_p.h | 4 +- src/xmlpatterns/functions/qaggregatefns.cpp | 4 +- src/xmlpatterns/functions/qaggregatefns_p.h | 4 +- src/xmlpatterns/functions/qaggregator.cpp | 4 +- src/xmlpatterns/functions/qaggregator_p.h | 4 +- src/xmlpatterns/functions/qassemblestringfns.cpp | 4 +- src/xmlpatterns/functions/qassemblestringfns_p.h | 4 +- src/xmlpatterns/functions/qbooleanfns.cpp | 4 +- src/xmlpatterns/functions/qbooleanfns_p.h | 4 +- src/xmlpatterns/functions/qcomparescaseaware.cpp | 4 +- src/xmlpatterns/functions/qcomparescaseaware_p.h | 4 +- src/xmlpatterns/functions/qcomparestringfns.cpp | 4 +- src/xmlpatterns/functions/qcomparestringfns_p.h | 4 +- src/xmlpatterns/functions/qcomparingaggregator.cpp | 4 +- src/xmlpatterns/functions/qcomparingaggregator_p.h | 4 +- .../functions/qconstructorfunctionsfactory.cpp | 4 +- .../functions/qconstructorfunctionsfactory_p.h | 4 +- src/xmlpatterns/functions/qcontextfns.cpp | 4 +- src/xmlpatterns/functions/qcontextfns_p.h | 4 +- src/xmlpatterns/functions/qcontextnodechecker.cpp | 4 +- src/xmlpatterns/functions/qcontextnodechecker_p.h | 4 +- src/xmlpatterns/functions/qcurrentfn.cpp | 4 +- src/xmlpatterns/functions/qcurrentfn_p.h | 4 +- src/xmlpatterns/functions/qdatetimefn.cpp | 4 +- src/xmlpatterns/functions/qdatetimefn_p.h | 4 +- src/xmlpatterns/functions/qdatetimefns.cpp | 4 +- src/xmlpatterns/functions/qdatetimefns_p.h | 4 +- src/xmlpatterns/functions/qdeepequalfn.cpp | 4 +- src/xmlpatterns/functions/qdeepequalfn_p.h | 4 +- src/xmlpatterns/functions/qdocumentfn.cpp | 4 +- src/xmlpatterns/functions/qdocumentfn_p.h | 4 +- src/xmlpatterns/functions/qelementavailablefn.cpp | 4 +- src/xmlpatterns/functions/qelementavailablefn_p.h | 4 +- src/xmlpatterns/functions/qerrorfn.cpp | 4 +- src/xmlpatterns/functions/qerrorfn_p.h | 4 +- src/xmlpatterns/functions/qfunctionargument.cpp | 4 +- src/xmlpatterns/functions/qfunctionargument_p.h | 4 +- src/xmlpatterns/functions/qfunctionavailablefn.cpp | 4 +- src/xmlpatterns/functions/qfunctionavailablefn_p.h | 4 +- src/xmlpatterns/functions/qfunctioncall.cpp | 4 +- src/xmlpatterns/functions/qfunctioncall_p.h | 4 +- src/xmlpatterns/functions/qfunctionfactory.cpp | 4 +- src/xmlpatterns/functions/qfunctionfactory_p.h | 4 +- .../functions/qfunctionfactorycollection.cpp | 4 +- .../functions/qfunctionfactorycollection_p.h | 4 +- src/xmlpatterns/functions/qfunctionsignature.cpp | 4 +- src/xmlpatterns/functions/qfunctionsignature_p.h | 4 +- src/xmlpatterns/functions/qgenerateidfn.cpp | 4 +- src/xmlpatterns/functions/qgenerateidfn_p.h | 4 +- src/xmlpatterns/functions/qnodefns.cpp | 4 +- src/xmlpatterns/functions/qnodefns_p.h | 4 +- src/xmlpatterns/functions/qnumericfns.cpp | 4 +- src/xmlpatterns/functions/qnumericfns_p.h | 4 +- src/xmlpatterns/functions/qpatternmatchingfns.cpp | 4 +- src/xmlpatterns/functions/qpatternmatchingfns_p.h | 4 +- src/xmlpatterns/functions/qpatternplatform.cpp | 4 +- src/xmlpatterns/functions/qpatternplatform_p.h | 4 +- src/xmlpatterns/functions/qqnamefns.cpp | 4 +- src/xmlpatterns/functions/qqnamefns_p.h | 4 +- src/xmlpatterns/functions/qresolveurifn.cpp | 4 +- src/xmlpatterns/functions/qresolveurifn_p.h | 4 +- src/xmlpatterns/functions/qsequencefns.cpp | 4 +- src/xmlpatterns/functions/qsequencefns_p.h | 4 +- .../functions/qsequencegeneratingfns.cpp | 4 +- .../functions/qsequencegeneratingfns_p.h | 4 +- .../functions/qstaticbaseuricontainer_p.h | 4 +- .../functions/qstaticnamespacescontainer.cpp | 4 +- .../functions/qstaticnamespacescontainer_p.h | 4 +- src/xmlpatterns/functions/qstringvaluefns.cpp | 4 +- src/xmlpatterns/functions/qstringvaluefns_p.h | 4 +- src/xmlpatterns/functions/qsubstringfns.cpp | 4 +- src/xmlpatterns/functions/qsubstringfns_p.h | 4 +- src/xmlpatterns/functions/qsystempropertyfn.cpp | 4 +- src/xmlpatterns/functions/qsystempropertyfn_p.h | 4 +- src/xmlpatterns/functions/qtimezonefns.cpp | 4 +- src/xmlpatterns/functions/qtimezonefns_p.h | 4 +- src/xmlpatterns/functions/qtracefn.cpp | 4 +- src/xmlpatterns/functions/qtracefn_p.h | 4 +- src/xmlpatterns/functions/qtypeavailablefn.cpp | 4 +- src/xmlpatterns/functions/qtypeavailablefn_p.h | 4 +- .../functions/qunparsedentitypublicidfn.cpp | 4 +- .../functions/qunparsedentitypublicidfn_p.h | 4 +- src/xmlpatterns/functions/qunparsedentityurifn.cpp | 4 +- src/xmlpatterns/functions/qunparsedentityurifn_p.h | 4 +- .../functions/qunparsedtextavailablefn.cpp | 4 +- .../functions/qunparsedtextavailablefn_p.h | 4 +- src/xmlpatterns/functions/qunparsedtextfn.cpp | 4 +- src/xmlpatterns/functions/qunparsedtextfn_p.h | 4 +- .../functions/qxpath10corefunctions.cpp | 4 +- .../functions/qxpath10corefunctions_p.h | 4 +- .../functions/qxpath20corefunctions.cpp | 4 +- .../functions/qxpath20corefunctions_p.h | 4 +- src/xmlpatterns/functions/qxslt20corefunctions.cpp | 4 +- src/xmlpatterns/functions/qxslt20corefunctions_p.h | 4 +- src/xmlpatterns/iterators/qcachingiterator.cpp | 4 +- src/xmlpatterns/iterators/qcachingiterator_p.h | 4 +- src/xmlpatterns/iterators/qdeduplicateiterator.cpp | 4 +- src/xmlpatterns/iterators/qdeduplicateiterator_p.h | 4 +- src/xmlpatterns/iterators/qdistinctiterator.cpp | 4 +- src/xmlpatterns/iterators/qdistinctiterator_p.h | 4 +- src/xmlpatterns/iterators/qemptyiterator_p.h | 4 +- src/xmlpatterns/iterators/qexceptiterator.cpp | 4 +- src/xmlpatterns/iterators/qexceptiterator_p.h | 4 +- src/xmlpatterns/iterators/qindexofiterator.cpp | 4 +- src/xmlpatterns/iterators/qindexofiterator_p.h | 4 +- src/xmlpatterns/iterators/qinsertioniterator.cpp | 4 +- src/xmlpatterns/iterators/qinsertioniterator_p.h | 4 +- src/xmlpatterns/iterators/qintersectiterator.cpp | 4 +- src/xmlpatterns/iterators/qintersectiterator_p.h | 4 +- src/xmlpatterns/iterators/qitemmappingiterator_p.h | 4 +- src/xmlpatterns/iterators/qrangeiterator.cpp | 4 +- src/xmlpatterns/iterators/qrangeiterator_p.h | 4 +- src/xmlpatterns/iterators/qremovaliterator.cpp | 4 +- src/xmlpatterns/iterators/qremovaliterator_p.h | 4 +- .../iterators/qsequencemappingiterator_p.h | 4 +- src/xmlpatterns/iterators/qsingletoniterator_p.h | 4 +- src/xmlpatterns/iterators/qsubsequenceiterator.cpp | 4 +- src/xmlpatterns/iterators/qsubsequenceiterator_p.h | 4 +- .../iterators/qtocodepointsiterator.cpp | 4 +- .../iterators/qtocodepointsiterator_p.h | 4 +- src/xmlpatterns/iterators/qunioniterator.cpp | 4 +- src/xmlpatterns/iterators/qunioniterator_p.h | 4 +- src/xmlpatterns/janitors/qargumentconverter.cpp | 4 +- src/xmlpatterns/janitors/qargumentconverter_p.h | 4 +- src/xmlpatterns/janitors/qatomizer.cpp | 4 +- src/xmlpatterns/janitors/qatomizer_p.h | 4 +- src/xmlpatterns/janitors/qcardinalityverifier.cpp | 4 +- src/xmlpatterns/janitors/qcardinalityverifier_p.h | 4 +- src/xmlpatterns/janitors/qebvextractor.cpp | 4 +- src/xmlpatterns/janitors/qebvextractor_p.h | 4 +- src/xmlpatterns/janitors/qitemverifier.cpp | 4 +- src/xmlpatterns/janitors/qitemverifier_p.h | 4 +- .../janitors/quntypedatomicconverter.cpp | 4 +- .../janitors/quntypedatomicconverter_p.h | 4 +- src/xmlpatterns/parser/TokenLookup.gperf | 4 +- src/xmlpatterns/parser/qmaintainingreader.cpp | 4 +- src/xmlpatterns/parser/qmaintainingreader_p.h | 4 +- src/xmlpatterns/parser/qparsercontext.cpp | 4 +- src/xmlpatterns/parser/qparsercontext_p.h | 4 +- src/xmlpatterns/parser/qquerytransformparser.cpp | 8 ++-- src/xmlpatterns/parser/qquerytransformparser_p.h | 4 +- src/xmlpatterns/parser/qtokenizer_p.h | 4 +- src/xmlpatterns/parser/qtokenrevealer.cpp | 4 +- src/xmlpatterns/parser/qtokenrevealer_p.h | 4 +- src/xmlpatterns/parser/qtokensource.cpp | 4 +- src/xmlpatterns/parser/qtokensource_p.h | 4 +- src/xmlpatterns/parser/querytransformparser.ypp | 8 ++-- src/xmlpatterns/parser/qxquerytokenizer.cpp | 4 +- src/xmlpatterns/parser/qxquerytokenizer_p.h | 4 +- src/xmlpatterns/parser/qxslttokenizer.cpp | 4 +- src/xmlpatterns/parser/qxslttokenizer_p.h | 4 +- src/xmlpatterns/parser/qxslttokenlookup.cpp | 4 +- src/xmlpatterns/parser/qxslttokenlookup.xml | 4 +- src/xmlpatterns/parser/qxslttokenlookup_p.h | 4 +- src/xmlpatterns/parser/trolltechHeader.txt | 4 +- src/xmlpatterns/projection/qdocumentprojector.cpp | 4 +- src/xmlpatterns/projection/qdocumentprojector_p.h | 4 +- .../projection/qprojectedexpression_p.h | 4 +- src/xmlpatterns/qtokenautomaton/exampleFile.xml | 4 +- src/xmlpatterns/type/qabstractnodetest.cpp | 4 +- src/xmlpatterns/type/qabstractnodetest_p.h | 4 +- src/xmlpatterns/type/qanyitemtype.cpp | 4 +- src/xmlpatterns/type/qanyitemtype_p.h | 4 +- src/xmlpatterns/type/qanynodetype.cpp | 4 +- src/xmlpatterns/type/qanynodetype_p.h | 4 +- src/xmlpatterns/type/qanysimpletype.cpp | 4 +- src/xmlpatterns/type/qanysimpletype_p.h | 4 +- src/xmlpatterns/type/qanytype.cpp | 4 +- src/xmlpatterns/type/qanytype_p.h | 4 +- src/xmlpatterns/type/qatomiccasterlocator.cpp | 4 +- src/xmlpatterns/type/qatomiccasterlocator_p.h | 4 +- src/xmlpatterns/type/qatomiccasterlocators.cpp | 4 +- src/xmlpatterns/type/qatomiccasterlocators_p.h | 4 +- src/xmlpatterns/type/qatomiccomparatorlocator.cpp | 4 +- src/xmlpatterns/type/qatomiccomparatorlocator_p.h | 4 +- src/xmlpatterns/type/qatomiccomparatorlocators.cpp | 4 +- src/xmlpatterns/type/qatomiccomparatorlocators_p.h | 4 +- .../type/qatomicmathematicianlocator.cpp | 4 +- .../type/qatomicmathematicianlocator_p.h | 4 +- .../type/qatomicmathematicianlocators.cpp | 4 +- .../type/qatomicmathematicianlocators_p.h | 4 +- src/xmlpatterns/type/qatomictype.cpp | 4 +- src/xmlpatterns/type/qatomictype_p.h | 4 +- src/xmlpatterns/type/qatomictypedispatch_p.h | 4 +- src/xmlpatterns/type/qbasictypesfactory.cpp | 4 +- src/xmlpatterns/type/qbasictypesfactory_p.h | 4 +- src/xmlpatterns/type/qbuiltinatomictype.cpp | 4 +- src/xmlpatterns/type/qbuiltinatomictype_p.h | 4 +- src/xmlpatterns/type/qbuiltinatomictypes.cpp | 4 +- src/xmlpatterns/type/qbuiltinatomictypes_p.h | 4 +- src/xmlpatterns/type/qbuiltinnodetype.cpp | 4 +- src/xmlpatterns/type/qbuiltinnodetype_p.h | 4 +- src/xmlpatterns/type/qbuiltintypes.cpp | 4 +- src/xmlpatterns/type/qbuiltintypes_p.h | 4 +- src/xmlpatterns/type/qcardinality.cpp | 4 +- src/xmlpatterns/type/qcardinality_p.h | 4 +- src/xmlpatterns/type/qcommonsequencetypes.cpp | 4 +- src/xmlpatterns/type/qcommonsequencetypes_p.h | 4 +- src/xmlpatterns/type/qebvtype.cpp | 4 +- src/xmlpatterns/type/qebvtype_p.h | 4 +- src/xmlpatterns/type/qemptysequencetype.cpp | 4 +- src/xmlpatterns/type/qemptysequencetype_p.h | 4 +- src/xmlpatterns/type/qgenericsequencetype.cpp | 4 +- src/xmlpatterns/type/qgenericsequencetype_p.h | 4 +- src/xmlpatterns/type/qitemtype.cpp | 4 +- src/xmlpatterns/type/qitemtype_p.h | 4 +- src/xmlpatterns/type/qlocalnametest.cpp | 4 +- src/xmlpatterns/type/qlocalnametest_p.h | 4 +- src/xmlpatterns/type/qmultiitemtype.cpp | 4 +- src/xmlpatterns/type/qmultiitemtype_p.h | 4 +- src/xmlpatterns/type/qnamespacenametest.cpp | 4 +- src/xmlpatterns/type/qnamespacenametest_p.h | 4 +- src/xmlpatterns/type/qnonetype.cpp | 4 +- src/xmlpatterns/type/qnonetype_p.h | 4 +- src/xmlpatterns/type/qnumerictype.cpp | 4 +- src/xmlpatterns/type/qnumerictype_p.h | 4 +- src/xmlpatterns/type/qprimitives_p.h | 4 +- src/xmlpatterns/type/qqnametest.cpp | 4 +- src/xmlpatterns/type/qqnametest_p.h | 4 +- src/xmlpatterns/type/qschemacomponent.cpp | 4 +- src/xmlpatterns/type/qschemacomponent_p.h | 4 +- src/xmlpatterns/type/qschematype.cpp | 4 +- src/xmlpatterns/type/qschematype_p.h | 4 +- src/xmlpatterns/type/qschematypefactory.cpp | 4 +- src/xmlpatterns/type/qschematypefactory_p.h | 4 +- src/xmlpatterns/type/qsequencetype.cpp | 4 +- src/xmlpatterns/type/qsequencetype_p.h | 4 +- src/xmlpatterns/type/qtypechecker.cpp | 4 +- src/xmlpatterns/type/qtypechecker_p.h | 4 +- src/xmlpatterns/type/quntyped.cpp | 4 +- src/xmlpatterns/type/quntyped_p.h | 4 +- src/xmlpatterns/type/qxsltnodetest.cpp | 4 +- src/xmlpatterns/type/qxsltnodetest_p.h | 4 +- src/xmlpatterns/utils/qautoptr.cpp | 4 +- src/xmlpatterns/utils/qautoptr_p.h | 4 +- src/xmlpatterns/utils/qcommonnamespaces_p.h | 4 +- src/xmlpatterns/utils/qcppcastinghelper_p.h | 4 +- src/xmlpatterns/utils/qdebug_p.h | 4 +- .../utils/qdelegatingnamespaceresolver.cpp | 4 +- .../utils/qdelegatingnamespaceresolver_p.h | 4 +- .../utils/qgenericnamespaceresolver.cpp | 4 +- .../utils/qgenericnamespaceresolver_p.h | 4 +- src/xmlpatterns/utils/qnamepool.cpp | 4 +- src/xmlpatterns/utils/qnamepool_p.h | 4 +- src/xmlpatterns/utils/qnamespacebinding_p.h | 4 +- src/xmlpatterns/utils/qnamespaceresolver.cpp | 4 +- src/xmlpatterns/utils/qnamespaceresolver_p.h | 4 +- src/xmlpatterns/utils/qnodenamespaceresolver.cpp | 4 +- src/xmlpatterns/utils/qnodenamespaceresolver_p.h | 4 +- src/xmlpatterns/utils/qoutputvalidator.cpp | 4 +- src/xmlpatterns/utils/qoutputvalidator_p.h | 4 +- src/xmlpatterns/utils/qpatternistlocale.cpp | 4 +- src/xmlpatterns/utils/qpatternistlocale_p.h | 4 +- src/xmlpatterns/utils/qxpathhelper.cpp | 4 +- src/xmlpatterns/utils/qxpathhelper_p.h | 4 +- tests/arthur/common/framework.cpp | 4 +- tests/arthur/common/framework.h | 4 +- tests/arthur/common/paintcommands.cpp | 4 +- tests/arthur/common/paintcommands.h | 4 +- tests/arthur/common/qengines.cpp | 4 +- tests/arthur/common/qengines.h | 4 +- tests/arthur/common/xmldata.cpp | 4 +- tests/arthur/common/xmldata.h | 4 +- tests/arthur/datagenerator/datagenerator.cpp | 4 +- tests/arthur/datagenerator/datagenerator.h | 4 +- tests/arthur/datagenerator/main.cpp | 4 +- tests/arthur/datagenerator/xmlgenerator.cpp | 4 +- tests/arthur/datagenerator/xmlgenerator.h | 4 +- tests/arthur/htmlgenerator/htmlgenerator.cpp | 4 +- tests/arthur/htmlgenerator/htmlgenerator.h | 4 +- tests/arthur/htmlgenerator/main.cpp | 4 +- tests/arthur/lance/interactivewidget.cpp | 4 +- tests/arthur/lance/interactivewidget.h | 4 +- tests/arthur/lance/main.cpp | 4 +- tests/arthur/lance/widgets.h | 4 +- tests/arthur/performancediff/main.cpp | 4 +- tests/arthur/performancediff/performancediff.cpp | 4 +- tests/arthur/performancediff/performancediff.h | 4 +- tests/arthur/shower/main.cpp | 4 +- tests/arthur/shower/shower.cpp | 4 +- tests/arthur/shower/shower.h | 4 +- .../auto/_networkselftest/tst_networkselftest.cpp | 4 +- tests/auto/atwrapper/atWrapper.cpp | 4 +- tests/auto/atwrapper/atWrapper.h | 4 +- tests/auto/atwrapper/atWrapperAutotest.cpp | 4 +- tests/auto/bic/qbic.cpp | 4 +- tests/auto/bic/qbic.h | 4 +- tests/auto/bic/tst_bic.cpp | 4 +- tests/auto/checkxmlfiles/tst_checkxmlfiles.cpp | 4 +- tests/auto/collections/tst_collections.cpp | 4 +- tests/auto/compile/baseclass.cpp | 4 +- tests/auto/compile/baseclass.h | 4 +- tests/auto/compile/derivedclass.cpp | 4 +- tests/auto/compile/derivedclass.h | 4 +- tests/auto/compile/tst_compile.cpp | 4 +- tests/auto/compilerwarnings/test.cpp | 4 +- .../auto/compilerwarnings/tst_compilerwarnings.cpp | 4 +- tests/auto/exceptionsafety/tst_exceptionsafety.cpp | 4 +- tests/auto/headers/tst_headers.cpp | 6 +-- tests/auto/languagechange/tst_languagechange.cpp | 4 +- tests/auto/macgui/guitest.cpp | 4 +- tests/auto/macgui/guitest.h | 4 +- tests/auto/macgui/tst_gui.cpp | 4 +- tests/auto/macplist/app/main.cpp | 4 +- tests/auto/macplist/tst_macplist.cpp | 4 +- tests/auto/mediaobject/qtesthelper.h | 4 +- tests/auto/mediaobject/tst_mediaobject.cpp | 4 +- tests/auto/mediaobject_wince_ds9/dummy.cpp | 4 +- .../moc/Test.framework/Headers/testinterface.h | 4 +- tests/auto/moc/assign-namespace.h | 4 +- tests/auto/moc/backslash-newlines.h | 4 +- tests/auto/moc/c-comments.h | 4 +- tests/auto/moc/cstyle-enums.h | 4 +- tests/auto/moc/dir-in-include-path.h | 4 +- tests/auto/moc/escapes-in-string-literals.h | 4 +- tests/auto/moc/extraqualification.h | 4 +- tests/auto/moc/forgotten-qinterface.h | 4 +- tests/auto/moc/gadgetwithnoenums.h | 4 +- tests/auto/moc/interface-from-framework.h | 4 +- tests/auto/moc/macro-on-cmdline.h | 4 +- tests/auto/moc/namespaced-flags.h | 4 +- tests/auto/moc/no-keywords.h | 4 +- tests/auto/moc/oldstyle-casts.h | 4 +- tests/auto/moc/os9-newlines.h | 2 +- tests/auto/moc/parse-boost.h | 4 +- tests/auto/moc/pure-virtual-signals.h | 4 +- tests/auto/moc/qinvokable.h | 4 +- tests/auto/moc/qprivateslots.h | 4 +- tests/auto/moc/single_function_keyword.h | 4 +- tests/auto/moc/slots-with-void-template.h | 4 +- tests/auto/moc/task189996.h | 4 +- tests/auto/moc/task192552.h | 4 +- tests/auto/moc/task234909.h | 4 +- tests/auto/moc/task240368.h | 4 +- tests/auto/moc/task87883.h | 4 +- tests/auto/moc/template-gtgt.h | 4 +- tests/auto/moc/testproject/Plugin/Plugin.h | 4 +- tests/auto/moc/trigraphs.h | 4 +- tests/auto/moc/tst_moc.cpp | 4 +- tests/auto/moc/using-namespaces.h | 4 +- .../auto/moc/warn-on-multiple-qobject-subclasses.h | 4 +- tests/auto/moc/warn-on-property-without-read.h | 4 +- tests/auto/moc/win-newlines.h | 4 +- tests/auto/modeltest/modeltest.cpp | 4 +- tests/auto/modeltest/modeltest.h | 4 +- tests/auto/modeltest/tst_modeltest.cpp | 4 +- tests/auto/network-settings.h | 4 +- .../tst_patternistexamplefiletree.cpp | 4 +- .../patternistexamples/tst_patternistexamples.cpp | 4 +- .../patternistheaders/tst_patternistheaders.cpp | 4 +- tests/auto/q3accel/tst_q3accel.cpp | 4 +- tests/auto/q3action/tst_q3action.cpp | 4 +- tests/auto/q3actiongroup/tst_q3actiongroup.cpp | 4 +- tests/auto/q3buttongroup/clickLock/main.cpp | 4 +- tests/auto/q3buttongroup/tst_q3buttongroup.cpp | 4 +- tests/auto/q3canvas/tst_q3canvas.cpp | 4 +- tests/auto/q3checklistitem/tst_q3checklistitem.cpp | 4 +- tests/auto/q3combobox/tst_q3combobox.cpp | 4 +- tests/auto/q3cstring/tst_q3cstring.cpp | 4 +- tests/auto/q3databrowser/tst_q3databrowser.cpp | 4 +- tests/auto/q3dateedit/tst_q3dateedit.cpp | 4 +- tests/auto/q3datetimeedit/tst_q3datetimeedit.cpp | 4 +- tests/auto/q3deepcopy/tst_q3deepcopy.cpp | 4 +- tests/auto/q3dict/tst_q3dict.cpp | 4 +- tests/auto/q3dns/tst_q3dns.cpp | 4 +- tests/auto/q3dockwindow/tst_q3dockwindow.cpp | 4 +- tests/auto/q3filedialog/tst_q3filedialog.cpp | 4 +- tests/auto/q3frame/tst_q3frame.cpp | 4 +- tests/auto/q3groupbox/tst_q3groupbox.cpp | 4 +- tests/auto/q3hbox/tst_q3hbox.cpp | 4 +- tests/auto/q3header/tst_q3header.cpp | 4 +- tests/auto/q3iconview/tst_q3iconview.cpp | 4 +- tests/auto/q3listbox/tst_qlistbox.cpp | 4 +- tests/auto/q3listview/tst_q3listview.cpp | 4 +- .../tst_q3listviewitemiterator.cpp | 4 +- tests/auto/q3mainwindow/tst_q3mainwindow.cpp | 4 +- tests/auto/q3popupmenu/tst_q3popupmenu.cpp | 4 +- tests/auto/q3process/cat/main.cpp | 4 +- tests/auto/q3process/echo/main.cpp | 4 +- tests/auto/q3process/tst_q3process.cpp | 4 +- tests/auto/q3progressbar/tst_q3progressbar.cpp | 4 +- .../auto/q3progressdialog/tst_q3progressdialog.cpp | 4 +- tests/auto/q3ptrlist/tst_q3ptrlist.cpp | 4 +- tests/auto/q3richtext/tst_q3richtext.cpp | 4 +- tests/auto/q3scrollview/tst_qscrollview.cpp | 4 +- tests/auto/q3semaphore/tst_q3semaphore.cpp | 4 +- tests/auto/q3serversocket/tst_q3serversocket.cpp | 4 +- tests/auto/q3socket/tst_qsocket.cpp | 4 +- tests/auto/q3socketdevice/tst_q3socketdevice.cpp | 4 +- tests/auto/q3sqlcursor/tst_q3sqlcursor.cpp | 4 +- .../q3sqlselectcursor/tst_q3sqlselectcursor.cpp | 4 +- tests/auto/q3stylesheet/tst_q3stylesheet.cpp | 4 +- tests/auto/q3tabdialog/tst_q3tabdialog.cpp | 4 +- tests/auto/q3table/tst_q3table.cpp | 4 +- tests/auto/q3textbrowser/tst_q3textbrowser.cpp | 4 +- tests/auto/q3textedit/tst_q3textedit.cpp | 4 +- tests/auto/q3textstream/tst_q3textstream.cpp | 4 +- tests/auto/q3timeedit/tst_q3timeedit.cpp | 4 +- tests/auto/q3toolbar/tst_q3toolbar.cpp | 4 +- tests/auto/q3uridrag/tst_q3uridrag.cpp | 4 +- tests/auto/q3urloperator/tst_q3urloperator.cpp | 4 +- tests/auto/q3valuelist/tst_q3valuelist.cpp | 4 +- tests/auto/q3valuevector/tst_q3valuevector.cpp | 4 +- tests/auto/q3widgetstack/tst_q3widgetstack.cpp | 4 +- tests/auto/q_func_info/tst_q_func_info.cpp | 4 +- tests/auto/qabstractbutton/tst_qabstractbutton.cpp | 4 +- .../qabstractitemmodel/tst_qabstractitemmodel.cpp | 4 +- .../qabstractitemview/tst_qabstractitemview.cpp | 4 +- .../tst_qabstractmessagehandler.cpp | 4 +- .../tst_qabstractnetworkcache.cpp | 4 +- .../tst_qabstractprintdialog.cpp | 4 +- .../tst_qabstractproxymodel.cpp | 4 +- .../tst_qabstractscrollarea.cpp | 4 +- tests/auto/qabstractslider/tst_qabstractslider.cpp | 4 +- tests/auto/qabstractsocket/tst_qabstractsocket.cpp | 4 +- .../auto/qabstractspinbox/tst_qabstractspinbox.cpp | 4 +- .../tst_qabstracttextdocumentlayout.cpp | 4 +- tests/auto/qabstracturiresolver/TestURIResolver.h | 4 +- .../tst_qabstracturiresolver.cpp | 4 +- .../tst_qabstractxmlforwarditerator.cpp | 4 +- tests/auto/qabstractxmlnodemodel/LoadingModel.cpp | 4 +- tests/auto/qabstractxmlnodemodel/LoadingModel.h | 4 +- tests/auto/qabstractxmlnodemodel/TestNodeModel.h | 4 +- .../tst_qabstractxmlnodemodel.cpp | 4 +- .../qabstractxmlreceiver/TestAbstractXmlReceiver.h | 4 +- .../tst_qabstractxmlreceiver.cpp | 4 +- tests/auto/qaccessibility/tst_qaccessibility.cpp | 4 +- .../qaccessibility_mac/tst_qaccessibility_mac.cpp | 4 +- tests/auto/qaction/tst_qaction.cpp | 4 +- tests/auto/qactiongroup/tst_qactiongroup.cpp | 4 +- tests/auto/qalgorithms/tst_qalgorithms.cpp | 4 +- .../qapplication/desktopsettingsaware/main.cpp | 4 +- tests/auto/qapplication/tst_qapplication.cpp | 4 +- tests/auto/qapplication/wincmdline/main.cpp | 4 +- .../tst_qapplicationargumentparser.cpp | 4 +- tests/auto/qatomicint/tst_qatomicint.cpp | 4 +- tests/auto/qatomicpointer/tst_qatomicpointer.cpp | 4 +- tests/auto/qautoptr/tst_qautoptr.cpp | 4 +- tests/auto/qbitarray/tst_qbitarray.cpp | 4 +- tests/auto/qboxlayout/tst_qboxlayout.cpp | 4 +- tests/auto/qbrush/tst_qbrush.cpp | 4 +- tests/auto/qbuffer/tst_qbuffer.cpp | 4 +- tests/auto/qbuttongroup/tst_qbuttongroup.cpp | 4 +- tests/auto/qbytearray/tst_qbytearray.cpp | 4 +- .../qbytearraymatcher/tst_qbytearraymatcher.cpp | 4 +- tests/auto/qcache/tst_qcache.cpp | 4 +- tests/auto/qcalendarwidget/tst_qcalendarwidget.cpp | 4 +- tests/auto/qchar/tst_qchar.cpp | 4 +- tests/auto/qcheckbox/tst_qcheckbox.cpp | 4 +- tests/auto/qclipboard/copier/main.cpp | 4 +- tests/auto/qclipboard/paster/main.cpp | 4 +- tests/auto/qclipboard/tst_qclipboard.cpp | 4 +- tests/auto/qcolor/tst_qcolor.cpp | 4 +- tests/auto/qcolordialog/tst_qcolordialog.cpp | 4 +- tests/auto/qcolumnview/tst_qcolumnview.cpp | 4 +- tests/auto/qcombobox/tst_qcombobox.cpp | 4 +- .../qcommandlinkbutton/tst_qcommandlinkbutton.cpp | 4 +- tests/auto/qcompleter/tst_qcompleter.cpp | 4 +- tests/auto/qcomplextext/bidireorderstring.h | 4 +- tests/auto/qcomplextext/tst_qcomplextext.cpp | 4 +- tests/auto/qcopchannel/testSend/main.cpp | 4 +- tests/auto/qcopchannel/tst_qcopchannel.cpp | 4 +- .../auto/qcoreapplication/tst_qcoreapplication.cpp | 4 +- .../qcryptographichash/tst_qcryptographichash.cpp | 4 +- tests/auto/qcssparser/tst_cssparser.cpp | 4 +- tests/auto/qdatastream/tst_qdatastream.cpp | 4 +- .../qdatawidgetmapper/tst_qdatawidgetmapper.cpp | 4 +- tests/auto/qdate/tst_qdate.cpp | 4 +- tests/auto/qdatetime/tst_qdatetime.cpp | 4 +- tests/auto/qdatetimeedit/tst_qdatetimeedit.cpp | 4 +- .../tst_qdbusabstractadaptor.cpp | 4 +- tests/auto/qdbusconnection/tst_qdbusconnection.cpp | 4 +- tests/auto/qdbuscontext/tst_qdbuscontext.cpp | 4 +- tests/auto/qdbusinterface/tst_qdbusinterface.cpp | 4 +- tests/auto/qdbuslocalcalls/tst_qdbuslocalcalls.cpp | 4 +- tests/auto/qdbusmarshall/common.h | 4 +- tests/auto/qdbusmarshall/dummy.cpp | 4 +- tests/auto/qdbusmarshall/qpong/qpong.cpp | 4 +- tests/auto/qdbusmarshall/tst_qdbusmarshall.cpp | 4 +- tests/auto/qdbusmetaobject/tst_qdbusmetaobject.cpp | 4 +- tests/auto/qdbusmetatype/tst_qdbusmetatype.cpp | 4 +- .../auto/qdbuspendingcall/tst_qdbuspendingcall.cpp | 4 +- .../qdbuspendingreply/tst_qdbuspendingreply.cpp | 4 +- tests/auto/qdbusperformance/server/server.cpp | 4 +- tests/auto/qdbusperformance/serverobject.h | 4 +- .../auto/qdbusperformance/tst_qdbusperformance.cpp | 4 +- tests/auto/qdbusreply/tst_qdbusreply.cpp | 4 +- tests/auto/qdbusserver/server.cpp | 4 +- tests/auto/qdbusserver/tst_qdbusserver.cpp | 4 +- tests/auto/qdbusthreading/tst_qdbusthreading.cpp | 4 +- tests/auto/qdbusxmlparser/tst_qdbusxmlparser.cpp | 4 +- tests/auto/qdebug/tst_qdebug.cpp | 4 +- .../auto/qdesktopservices/tst_qdesktopservices.cpp | 4 +- tests/auto/qdesktopwidget/tst_qdesktopwidget.cpp | 4 +- tests/auto/qdial/tst_qdial.cpp | 4 +- tests/auto/qdialog/tst_qdialog.cpp | 4 +- .../auto/qdialogbuttonbox/tst_qdialogbuttonbox.cpp | 4 +- tests/auto/qdir/testdir/dir/qrc_qdir.cpp | 4 +- tests/auto/qdir/testdir/dir/tst_qdir.cpp | 4 +- tests/auto/qdir/tst_qdir.cpp | 4 +- .../auto/qdirectpainter/runDirectPainter/main.cpp | 4 +- tests/auto/qdirectpainter/tst_qdirectpainter.cpp | 4 +- tests/auto/qdiriterator/tst_qdiriterator.cpp | 4 +- tests/auto/qdirmodel/tst_qdirmodel.cpp | 4 +- tests/auto/qdockwidget/tst_qdockwidget.cpp | 4 +- tests/auto/qdom/tst_qdom.cpp | 4 +- tests/auto/qdoublespinbox/tst_qdoublespinbox.cpp | 4 +- .../auto/qdoublevalidator/tst_qdoublevalidator.cpp | 4 +- tests/auto/qdrag/tst_qdrag.cpp | 4 +- tests/auto/qerrormessage/tst_qerrormessage.cpp | 4 +- tests/auto/qevent/tst_qevent.cpp | 4 +- tests/auto/qeventloop/tst_qeventloop.cpp | 4 +- .../tst_qexplicitlyshareddatapointer.cpp | 4 +- tests/auto/qfile/stdinprocess/main.cpp | 4 +- tests/auto/qfile/tst_qfile.cpp | 4 +- tests/auto/qfiledialog/tst_qfiledialog.cpp | 4 +- .../qfileiconprovider/tst_qfileiconprovider.cpp | 4 +- tests/auto/qfileinfo/tst_qfileinfo.cpp | 4 +- .../auto/qfilesystemmodel/tst_qfilesystemmodel.cpp | 4 +- .../qfilesystemwatcher/tst_qfilesystemwatcher.cpp | 4 +- tests/auto/qflags/tst_qflags.cpp | 4 +- tests/auto/qfocusevent/tst_qfocusevent.cpp | 4 +- tests/auto/qfocusframe/tst_qfocusframe.cpp | 4 +- tests/auto/qfont/tst_qfont.cpp | 4 +- tests/auto/qfontcombobox/tst_qfontcombobox.cpp | 4 +- tests/auto/qfontdatabase/tst_qfontdatabase.cpp | 4 +- tests/auto/qfontdialog/tst_qfontdialog.cpp | 4 +- tests/auto/qfontmetrics/tst_qfontmetrics.cpp | 4 +- tests/auto/qformlayout/tst_qformlayout.cpp | 4 +- tests/auto/qftp/tst_qftp.cpp | 4 +- tests/auto/qfuture/tst_qfuture.cpp | 4 +- tests/auto/qfuture/versioncheck.h | 4 +- tests/auto/qfuturewatcher/tst_qfuturewatcher.cpp | 4 +- tests/auto/qgetputenv/tst_qgetputenv.cpp | 4 +- tests/auto/qgl/tst_qgl.cpp | 4 +- tests/auto/qglobal/tst_qglobal.cpp | 4 +- .../tst_qgraphicsgridlayout.cpp | 4 +- tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp | 4 +- .../tst_qgraphicsitemanimation.cpp | 4 +- tests/auto/qgraphicslayout/tst_qgraphicslayout.cpp | 4 +- .../tst_qgraphicslayoutitem.cpp | 4 +- .../tst_qgraphicslinearlayout.cpp | 4 +- .../tst_qgraphicspixmapitem.cpp | 4 +- .../tst_qgraphicspolygonitem.cpp | 4 +- .../tst_qgraphicsproxywidget.cpp | 4 +- tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp | 4 +- tests/auto/qgraphicsview/tst_qgraphicsview.cpp | 4 +- tests/auto/qgraphicsview/tst_qgraphicsview_2.cpp | 4 +- tests/auto/qgraphicswidget/tst_qgraphicswidget.cpp | 4 +- tests/auto/qgridlayout/tst_qgridlayout.cpp | 4 +- tests/auto/qgroupbox/tst_qgroupbox.cpp | 4 +- tests/auto/qguivariant/tst_qguivariant.cpp | 4 +- tests/auto/qhash/tst_qhash.cpp | 4 +- tests/auto/qheaderview/tst_qheaderview.cpp | 4 +- .../qhelpcontentmodel/tst_qhelpcontentmodel.cpp | 4 +- tests/auto/qhelpenginecore/tst_qhelpenginecore.cpp | 4 +- tests/auto/qhelpgenerator/tst_qhelpgenerator.cpp | 4 +- tests/auto/qhelpindexmodel/tst_qhelpindexmodel.cpp | 4 +- .../auto/qhelpprojectdata/tst_qhelpprojectdata.cpp | 4 +- tests/auto/qhostaddress/tst_qhostaddress.cpp | 4 +- tests/auto/qhostinfo/tst_qhostinfo.cpp | 4 +- tests/auto/qhttp/dummyserver.h | 4 +- tests/auto/qhttp/tst_qhttp.cpp | 4 +- .../tst_qhttpnetworkconnection.cpp | 4 +- .../qhttpnetworkreply/tst_qhttpnetworkreply.cpp | 4 +- .../qhttpsocketengine/tst_qhttpsocketengine.cpp | 4 +- .../auto/qicoimageformat/tst_qticoimageformat.cpp | 4 +- tests/auto/qicon/tst_qicon.cpp | 4 +- tests/auto/qimage/tst_qimage.cpp | 4 +- tests/auto/qimageiohandler/tst_qimageiohandler.cpp | 4 +- tests/auto/qimagereader/tst_qimagereader.cpp | 4 +- tests/auto/qimagewriter/tst_qimagewriter.cpp | 4 +- tests/auto/qinputdialog/tst_qinputdialog.cpp | 4 +- tests/auto/qintvalidator/tst_qintvalidator.cpp | 4 +- tests/auto/qiodevice/tst_qiodevice.cpp | 4 +- tests/auto/qitemdelegate/tst_qitemdelegate.cpp | 4 +- .../qitemeditorfactory/tst_qitemeditorfactory.cpp | 4 +- tests/auto/qitemmodel/modelstotest.cpp | 4 +- tests/auto/qitemmodel/tst_qitemmodel.cpp | 6 +-- .../tst_qitemselectionmodel.cpp | 4 +- tests/auto/qitemview/tst_qitemview.cpp | 4 +- tests/auto/qitemview/viewstotest.cpp | 4 +- tests/auto/qkeyevent/tst_qkeyevent.cpp | 4 +- tests/auto/qkeysequence/tst_qkeysequence.cpp | 4 +- tests/auto/qlabel/tst_qlabel.cpp | 4 +- tests/auto/qlayout/tst_qlayout.cpp | 4 +- tests/auto/qlcdnumber/tst_qlcdnumber.cpp | 4 +- tests/auto/qlibrary/tst_qlibrary.cpp | 4 +- tests/auto/qline/tst_qline.cpp | 4 +- tests/auto/qlineedit/tst_qlineedit.cpp | 4 +- tests/auto/qlist/tst_qlist.cpp | 4 +- tests/auto/qlistview/tst_qlistview.cpp | 4 +- tests/auto/qlistwidget/tst_qlistwidget.cpp | 4 +- tests/auto/qlocale/syslocaleapp/syslocaleapp.cpp | 4 +- tests/auto/qlocale/tst_qlocale.cpp | 4 +- tests/auto/qlocalsocket/example/client/main.cpp | 4 +- tests/auto/qlocalsocket/example/server/main.cpp | 4 +- tests/auto/qlocalsocket/lackey/main.cpp | 4 +- tests/auto/qlocalsocket/tst_qlocalsocket.cpp | 4 +- tests/auto/qmacstyle/tst_qmacstyle.cpp | 4 +- tests/auto/qmainwindow/tst_qmainwindow.cpp | 4 +- tests/auto/qmake/testcompiler.cpp | 4 +- tests/auto/qmake/testcompiler.h | 4 +- tests/auto/qmake/testdata/findDeps/main.cpp | 4 +- tests/auto/qmake/testdata/findDeps/object1.h | 4 +- tests/auto/qmake/testdata/findDeps/object2.h | 4 +- tests/auto/qmake/testdata/findDeps/object3.h | 4 +- tests/auto/qmake/testdata/findDeps/object4.h | 4 +- tests/auto/qmake/testdata/findDeps/object5.h | 4 +- tests/auto/qmake/testdata/findDeps/object6.h | 4 +- tests/auto/qmake/testdata/findDeps/object7.h | 4 +- tests/auto/qmake/testdata/findDeps/object8.h | 4 +- tests/auto/qmake/testdata/findDeps/object9.h | 4 +- tests/auto/qmake/testdata/findMocs/main.cpp | 4 +- tests/auto/qmake/testdata/findMocs/object1.h | 4 +- tests/auto/qmake/testdata/findMocs/object2.h | 4 +- tests/auto/qmake/testdata/findMocs/object3.h | 4 +- tests/auto/qmake/testdata/findMocs/object4.h | 4 +- tests/auto/qmake/testdata/findMocs/object5.h | 4 +- tests/auto/qmake/testdata/findMocs/object6.h | 4 +- tests/auto/qmake/testdata/findMocs/object7.h | 4 +- tests/auto/qmake/testdata/functions/1.cpp | 4 +- tests/auto/qmake/testdata/functions/2.cpp | 4 +- tests/auto/qmake/testdata/functions/one/1.cpp | 4 +- tests/auto/qmake/testdata/functions/one/2.cpp | 4 +- .../qmake/testdata/functions/three/wildcard21.cpp | 4 +- .../qmake/testdata/functions/three/wildcard22.cpp | 4 +- tests/auto/qmake/testdata/functions/two/1.cpp | 4 +- tests/auto/qmake/testdata/functions/two/2.cpp | 4 +- tests/auto/qmake/testdata/functions/wildcard21.cpp | 4 +- tests/auto/qmake/testdata/functions/wildcard22.cpp | 4 +- tests/auto/qmake/testdata/include_dir/main.cpp | 4 +- .../auto/qmake/testdata/include_dir/test_file.cpp | 4 +- tests/auto/qmake/testdata/include_dir/test_file.h | 4 +- tests/auto/qmake/testdata/install_depends/main.cpp | 4 +- .../qmake/testdata/install_depends/test_file.cpp | 4 +- .../qmake/testdata/install_depends/test_file.h | 4 +- tests/auto/qmake/testdata/one_space/main.cpp | 4 +- tests/auto/qmake/testdata/quotedfilenames/main.cpp | 4 +- tests/auto/qmake/testdata/shadow_files/main.cpp | 4 +- .../auto/qmake/testdata/shadow_files/test_file.cpp | 4 +- tests/auto/qmake/testdata/shadow_files/test_file.h | 4 +- tests/auto/qmake/testdata/simple_app/main.cpp | 4 +- tests/auto/qmake/testdata/simple_app/test_file.cpp | 4 +- tests/auto/qmake/testdata/simple_app/test_file.h | 4 +- tests/auto/qmake/testdata/simple_dll/simple.cpp | 4 +- tests/auto/qmake/testdata/simple_dll/simple.h | 4 +- tests/auto/qmake/testdata/simple_lib/simple.cpp | 4 +- tests/auto/qmake/testdata/simple_lib/simple.h | 4 +- .../qmake/testdata/subdirs/simple_app/main.cpp | 4 +- .../testdata/subdirs/simple_app/test_file.cpp | 4 +- .../qmake/testdata/subdirs/simple_app/test_file.h | 4 +- .../qmake/testdata/subdirs/simple_dll/simple.cpp | 4 +- .../qmake/testdata/subdirs/simple_dll/simple.h | 4 +- tests/auto/qmake/tst_qmake.cpp | 4 +- tests/auto/qmap/tst_qmap.cpp | 4 +- tests/auto/qmdiarea/tst_qmdiarea.cpp | 4 +- tests/auto/qmdisubwindow/tst_qmdisubwindow.cpp | 4 +- tests/auto/qmenu/tst_qmenu.cpp | 4 +- tests/auto/qmenubar/tst_qmenubar.cpp | 4 +- tests/auto/qmessagebox/tst_qmessagebox.cpp | 4 +- tests/auto/qmetaobject/tst_qmetaobject.cpp | 4 +- tests/auto/qmetatype/tst_qmetatype.cpp | 4 +- tests/auto/qmouseevent/tst_qmouseevent.cpp | 4 +- .../qmouseevent_modal/tst_qmouseevent_modal.cpp | 4 +- tests/auto/qmovie/tst_qmovie.cpp | 4 +- tests/auto/qmultiscreen/tst_qmultiscreen.cpp | 4 +- tests/auto/qmutex/tst_qmutex.cpp | 4 +- tests/auto/qmutexlocker/tst_qmutexlocker.cpp | 4 +- .../tst_qnativesocketengine.cpp | 4 +- .../tst_qnetworkaddressentry.cpp | 4 +- .../tst_qnetworkcachemetadata.cpp | 4 +- tests/auto/qnetworkcookie/tst_qnetworkcookie.cpp | 4 +- .../qnetworkcookiejar/tst_qnetworkcookiejar.cpp | 4 +- .../qnetworkdiskcache/tst_qnetworkdiskcache.cpp | 4 +- .../qnetworkinterface/tst_qnetworkinterface.cpp | 4 +- tests/auto/qnetworkproxy/tst_qnetworkproxy.cpp | 4 +- tests/auto/qnetworkreply/echo/main.cpp | 4 +- tests/auto/qnetworkreply/tst_qnetworkreply.cpp | 4 +- tests/auto/qnetworkrequest/tst_qnetworkrequest.cpp | 4 +- tests/auto/qnumeric/tst_qnumeric.cpp | 4 +- tests/auto/qobject/signalbug.cpp | 4 +- tests/auto/qobject/signalbug.h | 4 +- tests/auto/qobject/tst_qobject.cpp | 4 +- .../qobjectperformance/tst_qobjectperformance.cpp | 4 +- tests/auto/qobjectrace/tst_qobjectrace.cpp | 4 +- tests/auto/qpaintengine/tst_qpaintengine.cpp | 4 +- tests/auto/qpainter/tst_qpainter.cpp | 4 +- tests/auto/qpainter/utils/createImages/main.cpp | 4 +- tests/auto/qpainterpath/tst_qpainterpath.cpp | 4 +- .../tst_qpainterpathstroker.cpp | 4 +- tests/auto/qpalette/tst_qpalette.cpp | 4 +- tests/auto/qpathclipper/paths.cpp | 4 +- tests/auto/qpathclipper/paths.h | 4 +- tests/auto/qpathclipper/tst_qpathclipper.cpp | 4 +- tests/auto/qpen/tst_qpen.cpp | 4 +- tests/auto/qpicture/tst_qpicture.cpp | 4 +- tests/auto/qpixmap/tst_qpixmap.cpp | 4 +- tests/auto/qpixmapcache/tst_qpixmapcache.cpp | 4 +- tests/auto/qpixmapfilter/tst_qpixmapfilter.cpp | 4 +- tests/auto/qplaintextedit/tst_qplaintextedit.cpp | 4 +- tests/auto/qplugin/debugplugin/main.cpp | 4 +- tests/auto/qplugin/releaseplugin/main.cpp | 4 +- tests/auto/qplugin/tst_qplugin.cpp | 4 +- .../qpluginloader/almostplugin/almostplugin.cpp | 4 +- .../auto/qpluginloader/almostplugin/almostplugin.h | 4 +- .../auto/qpluginloader/theplugin/plugininterface.h | 4 +- tests/auto/qpluginloader/theplugin/theplugin.cpp | 4 +- tests/auto/qpluginloader/theplugin/theplugin.h | 4 +- tests/auto/qpluginloader/tst_qpluginloader.cpp | 4 +- tests/auto/qpoint/tst_qpoint.cpp | 4 +- tests/auto/qpointarray/tst_qpointarray.cpp | 4 +- tests/auto/qpointer/tst_qpointer.cpp | 4 +- tests/auto/qprinter/tst_qprinter.cpp | 4 +- tests/auto/qprinterinfo/tst_qprinterinfo.cpp | 4 +- tests/auto/qprocess/fileWriterProcess/main.cpp | 4 +- tests/auto/qprocess/testDetached/main.cpp | 4 +- tests/auto/qprocess/testExitCodes/main.cpp | 4 +- tests/auto/qprocess/testGuiProcess/main.cpp | 4 +- tests/auto/qprocess/testProcessCrash/main.cpp | 4 +- .../qprocess/testProcessDeadWhileReading/main.cpp | 4 +- tests/auto/qprocess/testProcessEOF/main.cpp | 4 +- tests/auto/qprocess/testProcessEcho/main.cpp | 4 +- tests/auto/qprocess/testProcessEcho2/main.cpp | 4 +- tests/auto/qprocess/testProcessEcho3/main.cpp | 4 +- .../auto/qprocess/testProcessEchoGui/main_win.cpp | 4 +- tests/auto/qprocess/testProcessLoopback/main.cpp | 4 +- tests/auto/qprocess/testProcessNormal/main.cpp | 4 +- tests/auto/qprocess/testProcessOutput/main.cpp | 4 +- tests/auto/qprocess/testProcessSpacesArgs/main.cpp | 4 +- .../auto/qprocess/testSetWorkingDirectory/main.cpp | 4 +- tests/auto/qprocess/testSoftExit/main_unix.cpp | 4 +- tests/auto/qprocess/testSoftExit/main_win.cpp | 4 +- tests/auto/qprocess/testSpaceInName/main.cpp | 4 +- tests/auto/qprocess/tst_qprocess.cpp | 4 +- tests/auto/qprogressbar/tst_qprogressbar.cpp | 4 +- tests/auto/qprogressdialog/tst_qprogressdialog.cpp | 4 +- tests/auto/qpushbutton/tst_qpushbutton.cpp | 4 +- tests/auto/qqueue/tst_qqueue.cpp | 4 +- tests/auto/qradiobutton/tst_qradiobutton.cpp | 4 +- tests/auto/qrand/tst_qrand.cpp | 4 +- tests/auto/qreadlocker/tst_qreadlocker.cpp | 4 +- tests/auto/qreadwritelock/tst_qreadwritelock.cpp | 4 +- tests/auto/qrect/tst_qrect.cpp | 4 +- tests/auto/qregexp/tst_qregexp.cpp | 4 +- .../auto/qregexpvalidator/tst_qregexpvalidator.cpp | 4 +- tests/auto/qregion/tst_qregion.cpp | 4 +- tests/auto/qresourceengine/tst_resourceengine.cpp | 4 +- tests/auto/qscriptable/tst_qscriptable.cpp | 4 +- tests/auto/qscriptclass/tst_qscriptclass.cpp | 4 +- tests/auto/qscriptcontext/tst_qscriptcontext.cpp | 4 +- .../qscriptcontextinfo/tst_qscriptcontextinfo.cpp | 4 +- tests/auto/qscriptengine/tst_qscriptengine.cpp | 4 +- .../qscriptengineagent/tst_qscriptengineagent.cpp | 4 +- .../tst_qscriptenginedebugger.cpp | 4 +- .../qscriptjstestsuite/tst_qscriptjstestsuite.cpp | 4 +- tests/auto/qscriptqobject/tst_qscriptqobject.cpp | 4 +- tests/auto/qscriptstring/tst_qscriptstring.cpp | 4 +- .../qscriptv8testsuite/tst_qscriptv8testsuite.cpp | 4 +- tests/auto/qscriptvalue/tst_qscriptvalue.cpp | 4 +- .../tst_qscriptvalueiterator.cpp | 4 +- tests/auto/qscrollarea/tst_qscrollarea.cpp | 4 +- tests/auto/qscrollbar/tst_qscrollbar.cpp | 4 +- tests/auto/qsemaphore/tst_qsemaphore.cpp | 4 +- tests/auto/qset/tst_qset.cpp | 4 +- tests/auto/qsettings/tst_qsettings.cpp | 4 +- tests/auto/qsharedmemory/lackey/main.cpp | 4 +- .../qsharedmemory/qsystemlock/tst_qsystemlock.cpp | 4 +- tests/auto/qsharedmemory/src/qsystemlock.cpp | 4 +- tests/auto/qsharedmemory/src/qsystemlock.h | 4 +- tests/auto/qsharedmemory/src/qsystemlock_p.h | 4 +- tests/auto/qsharedmemory/src/qsystemlock_unix.cpp | 4 +- tests/auto/qsharedmemory/src/qsystemlock_win.cpp | 4 +- tests/auto/qsharedmemory/tst_qsharedmemory.cpp | 4 +- tests/auto/qsharedpointer/externaltests.cpp | 4 +- tests/auto/qsharedpointer/externaltests.h | 4 +- tests/auto/qsharedpointer/tst_qsharedpointer.cpp | 4 +- tests/auto/qshortcut/tst_qshortcut.cpp | 4 +- tests/auto/qsidebar/tst_qsidebar.cpp | 4 +- tests/auto/qsignalmapper/tst_qsignalmapper.cpp | 4 +- tests/auto/qsignalspy/tst_qsignalspy.cpp | 4 +- .../auto/qsimplexmlnodemodel/TestSimpleNodeModel.h | 4 +- .../tst_qsimplexmlnodemodel.cpp | 4 +- tests/auto/qsize/tst_qsize.cpp | 4 +- tests/auto/qsizef/tst_qsizef.cpp | 4 +- tests/auto/qsizegrip/tst_qsizegrip.cpp | 4 +- tests/auto/qslider/tst_qslider.cpp | 4 +- tests/auto/qsocketnotifier/tst_qsocketnotifier.cpp | 4 +- .../tst_qsocks5socketengine.cpp | 4 +- .../tst_qsortfilterproxymodel.cpp | 4 +- tests/auto/qsound/tst_qsound.cpp | 4 +- tests/auto/qsourcelocation/tst_qsourcelocation.cpp | 4 +- tests/auto/qspinbox/tst_qspinbox.cpp | 4 +- tests/auto/qsplitter/tst_qsplitter.cpp | 4 +- tests/auto/qsql/tst_qsql.cpp | 4 +- tests/auto/qsqldatabase/tst_databases.h | 4 +- tests/auto/qsqldatabase/tst_qsqldatabase.cpp | 4 +- tests/auto/qsqlerror/tst_qsqlerror.cpp | 4 +- tests/auto/qsqlfield/tst_qsqlfield.cpp | 4 +- tests/auto/qsqlquery/tst_qsqlquery.cpp | 4 +- tests/auto/qsqlquerymodel/tst_qsqlquerymodel.cpp | 4 +- tests/auto/qsqlrecord/tst_qsqlrecord.cpp | 4 +- .../tst_qsqlrelationaltablemodel.cpp | 4 +- tests/auto/qsqltablemodel/tst_qsqltablemodel.cpp | 4 +- tests/auto/qsqlthread/tst_qsqlthread.cpp | 4 +- tests/auto/qsslcertificate/tst_qsslcertificate.cpp | 4 +- tests/auto/qsslcipher/tst_qsslcipher.cpp | 4 +- tests/auto/qsslerror/tst_qsslerror.cpp | 4 +- tests/auto/qsslkey/tst_qsslkey.cpp | 4 +- tests/auto/qsslsocket/tst_qsslsocket.cpp | 4 +- tests/auto/qstackedlayout/tst_qstackedlayout.cpp | 4 +- tests/auto/qstackedwidget/tst_qstackedwidget.cpp | 4 +- tests/auto/qstandarditem/tst_qstandarditem.cpp | 4 +- .../qstandarditemmodel/tst_qstandarditemmodel.cpp | 4 +- tests/auto/qstatusbar/tst_qstatusbar.cpp | 4 +- tests/auto/qstl/tst_qstl.cpp | 4 +- tests/auto/qstring/double_data.h | 4 +- tests/auto/qstring/tst_qstring.cpp | 4 +- tests/auto/qstringlist/tst_qstringlist.cpp | 4 +- tests/auto/qstringlistmodel/qmodellistener.h | 4 +- .../auto/qstringlistmodel/tst_qstringlistmodel.cpp | 4 +- tests/auto/qstringmatcher/tst_qstringmatcher.cpp | 4 +- tests/auto/qstyle/tst_qstyle.cpp | 4 +- tests/auto/qstyleoption/tst_qstyleoption.cpp | 4 +- .../auto/qstylesheetstyle/tst_qstylesheetstyle.cpp | 4 +- tests/auto/qsvgdevice/tst_qsvgdevice.cpp | 4 +- tests/auto/qsvggenerator/tst_qsvggenerator.cpp | 4 +- tests/auto/qsvgrenderer/tst_qsvgrenderer.cpp | 4 +- .../qsyntaxhighlighter/tst_qsyntaxhighlighter.cpp | 4 +- tests/auto/qsysinfo/tst_qsysinfo.cpp | 4 +- .../auto/qsystemsemaphore/tst_qsystemsemaphore.cpp | 4 +- tests/auto/qsystemtrayicon/tst_qsystemtrayicon.cpp | 4 +- tests/auto/qtabbar/tst_qtabbar.cpp | 4 +- tests/auto/qtableview/tst_qtableview.cpp | 4 +- tests/auto/qtablewidget/tst_qtablewidget.cpp | 4 +- tests/auto/qtabwidget/tst_qtabwidget.cpp | 4 +- .../qtconcurrentfilter/tst_qtconcurrentfilter.cpp | 4 +- .../tst_qtconcurrentiteratekernel.cpp | 4 +- tests/auto/qtconcurrentmap/functions.h | 4 +- tests/auto/qtconcurrentmap/tst_qtconcurrentmap.cpp | 4 +- tests/auto/qtconcurrentrun/tst_qtconcurrentrun.cpp | 4 +- .../tst_qtconcurrentthreadengine.cpp | 4 +- tests/auto/qtcpserver/crashingServer/main.cpp | 4 +- tests/auto/qtcpserver/tst_qtcpserver.cpp | 4 +- tests/auto/qtcpsocket/stressTest/Test.cpp | 4 +- tests/auto/qtcpsocket/stressTest/Test.h | 4 +- tests/auto/qtcpsocket/stressTest/main.cpp | 4 +- tests/auto/qtcpsocket/tst_qtcpsocket.cpp | 4 +- tests/auto/qtemporaryfile/tst_qtemporaryfile.cpp | 4 +- tests/auto/qtessellator/XrenderFake.h | 4 +- tests/auto/qtessellator/arc.cpp | 4 +- tests/auto/qtessellator/arc.h | 4 +- tests/auto/qtessellator/dataparser.cpp | 4 +- tests/auto/qtessellator/dataparser.h | 4 +- tests/auto/qtessellator/oldtessellator.cpp | 4 +- tests/auto/qtessellator/oldtessellator.h | 4 +- tests/auto/qtessellator/qnum.h | 4 +- tests/auto/qtessellator/sample_data.h | 4 +- tests/auto/qtessellator/simple.cpp | 4 +- tests/auto/qtessellator/simple.h | 4 +- tests/auto/qtessellator/testtessellator.cpp | 4 +- tests/auto/qtessellator/testtessellator.h | 4 +- tests/auto/qtessellator/tst_tessellator.cpp | 4 +- tests/auto/qtessellator/utils.cpp | 4 +- tests/auto/qtessellator/utils.h | 4 +- tests/auto/qtextblock/tst_qtextblock.cpp | 4 +- .../tst_qtextboundaryfinder.cpp | 4 +- tests/auto/qtextbrowser/tst_qtextbrowser.cpp | 4 +- tests/auto/qtextcodec/echo/main.cpp | 4 +- tests/auto/qtextcodec/tst_qtextcodec.cpp | 4 +- tests/auto/qtextcursor/tst_qtextcursor.cpp | 4 +- tests/auto/qtextdocument/common.h | 4 +- tests/auto/qtextdocument/tst_qtextdocument.cpp | 4 +- .../tst_qtextdocumentfragment.cpp | 4 +- .../tst_qtextdocumentlayout.cpp | 4 +- tests/auto/qtextedit/tst_qtextedit.cpp | 4 +- tests/auto/qtextformat/tst_qtextformat.cpp | 4 +- tests/auto/qtextlayout/tst_qtextlayout.cpp | 4 +- tests/auto/qtextlist/tst_qtextlist.cpp | 4 +- tests/auto/qtextobject/tst_qtextobject.cpp | 4 +- tests/auto/qtextodfwriter/tst_qtextodfwriter.cpp | 4 +- tests/auto/qtextpiecetable/tst_qtextpiecetable.cpp | 4 +- tests/auto/qtextscriptengine/generate/main.cpp | 4 +- .../qtextscriptengine/tst_qtextscriptengine.cpp | 4 +- .../auto/qtextstream/readAllStdinProcess/main.cpp | 4 +- .../auto/qtextstream/readLineStdinProcess/main.cpp | 4 +- tests/auto/qtextstream/stdinProcess/main.cpp | 4 +- tests/auto/qtextstream/tst_qtextstream.cpp | 4 +- tests/auto/qtexttable/tst_qtexttable.cpp | 4 +- tests/auto/qthread/tst_qthread.cpp | 4 +- tests/auto/qthreadonce/qthreadonce.cpp | 4 +- tests/auto/qthreadonce/qthreadonce.h | 4 +- tests/auto/qthreadonce/tst_qthreadonce.cpp | 4 +- tests/auto/qthreadpool/tst_qthreadpool.cpp | 4 +- tests/auto/qthreadstorage/tst_qthreadstorage.cpp | 4 +- tests/auto/qtime/tst_qtime.cpp | 4 +- tests/auto/qtimeline/tst_qtimeline.cpp | 4 +- tests/auto/qtimer/tst_qtimer.cpp | 4 +- tests/auto/qtmd5/tst_qtmd5.cpp | 4 +- .../qtokenautomaton/tokenizers/basic/basic.cpp | 4 +- .../auto/qtokenautomaton/tokenizers/basic/basic.h | 4 +- .../tokenizers/basicNamespace/basicNamespace.cpp | 4 +- .../tokenizers/basicNamespace/basicNamespace.h | 4 +- .../tokenizers/boilerplate/boilerplate.cpp | 4 +- .../tokenizers/boilerplate/boilerplate.h | 4 +- .../tokenizers/boilerplate/boilerplate.xml | 4 +- .../tokenizers/noNamespace/noNamespace.cpp | 4 +- .../tokenizers/noNamespace/noNamespace.h | 4 +- .../tokenizers/noToString/noToString.cpp | 4 +- .../tokenizers/noToString/noToString.h | 4 +- .../tokenizers/withNamespace/withNamespace.cpp | 4 +- .../tokenizers/withNamespace/withNamespace.h | 4 +- tests/auto/qtokenautomaton/tst_qtokenautomaton.cpp | 4 +- tests/auto/qtoolbar/tst_qtoolbar.cpp | 4 +- tests/auto/qtoolbox/tst_qtoolbox.cpp | 4 +- tests/auto/qtoolbutton/tst_qtoolbutton.cpp | 4 +- tests/auto/qtooltip/tst_qtooltip.cpp | 4 +- tests/auto/qtransform/tst_qtransform.cpp | 4 +- .../qtransformedscreen/tst_qtransformedscreen.cpp | 4 +- tests/auto/qtranslator/tst_qtranslator.cpp | 4 +- tests/auto/qtreeview/tst_qtreeview.cpp | 4 +- tests/auto/qtreewidget/tst_qtreewidget.cpp | 4 +- .../tst_qtreewidgetitemiterator.cpp | 4 +- tests/auto/qtwidgets/mainwindow.cpp | 4 +- tests/auto/qtwidgets/mainwindow.h | 4 +- tests/auto/qtwidgets/tst_qtwidgets.cpp | 4 +- tests/auto/qudpsocket/clientserver/main.cpp | 4 +- tests/auto/qudpsocket/tst_qudpsocket.cpp | 4 +- tests/auto/qudpsocket/udpServer/main.cpp | 4 +- tests/auto/qundogroup/tst_qundogroup.cpp | 4 +- tests/auto/qundostack/tst_qundostack.cpp | 4 +- tests/auto/qurl/tst_qurl.cpp | 4 +- tests/auto/quuid/tst_quuid.cpp | 4 +- tests/auto/qvariant/tst_qvariant.cpp | 4 +- tests/auto/qvarlengtharray/tst_qvarlengtharray.cpp | 4 +- tests/auto/qvector/tst_qvector.cpp | 4 +- tests/auto/qwaitcondition/tst_qwaitcondition.cpp | 4 +- tests/auto/qwebframe/dummy.cpp | 4 +- tests/auto/qwebpage/dummy.cpp | 4 +- tests/auto/qwidget/tst_qwidget.cpp | 4 +- tests/auto/qwidget/tst_qwidget_mac_helpers.h | 4 +- tests/auto/qwidget_window/tst_qwidget_window.cpp | 4 +- tests/auto/qwidgetaction/tst_qwidgetaction.cpp | 4 +- tests/auto/qwindowsurface/tst_qwindowsurface.cpp | 4 +- .../qwineventnotifier/tst_qwineventnotifier.cpp | 4 +- tests/auto/qwizard/tst_qwizard.cpp | 4 +- tests/auto/qwmatrix/tst_qwmatrix.cpp | 4 +- tests/auto/qworkspace/tst_qworkspace.cpp | 4 +- tests/auto/qwritelocker/tst_qwritelocker.cpp | 4 +- tests/auto/qwsembedwidget/tst_qwsembedwidget.cpp | 4 +- tests/auto/qwsinputmethod/tst_qwsinputmethod.cpp | 4 +- tests/auto/qwswindowsystem/tst_qwswindowsystem.cpp | 4 +- tests/auto/qx11info/tst_qx11info.cpp | 4 +- tests/auto/qxml/tst_qxml.cpp | 4 +- tests/auto/qxmlformatter/tst_qxmlformatter.cpp | 4 +- tests/auto/qxmlinputsource/tst_qxmlinputsource.cpp | 4 +- tests/auto/qxmlitem/tst_qxmlitem.cpp | 4 +- tests/auto/qxmlname/tst_qxmlname.cpp | 4 +- tests/auto/qxmlnamepool/tst_qxmlnamepool.cpp | 4 +- .../qxmlnodemodelindex/tst_qxmlnodemodelindex.cpp | 4 +- tests/auto/qxmlquery/MessageSilencer.h | 4 +- tests/auto/qxmlquery/MessageValidator.cpp | 4 +- tests/auto/qxmlquery/MessageValidator.h | 4 +- tests/auto/qxmlquery/NetworkOverrider.h | 4 +- tests/auto/qxmlquery/PushBaseliner.h | 4 +- tests/auto/qxmlquery/TestFundament.cpp | 4 +- tests/auto/qxmlquery/TestFundament.h | 4 +- tests/auto/qxmlquery/tst_qxmlquery.cpp | 4 +- tests/auto/qxmlresultitems/tst_qxmlresultitems.cpp | 4 +- tests/auto/qxmlserializer/tst_qxmlserializer.cpp | 4 +- tests/auto/qxmlsimplereader/parser/main.cpp | 4 +- tests/auto/qxmlsimplereader/parser/parser.cpp | 4 +- tests/auto/qxmlsimplereader/parser/parser.h | 4 +- .../auto/qxmlsimplereader/tst_qxmlsimplereader.cpp | 4 +- tests/auto/qxmlstream/qc14n.h | 4 +- tests/auto/qxmlstream/tst_qxmlstream.cpp | 4 +- tests/auto/qzip/tst_qzip.cpp | 4 +- tests/auto/rcc/tst_rcc.cpp | 4 +- tests/auto/selftests/alive/qtestalive.cpp | 4 +- tests/auto/selftests/alive/tst_alive.cpp | 4 +- tests/auto/selftests/assert/tst_assert.cpp | 4 +- .../benchlibcallgrind/tst_benchlibcallgrind.cpp | 4 +- .../tst_benchlibeventcounter.cpp | 4 +- .../benchliboptions/tst_benchliboptions.cpp | 4 +- .../tst_benchlibtickcounter.cpp | 4 +- .../benchlibwalltime/tst_benchlibwalltime.cpp | 4 +- tests/auto/selftests/cmptest/tst_cmptest.cpp | 4 +- .../commandlinedata/tst_commandlinedata.cpp | 4 +- tests/auto/selftests/crashes/tst_crashes.cpp | 4 +- tests/auto/selftests/datatable/tst_datatable.cpp | 4 +- tests/auto/selftests/datetime/tst_datetime.cpp | 4 +- .../selftests/differentexec/tst_differentexec.cpp | 4 +- tests/auto/selftests/exception/tst_exception.cpp | 4 +- tests/auto/selftests/expectfail/tst_expectfail.cpp | 4 +- tests/auto/selftests/failinit/tst_failinit.cpp | 4 +- .../selftests/failinitdata/tst_failinitdata.cpp | 4 +- tests/auto/selftests/fetchbogus/tst_fetchbogus.cpp | 4 +- tests/auto/selftests/globaldata/tst_globaldata.cpp | 4 +- tests/auto/selftests/maxwarnings/maxwarnings.cpp | 4 +- tests/auto/selftests/multiexec/tst_multiexec.cpp | 4 +- .../qexecstringlist/tst_qexecstringlist.cpp | 4 +- tests/auto/selftests/singleskip/tst_singleskip.cpp | 4 +- tests/auto/selftests/skip/tst_skip.cpp | 4 +- tests/auto/selftests/skipglobal/tst_skipglobal.cpp | 4 +- tests/auto/selftests/skipinit/tst_skipinit.cpp | 4 +- .../selftests/skipinitdata/tst_skipinitdata.cpp | 4 +- tests/auto/selftests/sleep/tst_sleep.cpp | 4 +- tests/auto/selftests/strcmp/tst_strcmp.cpp | 4 +- tests/auto/selftests/subtest/tst_subtest.cpp | 4 +- tests/auto/selftests/tst_selftests.cpp | 4 +- .../waitwithoutgui/tst_waitwithoutgui.cpp | 4 +- tests/auto/selftests/warnings/tst_warnings.cpp | 4 +- tests/auto/symbols/tst_symbols.cpp | 4 +- tests/auto/uic/tst_uic.cpp | 4 +- tests/auto/uic3/tst_uic3.cpp | 4 +- tests/auto/uiloader/tst_screenshot/main.cpp | 4 +- tests/auto/uiloader/uiloader/tst_uiloader.cpp | 4 +- tests/auto/uiloader/uiloader/uiloader.cpp | 4 +- tests/auto/uiloader/uiloader/uiloader.h | 4 +- tests/auto/utf8/tst_utf8.cpp | 4 +- .../auto/windowsmobile/test/tst_windowsmobile.cpp | 4 +- tests/auto/xmlpatterns/tst_xmlpatterns.cpp | 4 +- .../test/tst_xmlpatternsdiagnosticsts.cpp | 4 +- .../xmlpatternsview/test/tst_xmlpatternsview.cpp | 4 +- .../view/FunctionSignaturesView.cpp | 8 ++-- .../xmlpatternsview/view/FunctionSignaturesView.h | 8 ++-- tests/auto/xmlpatternsview/view/MainWindow.cpp | 8 ++-- tests/auto/xmlpatternsview/view/MainWindow.h | 8 ++-- tests/auto/xmlpatternsview/view/TestCaseView.cpp | 8 ++-- tests/auto/xmlpatternsview/view/TestCaseView.h | 8 ++-- tests/auto/xmlpatternsview/view/TestResultView.cpp | 8 ++-- tests/auto/xmlpatternsview/view/TestResultView.h | 8 ++-- tests/auto/xmlpatternsview/view/TreeSortFilter.cpp | 8 ++-- tests/auto/xmlpatternsview/view/TreeSortFilter.h | 8 ++-- tests/auto/xmlpatternsview/view/UserTestCase.cpp | 8 ++-- tests/auto/xmlpatternsview/view/UserTestCase.h | 8 ++-- tests/auto/xmlpatternsview/view/XDTItemItem.cpp | 8 ++-- tests/auto/xmlpatternsview/view/XDTItemItem.h | 8 ++-- tests/auto/xmlpatternsview/view/main.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/ASTItem.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/ASTItem.h | 8 ++-- .../xmlpatternsxqts/lib/DebugExpressionFactory.cpp | 8 ++-- .../xmlpatternsxqts/lib/DebugExpressionFactory.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/ErrorHandler.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/ErrorHandler.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/ErrorItem.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/ErrorItem.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/ExitCode.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/ExpressionInfo.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/ExpressionInfo.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/ExpressionNamer.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/ExpressionNamer.h | 8 ++-- .../xmlpatternsxqts/lib/ExternalSourceLoader.cpp | 8 ++-- .../xmlpatternsxqts/lib/ExternalSourceLoader.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/Global.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/Global.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/ResultThreader.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/ResultThreader.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestBaseLine.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestBaseLine.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestCase.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestCase.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestContainer.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestContainer.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestGroup.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestGroup.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestItem.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestResult.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestResult.h | 8 ++-- .../auto/xmlpatternsxqts/lib/TestResultHandler.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestResultHandler.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestSuite.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestSuite.h | 8 ++-- .../auto/xmlpatternsxqts/lib/TestSuiteHandler.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestSuiteHandler.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestSuiteResult.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TestSuiteResult.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/TreeItem.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TreeItem.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/TreeModel.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/TreeModel.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/Worker.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/Worker.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/XMLWriter.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/XMLWriter.h | 8 ++-- tests/auto/xmlpatternsxqts/lib/XQTSTestCase.cpp | 8 ++-- tests/auto/xmlpatternsxqts/lib/XQTSTestCase.h | 8 ++-- .../xmlpatternsxqts/lib/XSLTTestSuiteHandler.cpp | 8 ++-- .../xmlpatternsxqts/lib/XSLTTestSuiteHandler.h | 8 ++-- .../lib/docs/XMLIndenterExample.cpp | 4 +- .../xmlpatternsxqts/lib/docs/XMLWriterExample.cpp | 4 +- .../xmlpatternsxqts/lib/tests/XMLWriterTest.cpp | 8 ++-- .../auto/xmlpatternsxqts/lib/tests/XMLWriterTest.h | 8 ++-- tests/auto/xmlpatternsxqts/test/tst_suitetest.cpp | 4 +- tests/auto/xmlpatternsxqts/test/tst_suitetest.h | 4 +- .../xmlpatternsxqts/test/tst_xmlpatternsxqts.cpp | 4 +- .../auto/xmlpatternsxslts/tst_xmlpatternsxslts.cpp | 4 +- tests/benchmarks/blendbench/main.cpp | 4 +- tests/benchmarks/containers-associative/main.cpp | 4 +- tests/benchmarks/containers-sequential/main.cpp | 4 +- tests/benchmarks/events/main.cpp | 4 +- tests/benchmarks/opengl/main.cpp | 4 +- tests/benchmarks/qapplication/main.cpp | 4 +- tests/benchmarks/qbytearray/main.cpp | 4 +- tests/benchmarks/qdiriterator/main.cpp | 4 +- .../qdiriterator/qfilesystemiterator.cpp | 4 +- .../benchmarks/qdiriterator/qfilesystemiterator.h | 4 +- tests/benchmarks/qfile/main.cpp | 4 +- .../qgraphicsscene/tst_qgraphicsscene.cpp | 4 +- .../qgraphicsview/benchapps/chipTest/chip.cpp | 4 +- .../qgraphicsview/benchapps/chipTest/chip.h | 4 +- .../qgraphicsview/benchapps/chipTest/main.cpp | 4 +- .../benchapps/chipTest/mainwindow.cpp | 4 +- .../qgraphicsview/benchapps/chipTest/mainwindow.h | 4 +- .../qgraphicsview/benchapps/chipTest/view.cpp | 4 +- .../qgraphicsview/benchapps/chipTest/view.h | 4 +- .../qgraphicsview/benchapps/moveItems/main.cpp | 4 +- .../qgraphicsview/benchapps/scrolltest/main.cpp | 4 +- tests/benchmarks/qgraphicsview/chiptester/chip.cpp | 4 +- tests/benchmarks/qgraphicsview/chiptester/chip.h | 4 +- .../qgraphicsview/chiptester/chiptester.cpp | 4 +- .../qgraphicsview/chiptester/chiptester.h | 4 +- .../benchmarks/qgraphicsview/tst_qgraphicsview.cpp | 4 +- .../qgraphicswidget/tst_qgraphicswidget.cpp | 2 +- tests/benchmarks/qimagereader/tst_qimagereader.cpp | 4 +- tests/benchmarks/qiodevice/main.cpp | 4 +- tests/benchmarks/qmetaobject/main.cpp | 4 +- tests/benchmarks/qobject/main.cpp | 4 +- tests/benchmarks/qobject/object.cpp | 4 +- tests/benchmarks/qobject/object.h | 4 +- tests/benchmarks/qpainter/tst_qpainter.cpp | 4 +- tests/benchmarks/qpixmap/tst_qpixmap.cpp | 4 +- tests/benchmarks/qrect/main.cpp | 4 +- tests/benchmarks/qregexp/main.cpp | 4 +- tests/benchmarks/qregion/main.cpp | 4 +- tests/benchmarks/qstringlist/main.cpp | 4 +- tests/benchmarks/qstylesheetstyle/main.cpp | 4 +- tests/benchmarks/qtemporaryfile/main.cpp | 4 +- tests/benchmarks/qtestlib-simple/main.cpp | 4 +- tests/benchmarks/qtransform/tst_qtransform.cpp | 4 +- tests/benchmarks/qtwidgets/mainwindow.cpp | 4 +- tests/benchmarks/qtwidgets/mainwindow.h | 4 +- tests/benchmarks/qtwidgets/tst_qtwidgets.cpp | 4 +- tests/benchmarks/qvariant/tst_qvariant.cpp | 4 +- tests/benchmarks/qwidget/tst_qwidget.cpp | 4 +- tests/shared/util.h | 4 +- tools/activeqt/dumpcpp/main.cpp | 4 +- tools/activeqt/dumpdoc/main.cpp | 4 +- tools/activeqt/testcon/ambientproperties.cpp | 4 +- tools/activeqt/testcon/ambientproperties.h | 4 +- tools/activeqt/testcon/ambientproperties.ui | 4 +- tools/activeqt/testcon/changeproperties.cpp | 4 +- tools/activeqt/testcon/changeproperties.h | 4 +- tools/activeqt/testcon/changeproperties.ui | 4 +- tools/activeqt/testcon/controlinfo.cpp | 4 +- tools/activeqt/testcon/controlinfo.h | 4 +- tools/activeqt/testcon/controlinfo.ui | 4 +- tools/activeqt/testcon/docuwindow.cpp | 4 +- tools/activeqt/testcon/docuwindow.h | 4 +- tools/activeqt/testcon/invokemethod.cpp | 4 +- tools/activeqt/testcon/invokemethod.h | 4 +- tools/activeqt/testcon/invokemethod.ui | 4 +- tools/activeqt/testcon/main.cpp | 4 +- tools/activeqt/testcon/mainwindow.cpp | 4 +- tools/activeqt/testcon/mainwindow.h | 4 +- tools/activeqt/testcon/mainwindow.ui | 4 +- tools/assistant/compat/config.cpp | 4 +- tools/assistant/compat/config.h | 4 +- tools/assistant/compat/docuparser.cpp | 4 +- tools/assistant/compat/docuparser.h | 4 +- tools/assistant/compat/fontsettingsdialog.cpp | 4 +- tools/assistant/compat/fontsettingsdialog.h | 4 +- tools/assistant/compat/helpdialog.cpp | 4 +- tools/assistant/compat/helpdialog.h | 4 +- tools/assistant/compat/helpdialog.ui | 4 +- tools/assistant/compat/helpwindow.cpp | 4 +- tools/assistant/compat/helpwindow.h | 4 +- tools/assistant/compat/index.cpp | 4 +- tools/assistant/compat/index.h | 4 +- tools/assistant/compat/lib/qassistantclient.cpp | 4 +- tools/assistant/compat/lib/qassistantclient.h | 4 +- .../assistant/compat/lib/qassistantclient_global.h | 4 +- tools/assistant/compat/main.cpp | 4 +- tools/assistant/compat/mainwindow.cpp | 4 +- tools/assistant/compat/mainwindow.h | 4 +- tools/assistant/compat/mainwindow.ui | 2 +- tools/assistant/compat/profile.cpp | 4 +- tools/assistant/compat/profile.h | 4 +- tools/assistant/compat/tabbedbrowser.cpp | 4 +- tools/assistant/compat/tabbedbrowser.h | 4 +- tools/assistant/compat/tabbedbrowser.ui | 4 +- tools/assistant/compat/topicchooser.cpp | 4 +- tools/assistant/compat/topicchooser.h | 4 +- tools/assistant/compat/topicchooser.ui | 4 +- tools/assistant/lib/fulltextsearch/qanalyzer.cpp | 2 +- tools/assistant/lib/fulltextsearch/qanalyzer_p.h | 2 +- .../lib/fulltextsearch/qclucene-config_p.h | 2 +- .../lib/fulltextsearch/qclucene_global_p.h | 2 +- tools/assistant/lib/fulltextsearch/qdocument.cpp | 2 +- tools/assistant/lib/fulltextsearch/qdocument_p.h | 2 +- tools/assistant/lib/fulltextsearch/qfield.cpp | 2 +- tools/assistant/lib/fulltextsearch/qfield_p.h | 2 +- tools/assistant/lib/fulltextsearch/qfilter.cpp | 2 +- tools/assistant/lib/fulltextsearch/qfilter_p.h | 2 +- tools/assistant/lib/fulltextsearch/qhits.cpp | 2 +- tools/assistant/lib/fulltextsearch/qhits_p.h | 2 +- .../assistant/lib/fulltextsearch/qindexreader.cpp | 2 +- .../assistant/lib/fulltextsearch/qindexreader_p.h | 2 +- .../assistant/lib/fulltextsearch/qindexwriter.cpp | 2 +- .../assistant/lib/fulltextsearch/qindexwriter_p.h | 2 +- tools/assistant/lib/fulltextsearch/qquery.cpp | 2 +- tools/assistant/lib/fulltextsearch/qquery_p.h | 2 +- .../assistant/lib/fulltextsearch/qqueryparser.cpp | 2 +- .../assistant/lib/fulltextsearch/qqueryparser_p.h | 2 +- tools/assistant/lib/fulltextsearch/qreader.cpp | 2 +- tools/assistant/lib/fulltextsearch/qreader_p.h | 2 +- tools/assistant/lib/fulltextsearch/qsearchable.cpp | 2 +- tools/assistant/lib/fulltextsearch/qsearchable_p.h | 2 +- tools/assistant/lib/fulltextsearch/qsort.cpp | 2 +- tools/assistant/lib/fulltextsearch/qsort_p.h | 2 +- tools/assistant/lib/fulltextsearch/qterm.cpp | 2 +- tools/assistant/lib/fulltextsearch/qterm_p.h | 2 +- tools/assistant/lib/fulltextsearch/qtoken.cpp | 2 +- tools/assistant/lib/fulltextsearch/qtoken_p.h | 2 +- tools/assistant/lib/fulltextsearch/qtokenizer.cpp | 2 +- tools/assistant/lib/fulltextsearch/qtokenizer_p.h | 2 +- .../assistant/lib/fulltextsearch/qtokenstream.cpp | 2 +- .../assistant/lib/fulltextsearch/qtokenstream_p.h | 2 +- tools/assistant/lib/qhelp_global.h | 4 +- tools/assistant/lib/qhelpcollectionhandler.cpp | 4 +- tools/assistant/lib/qhelpcollectionhandler_p.h | 4 +- tools/assistant/lib/qhelpcontentwidget.cpp | 4 +- tools/assistant/lib/qhelpcontentwidget.h | 4 +- tools/assistant/lib/qhelpdatainterface.cpp | 4 +- tools/assistant/lib/qhelpdatainterface_p.h | 4 +- tools/assistant/lib/qhelpdbreader.cpp | 4 +- tools/assistant/lib/qhelpdbreader_p.h | 4 +- tools/assistant/lib/qhelpengine.cpp | 4 +- tools/assistant/lib/qhelpengine.h | 4 +- tools/assistant/lib/qhelpengine_p.h | 4 +- tools/assistant/lib/qhelpenginecore.cpp | 4 +- tools/assistant/lib/qhelpenginecore.h | 4 +- tools/assistant/lib/qhelpgenerator.cpp | 4 +- tools/assistant/lib/qhelpgenerator_p.h | 4 +- tools/assistant/lib/qhelpindexwidget.cpp | 4 +- tools/assistant/lib/qhelpindexwidget.h | 4 +- tools/assistant/lib/qhelpprojectdata.cpp | 4 +- tools/assistant/lib/qhelpprojectdata_p.h | 4 +- tools/assistant/lib/qhelpsearchengine.cpp | 4 +- tools/assistant/lib/qhelpsearchengine.h | 4 +- tools/assistant/lib/qhelpsearchindex_default.cpp | 4 +- tools/assistant/lib/qhelpsearchindex_default_p.h | 4 +- .../lib/qhelpsearchindexreader_clucene.cpp | 4 +- .../lib/qhelpsearchindexreader_clucene_p.h | 4 +- .../lib/qhelpsearchindexreader_default.cpp | 4 +- .../lib/qhelpsearchindexreader_default_p.h | 4 +- .../lib/qhelpsearchindexwriter_clucene.cpp | 4 +- .../lib/qhelpsearchindexwriter_clucene_p.h | 4 +- .../lib/qhelpsearchindexwriter_default.cpp | 4 +- .../lib/qhelpsearchindexwriter_default_p.h | 4 +- tools/assistant/lib/qhelpsearchquerywidget.cpp | 4 +- tools/assistant/lib/qhelpsearchquerywidget.h | 4 +- tools/assistant/lib/qhelpsearchresultwidget.cpp | 4 +- tools/assistant/lib/qhelpsearchresultwidget.h | 4 +- tools/assistant/tools/assistant/aboutdialog.cpp | 4 +- tools/assistant/tools/assistant/aboutdialog.h | 4 +- .../assistant/tools/assistant/bookmarkmanager.cpp | 4 +- tools/assistant/tools/assistant/bookmarkmanager.h | 4 +- tools/assistant/tools/assistant/centralwidget.cpp | 4 +- tools/assistant/tools/assistant/centralwidget.h | 4 +- tools/assistant/tools/assistant/cmdlineparser.cpp | 4 +- tools/assistant/tools/assistant/cmdlineparser.h | 4 +- tools/assistant/tools/assistant/contentwindow.cpp | 4 +- tools/assistant/tools/assistant/contentwindow.h | 4 +- .../assistant/tools/assistant/filternamedialog.cpp | 4 +- tools/assistant/tools/assistant/filternamedialog.h | 4 +- tools/assistant/tools/assistant/helpviewer.cpp | 4 +- tools/assistant/tools/assistant/helpviewer.h | 4 +- tools/assistant/tools/assistant/indexwindow.cpp | 4 +- tools/assistant/tools/assistant/indexwindow.h | 4 +- tools/assistant/tools/assistant/installdialog.cpp | 4 +- tools/assistant/tools/assistant/installdialog.h | 4 +- tools/assistant/tools/assistant/main.cpp | 4 +- tools/assistant/tools/assistant/mainwindow.cpp | 4 +- tools/assistant/tools/assistant/mainwindow.h | 4 +- .../tools/assistant/preferencesdialog.cpp | 4 +- .../assistant/tools/assistant/preferencesdialog.h | 4 +- tools/assistant/tools/assistant/qtdocinstaller.cpp | 4 +- tools/assistant/tools/assistant/qtdocinstaller.h | 4 +- tools/assistant/tools/assistant/remotecontrol.cpp | 4 +- tools/assistant/tools/assistant/remotecontrol.h | 4 +- .../assistant/tools/assistant/remotecontrol_win.h | 4 +- tools/assistant/tools/assistant/searchwidget.cpp | 4 +- tools/assistant/tools/assistant/searchwidget.h | 4 +- tools/assistant/tools/assistant/topicchooser.cpp | 4 +- tools/assistant/tools/assistant/topicchooser.h | 4 +- .../assistant/tools/qcollectiongenerator/main.cpp | 4 +- tools/assistant/tools/qhelpconverter/adpreader.cpp | 4 +- tools/assistant/tools/qhelpconverter/adpreader.h | 4 +- .../tools/qhelpconverter/conversionwizard.cpp | 4 +- .../tools/qhelpconverter/conversionwizard.h | 4 +- tools/assistant/tools/qhelpconverter/filespage.cpp | 4 +- tools/assistant/tools/qhelpconverter/filespage.h | 4 +- .../assistant/tools/qhelpconverter/filterpage.cpp | 4 +- tools/assistant/tools/qhelpconverter/filterpage.h | 4 +- .../assistant/tools/qhelpconverter/finishpage.cpp | 4 +- tools/assistant/tools/qhelpconverter/finishpage.h | 4 +- .../assistant/tools/qhelpconverter/generalpage.cpp | 4 +- tools/assistant/tools/qhelpconverter/generalpage.h | 4 +- .../assistant/tools/qhelpconverter/helpwindow.cpp | 4 +- tools/assistant/tools/qhelpconverter/helpwindow.h | 4 +- .../tools/qhelpconverter/identifierpage.cpp | 4 +- .../tools/qhelpconverter/identifierpage.h | 4 +- tools/assistant/tools/qhelpconverter/inputpage.cpp | 4 +- tools/assistant/tools/qhelpconverter/inputpage.h | 4 +- tools/assistant/tools/qhelpconverter/main.cpp | 4 +- .../assistant/tools/qhelpconverter/outputpage.cpp | 4 +- tools/assistant/tools/qhelpconverter/outputpage.h | 4 +- tools/assistant/tools/qhelpconverter/pathpage.cpp | 4 +- tools/assistant/tools/qhelpconverter/pathpage.h | 4 +- .../assistant/tools/qhelpconverter/qhcpwriter.cpp | 4 +- tools/assistant/tools/qhelpconverter/qhcpwriter.h | 4 +- tools/assistant/tools/qhelpconverter/qhpwriter.cpp | 4 +- tools/assistant/tools/qhelpconverter/qhpwriter.h | 4 +- tools/assistant/tools/qhelpgenerator/main.cpp | 4 +- tools/assistant/tools/shared/helpgenerator.cpp | 4 +- tools/assistant/tools/shared/helpgenerator.h | 4 +- tools/checksdk/cesdkhandler.cpp | 4 +- tools/checksdk/cesdkhandler.h | 4 +- tools/checksdk/main.cpp | 4 +- tools/configure/configure_pch.h | 4 +- tools/configure/configureapp.cpp | 4 +- tools/configure/configureapp.h | 4 +- tools/configure/environment.cpp | 4 +- tools/configure/environment.h | 4 +- tools/configure/main.cpp | 4 +- tools/configure/tools.cpp | 4 +- tools/configure/tools.h | 4 +- tools/designer/data/generate_header.xsl | 4 +- tools/designer/data/generate_impl.xsl | 4 +- .../src/components/buddyeditor/buddyeditor.cpp | 4 +- .../src/components/buddyeditor/buddyeditor.h | 4 +- .../components/buddyeditor/buddyeditor_global.h | 4 +- .../buddyeditor/buddyeditor_instance.cpp | 4 +- .../components/buddyeditor/buddyeditor_plugin.cpp | 4 +- .../components/buddyeditor/buddyeditor_plugin.h | 4 +- .../components/buddyeditor/buddyeditor_tool.cpp | 4 +- .../src/components/buddyeditor/buddyeditor_tool.h | 4 +- .../components/formeditor/brushmanagerproxy.cpp | 4 +- .../src/components/formeditor/brushmanagerproxy.h | 4 +- .../formeditor/default_actionprovider.cpp | 4 +- .../components/formeditor/default_actionprovider.h | 4 +- .../components/formeditor/default_container.cpp | 4 +- .../src/components/formeditor/default_container.h | 4 +- .../formeditor/default_layoutdecoration.cpp | 4 +- .../formeditor/default_layoutdecoration.h | 4 +- .../components/formeditor/deviceprofiledialog.cpp | 4 +- .../components/formeditor/deviceprofiledialog.h | 4 +- .../src/components/formeditor/dpi_chooser.cpp | 4 +- .../src/components/formeditor/dpi_chooser.h | 4 +- .../components/formeditor/embeddedoptionspage.cpp | 4 +- .../components/formeditor/embeddedoptionspage.h | 4 +- .../src/components/formeditor/formeditor.cpp | 4 +- .../src/components/formeditor/formeditor.h | 4 +- .../src/components/formeditor/formeditor_global.h | 4 +- .../formeditor/formeditor_optionspage.cpp | 4 +- .../components/formeditor/formeditor_optionspage.h | 4 +- .../src/components/formeditor/formwindow.cpp | 4 +- .../src/components/formeditor/formwindow.h | 4 +- .../components/formeditor/formwindow_dnditem.cpp | 4 +- .../src/components/formeditor/formwindow_dnditem.h | 4 +- .../formeditor/formwindow_widgetstack.cpp | 4 +- .../components/formeditor/formwindow_widgetstack.h | 4 +- .../src/components/formeditor/formwindowcursor.cpp | 4 +- .../src/components/formeditor/formwindowcursor.h | 4 +- .../components/formeditor/formwindowmanager.cpp | 4 +- .../src/components/formeditor/formwindowmanager.h | 4 +- .../components/formeditor/formwindowsettings.cpp | 4 +- .../src/components/formeditor/formwindowsettings.h | 4 +- .../components/formeditor/formwindowsettings.ui | 4 +- .../src/components/formeditor/iconcache.cpp | 4 +- .../designer/src/components/formeditor/iconcache.h | 4 +- .../formeditor/itemview_propertysheet.cpp | 4 +- .../components/formeditor/itemview_propertysheet.h | 4 +- .../components/formeditor/layout_propertysheet.cpp | 4 +- .../components/formeditor/layout_propertysheet.h | 4 +- .../components/formeditor/line_propertysheet.cpp | 4 +- .../src/components/formeditor/line_propertysheet.h | 4 +- .../components/formeditor/previewactiongroup.cpp | 4 +- .../src/components/formeditor/previewactiongroup.h | 4 +- .../components/formeditor/qdesigner_resource.cpp | 4 +- .../src/components/formeditor/qdesigner_resource.h | 4 +- .../formeditor/qlayoutwidget_propertysheet.cpp | 4 +- .../formeditor/qlayoutwidget_propertysheet.h | 4 +- .../formeditor/qmainwindow_container.cpp | 4 +- .../components/formeditor/qmainwindow_container.h | 4 +- .../components/formeditor/qmdiarea_container.cpp | 4 +- .../src/components/formeditor/qmdiarea_container.h | 4 +- .../src/components/formeditor/qtbrushmanager.cpp | 4 +- .../src/components/formeditor/qtbrushmanager.h | 4 +- .../components/formeditor/qwizard_container.cpp | 4 +- .../src/components/formeditor/qwizard_container.h | 4 +- .../components/formeditor/qworkspace_container.cpp | 4 +- .../components/formeditor/qworkspace_container.h | 4 +- .../components/formeditor/spacer_propertysheet.cpp | 4 +- .../components/formeditor/spacer_propertysheet.h | 4 +- .../components/formeditor/templateoptionspage.cpp | 4 +- .../components/formeditor/templateoptionspage.h | 4 +- .../components/formeditor/tool_widgeteditor.cpp | 4 +- .../src/components/formeditor/tool_widgeteditor.h | 4 +- .../src/components/formeditor/widgetselection.cpp | 4 +- .../src/components/formeditor/widgetselection.h | 4 +- tools/designer/src/components/lib/lib_pch.h | 4 +- .../src/components/lib/qdesigner_components.cpp | 4 +- .../components/objectinspector/objectinspector.cpp | 4 +- .../components/objectinspector/objectinspector.h | 4 +- .../objectinspector/objectinspector_global.h | 4 +- .../objectinspector/objectinspectormodel.cpp | 4 +- .../objectinspector/objectinspectormodel_p.h | 4 +- .../propertyeditor/brushpropertymanager.cpp | 4 +- .../propertyeditor/brushpropertymanager.h | 4 +- .../src/components/propertyeditor/defs.cpp | 4 +- .../designer/src/components/propertyeditor/defs.h | 4 +- .../propertyeditor/designerpropertymanager.cpp | 4 +- .../propertyeditor/designerpropertymanager.h | 4 +- .../src/components/propertyeditor/fontmapping.xml | 4 +- .../propertyeditor/fontpropertymanager.cpp | 4 +- .../propertyeditor/fontpropertymanager.h | 4 +- .../propertyeditor/newdynamicpropertydialog.cpp | 4 +- .../propertyeditor/newdynamicpropertydialog.h | 4 +- .../components/propertyeditor/paletteeditor.cpp | 4 +- .../src/components/propertyeditor/paletteeditor.h | 4 +- .../src/components/propertyeditor/paletteeditor.ui | 4 +- .../propertyeditor/paletteeditorbutton.cpp | 4 +- .../propertyeditor/paletteeditorbutton.h | 4 +- .../src/components/propertyeditor/previewframe.cpp | 4 +- .../src/components/propertyeditor/previewframe.h | 4 +- .../components/propertyeditor/previewwidget.cpp | 4 +- .../src/components/propertyeditor/previewwidget.h | 4 +- .../src/components/propertyeditor/previewwidget.ui | 4 +- .../components/propertyeditor/propertyeditor.cpp | 4 +- .../src/components/propertyeditor/propertyeditor.h | 4 +- .../propertyeditor/propertyeditor_global.h | 4 +- .../propertyeditor/qlonglongvalidator.cpp | 4 +- .../components/propertyeditor/qlonglongvalidator.h | 4 +- .../components/propertyeditor/stringlisteditor.cpp | 4 +- .../components/propertyeditor/stringlisteditor.h | 4 +- .../components/propertyeditor/stringlisteditor.ui | 4 +- .../propertyeditor/stringlisteditorbutton.cpp | 4 +- .../propertyeditor/stringlisteditorbutton.h | 4 +- .../components/signalsloteditor/connectdialog.cpp | 4 +- .../components/signalsloteditor/connectdialog_p.h | 4 +- .../signalsloteditor/signalslot_utils.cpp | 4 +- .../signalsloteditor/signalslot_utils_p.h | 4 +- .../signalsloteditor/signalsloteditor.cpp | 4 +- .../components/signalsloteditor/signalsloteditor.h | 4 +- .../signalsloteditor/signalsloteditor_global.h | 4 +- .../signalsloteditor/signalsloteditor_instance.cpp | 4 +- .../signalsloteditor/signalsloteditor_p.h | 4 +- .../signalsloteditor/signalsloteditor_plugin.cpp | 4 +- .../signalsloteditor/signalsloteditor_plugin.h | 4 +- .../signalsloteditor/signalsloteditor_tool.cpp | 4 +- .../signalsloteditor/signalsloteditor_tool.h | 4 +- .../signalsloteditor/signalsloteditorwindow.cpp | 4 +- .../signalsloteditor/signalsloteditorwindow.h | 4 +- .../components/tabordereditor/tabordereditor.cpp | 4 +- .../src/components/tabordereditor/tabordereditor.h | 4 +- .../tabordereditor/tabordereditor_global.h | 4 +- .../tabordereditor/tabordereditor_instance.cpp | 4 +- .../tabordereditor/tabordereditor_plugin.cpp | 4 +- .../tabordereditor/tabordereditor_plugin.h | 4 +- .../tabordereditor/tabordereditor_tool.cpp | 4 +- .../tabordereditor/tabordereditor_tool.h | 4 +- .../src/components/taskmenu/button_taskmenu.cpp | 4 +- .../src/components/taskmenu/button_taskmenu.h | 4 +- .../src/components/taskmenu/combobox_taskmenu.cpp | 4 +- .../src/components/taskmenu/combobox_taskmenu.h | 4 +- .../taskmenu/containerwidget_taskmenu.cpp | 4 +- .../components/taskmenu/containerwidget_taskmenu.h | 4 +- .../src/components/taskmenu/groupbox_taskmenu.cpp | 4 +- .../src/components/taskmenu/groupbox_taskmenu.h | 4 +- .../src/components/taskmenu/inplace_editor.cpp | 4 +- .../src/components/taskmenu/inplace_editor.h | 4 +- .../components/taskmenu/inplace_widget_helper.cpp | 4 +- .../components/taskmenu/inplace_widget_helper.h | 4 +- .../src/components/taskmenu/itemlisteditor.cpp | 4 +- .../src/components/taskmenu/itemlisteditor.h | 4 +- .../src/components/taskmenu/itemlisteditor.ui | 4 +- .../src/components/taskmenu/label_taskmenu.cpp | 4 +- .../src/components/taskmenu/label_taskmenu.h | 4 +- .../src/components/taskmenu/layouttaskmenu.cpp | 4 +- .../src/components/taskmenu/layouttaskmenu.h | 4 +- .../src/components/taskmenu/lineedit_taskmenu.cpp | 4 +- .../src/components/taskmenu/lineedit_taskmenu.h | 4 +- .../components/taskmenu/listwidget_taskmenu.cpp | 4 +- .../src/components/taskmenu/listwidget_taskmenu.h | 4 +- .../src/components/taskmenu/listwidgeteditor.cpp | 4 +- .../src/components/taskmenu/listwidgeteditor.h | 4 +- .../src/components/taskmenu/menutaskmenu.cpp | 4 +- .../src/components/taskmenu/menutaskmenu.h | 4 +- .../components/taskmenu/tablewidget_taskmenu.cpp | 4 +- .../src/components/taskmenu/tablewidget_taskmenu.h | 4 +- .../src/components/taskmenu/tablewidgeteditor.cpp | 4 +- .../src/components/taskmenu/tablewidgeteditor.h | 4 +- .../src/components/taskmenu/tablewidgeteditor.ui | 4 +- .../src/components/taskmenu/taskmenu_component.cpp | 4 +- .../src/components/taskmenu/taskmenu_component.h | 4 +- .../src/components/taskmenu/taskmenu_global.h | 4 +- .../src/components/taskmenu/textedit_taskmenu.cpp | 4 +- .../src/components/taskmenu/textedit_taskmenu.h | 4 +- .../src/components/taskmenu/toolbar_taskmenu.cpp | 4 +- .../src/components/taskmenu/toolbar_taskmenu.h | 4 +- .../components/taskmenu/treewidget_taskmenu.cpp | 4 +- .../src/components/taskmenu/treewidget_taskmenu.h | 4 +- .../src/components/taskmenu/treewidgeteditor.cpp | 4 +- .../src/components/taskmenu/treewidgeteditor.h | 4 +- .../src/components/taskmenu/treewidgeteditor.ui | 4 +- .../src/components/widgetbox/widgetbox.cpp | 4 +- .../designer/src/components/widgetbox/widgetbox.h | 4 +- .../src/components/widgetbox/widgetbox.xml | 4 +- .../src/components/widgetbox/widgetbox_dnditem.cpp | 4 +- .../src/components/widgetbox/widgetbox_dnditem.h | 4 +- .../src/components/widgetbox/widgetbox_global.h | 4 +- .../widgetbox/widgetboxcategorylistview.cpp | 4 +- .../widgetbox/widgetboxcategorylistview.h | 4 +- .../components/widgetbox/widgetboxtreewidget.cpp | 4 +- .../src/components/widgetbox/widgetboxtreewidget.h | 4 +- tools/designer/src/designer/appfontdialog.cpp | 4 +- tools/designer/src/designer/appfontdialog.h | 4 +- tools/designer/src/designer/assistantclient.cpp | 4 +- tools/designer/src/designer/assistantclient.h | 4 +- tools/designer/src/designer/designer_enums.h | 4 +- tools/designer/src/designer/main.cpp | 4 +- tools/designer/src/designer/mainwindow.cpp | 4 +- tools/designer/src/designer/mainwindow.h | 4 +- tools/designer/src/designer/newform.cpp | 4 +- tools/designer/src/designer/newform.h | 4 +- tools/designer/src/designer/preferencesdialog.cpp | 4 +- tools/designer/src/designer/preferencesdialog.h | 4 +- tools/designer/src/designer/qdesigner.cpp | 4 +- tools/designer/src/designer/qdesigner.h | 4 +- tools/designer/src/designer/qdesigner_actions.cpp | 4 +- tools/designer/src/designer/qdesigner_actions.h | 4 +- .../src/designer/qdesigner_appearanceoptions.cpp | 4 +- .../src/designer/qdesigner_appearanceoptions.h | 4 +- .../designer/src/designer/qdesigner_formwindow.cpp | 4 +- tools/designer/src/designer/qdesigner_formwindow.h | 4 +- tools/designer/src/designer/qdesigner_pch.h | 4 +- tools/designer/src/designer/qdesigner_server.cpp | 4 +- tools/designer/src/designer/qdesigner_server.h | 4 +- tools/designer/src/designer/qdesigner_settings.cpp | 4 +- tools/designer/src/designer/qdesigner_settings.h | 4 +- .../designer/src/designer/qdesigner_toolwindow.cpp | 4 +- tools/designer/src/designer/qdesigner_toolwindow.h | 4 +- .../designer/src/designer/qdesigner_workbench.cpp | 4 +- tools/designer/src/designer/qdesigner_workbench.h | 4 +- tools/designer/src/designer/saveformastemplate.cpp | 4 +- tools/designer/src/designer/saveformastemplate.h | 4 +- tools/designer/src/designer/saveformastemplate.ui | 4 +- tools/designer/src/designer/versiondialog.cpp | 4 +- tools/designer/src/designer/versiondialog.h | 4 +- .../src/lib/components/qdesigner_components.h | 4 +- .../lib/components/qdesigner_components_global.h | 4 +- .../src/lib/extension/default_extensionfactory.cpp | 4 +- .../src/lib/extension/default_extensionfactory.h | 4 +- tools/designer/src/lib/extension/extension.cpp | 4 +- tools/designer/src/lib/extension/extension.h | 4 +- .../designer/src/lib/extension/extension_global.h | 4 +- .../src/lib/extension/qextensionmanager.cpp | 4 +- .../designer/src/lib/extension/qextensionmanager.h | 4 +- tools/designer/src/lib/lib_pch.h | 4 +- .../designer/src/lib/sdk/abstractactioneditor.cpp | 4 +- tools/designer/src/lib/sdk/abstractactioneditor.h | 4 +- tools/designer/src/lib/sdk/abstractbrushmanager.h | 4 +- tools/designer/src/lib/sdk/abstractdialoggui.cpp | 4 +- tools/designer/src/lib/sdk/abstractdialoggui_p.h | 4 +- tools/designer/src/lib/sdk/abstractdnditem.h | 4 +- tools/designer/src/lib/sdk/abstractformeditor.cpp | 4 +- tools/designer/src/lib/sdk/abstractformeditor.h | 4 +- .../src/lib/sdk/abstractformeditorplugin.cpp | 4 +- .../src/lib/sdk/abstractformeditorplugin.h | 4 +- tools/designer/src/lib/sdk/abstractformwindow.cpp | 4 +- tools/designer/src/lib/sdk/abstractformwindow.h | 4 +- .../src/lib/sdk/abstractformwindowcursor.cpp | 4 +- .../src/lib/sdk/abstractformwindowcursor.h | 4 +- .../src/lib/sdk/abstractformwindowmanager.cpp | 4 +- .../src/lib/sdk/abstractformwindowmanager.h | 4 +- .../src/lib/sdk/abstractformwindowtool.cpp | 4 +- .../designer/src/lib/sdk/abstractformwindowtool.h | 4 +- tools/designer/src/lib/sdk/abstracticoncache.h | 4 +- tools/designer/src/lib/sdk/abstractintegration.cpp | 4 +- tools/designer/src/lib/sdk/abstractintegration.h | 4 +- .../designer/src/lib/sdk/abstractintrospection.cpp | 4 +- .../designer/src/lib/sdk/abstractintrospection_p.h | 4 +- tools/designer/src/lib/sdk/abstractlanguage.h | 4 +- .../designer/src/lib/sdk/abstractmetadatabase.cpp | 4 +- tools/designer/src/lib/sdk/abstractmetadatabase.h | 4 +- .../designer/src/lib/sdk/abstractnewformwidget.cpp | 4 +- .../designer/src/lib/sdk/abstractnewformwidget_p.h | 4 +- .../src/lib/sdk/abstractobjectinspector.cpp | 4 +- .../designer/src/lib/sdk/abstractobjectinspector.h | 4 +- tools/designer/src/lib/sdk/abstractoptionspage_p.h | 4 +- .../src/lib/sdk/abstractpromotioninterface.cpp | 4 +- .../src/lib/sdk/abstractpromotioninterface.h | 4 +- .../src/lib/sdk/abstractpropertyeditor.cpp | 4 +- .../designer/src/lib/sdk/abstractpropertyeditor.h | 4 +- .../src/lib/sdk/abstractresourcebrowser.cpp | 4 +- .../designer/src/lib/sdk/abstractresourcebrowser.h | 4 +- tools/designer/src/lib/sdk/abstractsettings_p.h | 4 +- tools/designer/src/lib/sdk/abstractwidgetbox.cpp | 4 +- tools/designer/src/lib/sdk/abstractwidgetbox.h | 4 +- .../src/lib/sdk/abstractwidgetdatabase.cpp | 4 +- .../designer/src/lib/sdk/abstractwidgetdatabase.h | 4 +- .../designer/src/lib/sdk/abstractwidgetfactory.cpp | 4 +- tools/designer/src/lib/sdk/abstractwidgetfactory.h | 4 +- tools/designer/src/lib/sdk/dynamicpropertysheet.h | 4 +- tools/designer/src/lib/sdk/extrainfo.cpp | 4 +- tools/designer/src/lib/sdk/extrainfo.h | 4 +- tools/designer/src/lib/sdk/layoutdecoration.h | 4 +- tools/designer/src/lib/sdk/membersheet.h | 4 +- tools/designer/src/lib/sdk/propertysheet.h | 4 +- tools/designer/src/lib/sdk/script.cpp | 4 +- tools/designer/src/lib/sdk/script_p.h | 4 +- tools/designer/src/lib/sdk/sdk_global.h | 4 +- tools/designer/src/lib/sdk/taskmenu.h | 4 +- tools/designer/src/lib/shared/actioneditor.cpp | 4 +- tools/designer/src/lib/shared/actioneditor_p.h | 4 +- tools/designer/src/lib/shared/actionprovider_p.h | 4 +- tools/designer/src/lib/shared/actionrepository.cpp | 4 +- tools/designer/src/lib/shared/actionrepository_p.h | 4 +- tools/designer/src/lib/shared/codedialog.cpp | 4 +- tools/designer/src/lib/shared/codedialog_p.h | 4 +- tools/designer/src/lib/shared/connectionedit.cpp | 4 +- tools/designer/src/lib/shared/connectionedit_p.h | 4 +- tools/designer/src/lib/shared/csshighlighter.cpp | 4 +- tools/designer/src/lib/shared/csshighlighter_p.h | 4 +- tools/designer/src/lib/shared/deviceprofile.cpp | 4 +- tools/designer/src/lib/shared/deviceprofile_p.h | 4 +- tools/designer/src/lib/shared/dialoggui.cpp | 4 +- tools/designer/src/lib/shared/dialoggui_p.h | 4 +- tools/designer/src/lib/shared/extensionfactory_p.h | 4 +- tools/designer/src/lib/shared/filterwidget.cpp | 4 +- tools/designer/src/lib/shared/filterwidget_p.h | 4 +- tools/designer/src/lib/shared/formlayoutmenu.cpp | 4 +- tools/designer/src/lib/shared/formlayoutmenu_p.h | 4 +- tools/designer/src/lib/shared/formwindowbase.cpp | 4 +- tools/designer/src/lib/shared/formwindowbase_p.h | 4 +- tools/designer/src/lib/shared/grid.cpp | 4 +- tools/designer/src/lib/shared/grid_p.h | 4 +- tools/designer/src/lib/shared/gridpanel.cpp | 4 +- tools/designer/src/lib/shared/gridpanel_p.h | 4 +- tools/designer/src/lib/shared/htmlhighlighter.cpp | 4 +- tools/designer/src/lib/shared/htmlhighlighter_p.h | 4 +- tools/designer/src/lib/shared/iconloader.cpp | 4 +- tools/designer/src/lib/shared/iconloader_p.h | 4 +- tools/designer/src/lib/shared/iconselector.cpp | 4 +- tools/designer/src/lib/shared/iconselector_p.h | 4 +- tools/designer/src/lib/shared/invisible_widget.cpp | 4 +- tools/designer/src/lib/shared/invisible_widget_p.h | 4 +- tools/designer/src/lib/shared/layout.cpp | 4 +- tools/designer/src/lib/shared/layout_p.h | 4 +- tools/designer/src/lib/shared/layoutinfo.cpp | 4 +- tools/designer/src/lib/shared/layoutinfo_p.h | 4 +- tools/designer/src/lib/shared/metadatabase.cpp | 4 +- tools/designer/src/lib/shared/metadatabase_p.h | 4 +- tools/designer/src/lib/shared/morphmenu.cpp | 4 +- tools/designer/src/lib/shared/morphmenu_p.h | 4 +- tools/designer/src/lib/shared/newactiondialog.cpp | 4 +- tools/designer/src/lib/shared/newactiondialog.ui | 4 +- tools/designer/src/lib/shared/newactiondialog_p.h | 4 +- tools/designer/src/lib/shared/newformwidget.cpp | 4 +- tools/designer/src/lib/shared/newformwidget.ui | 4 +- tools/designer/src/lib/shared/newformwidget_p.h | 4 +- tools/designer/src/lib/shared/orderdialog.cpp | 4 +- tools/designer/src/lib/shared/orderdialog.ui | 4 +- tools/designer/src/lib/shared/orderdialog_p.h | 4 +- tools/designer/src/lib/shared/plaintexteditor.cpp | 4 +- tools/designer/src/lib/shared/plaintexteditor_p.h | 4 +- tools/designer/src/lib/shared/plugindialog.cpp | 4 +- tools/designer/src/lib/shared/plugindialog.ui | 4 +- tools/designer/src/lib/shared/plugindialog_p.h | 4 +- tools/designer/src/lib/shared/pluginmanager.cpp | 4 +- tools/designer/src/lib/shared/pluginmanager_p.h | 4 +- .../src/lib/shared/previewconfigurationwidget.cpp | 4 +- .../src/lib/shared/previewconfigurationwidget_p.h | 4 +- tools/designer/src/lib/shared/previewmanager.cpp | 4 +- tools/designer/src/lib/shared/previewmanager_p.h | 4 +- tools/designer/src/lib/shared/promotionmodel.cpp | 4 +- tools/designer/src/lib/shared/promotionmodel_p.h | 4 +- .../designer/src/lib/shared/promotiontaskmenu.cpp | 4 +- .../designer/src/lib/shared/promotiontaskmenu_p.h | 4 +- tools/designer/src/lib/shared/propertylineedit.cpp | 4 +- tools/designer/src/lib/shared/propertylineedit_p.h | 4 +- .../designer/src/lib/shared/qdesigner_command.cpp | 4 +- .../designer/src/lib/shared/qdesigner_command2.cpp | 4 +- .../designer/src/lib/shared/qdesigner_command2_p.h | 4 +- .../designer/src/lib/shared/qdesigner_command_p.h | 4 +- .../designer/src/lib/shared/qdesigner_dnditem.cpp | 4 +- .../designer/src/lib/shared/qdesigner_dnditem_p.h | 4 +- .../src/lib/shared/qdesigner_dockwidget.cpp | 4 +- .../src/lib/shared/qdesigner_dockwidget_p.h | 4 +- .../src/lib/shared/qdesigner_formbuilder.cpp | 4 +- .../src/lib/shared/qdesigner_formbuilder_p.h | 4 +- .../src/lib/shared/qdesigner_formeditorcommand.cpp | 4 +- .../src/lib/shared/qdesigner_formeditorcommand_p.h | 4 +- .../src/lib/shared/qdesigner_formwindowcommand.cpp | 4 +- .../src/lib/shared/qdesigner_formwindowcommand_p.h | 4 +- .../src/lib/shared/qdesigner_formwindowmanager.cpp | 4 +- .../src/lib/shared/qdesigner_formwindowmanager_p.h | 4 +- .../src/lib/shared/qdesigner_integration.cpp | 4 +- .../src/lib/shared/qdesigner_integration_p.h | 4 +- .../src/lib/shared/qdesigner_introspection.cpp | 4 +- .../src/lib/shared/qdesigner_introspection_p.h | 4 +- .../src/lib/shared/qdesigner_membersheet.cpp | 4 +- .../src/lib/shared/qdesigner_membersheet_p.h | 4 +- tools/designer/src/lib/shared/qdesigner_menu.cpp | 4 +- tools/designer/src/lib/shared/qdesigner_menu_p.h | 4 +- .../designer/src/lib/shared/qdesigner_menubar.cpp | 4 +- .../designer/src/lib/shared/qdesigner_menubar_p.h | 4 +- .../src/lib/shared/qdesigner_objectinspector.cpp | 4 +- .../src/lib/shared/qdesigner_objectinspector_p.h | 4 +- .../src/lib/shared/qdesigner_promotion.cpp | 4 +- .../src/lib/shared/qdesigner_promotion_p.h | 4 +- .../src/lib/shared/qdesigner_promotiondialog.cpp | 4 +- .../src/lib/shared/qdesigner_promotiondialog_p.h | 4 +- .../src/lib/shared/qdesigner_propertycommand.cpp | 4 +- .../src/lib/shared/qdesigner_propertycommand_p.h | 4 +- .../src/lib/shared/qdesigner_propertyeditor.cpp | 4 +- .../src/lib/shared/qdesigner_propertyeditor_p.h | 4 +- .../src/lib/shared/qdesigner_propertysheet.cpp | 4 +- .../src/lib/shared/qdesigner_propertysheet_p.h | 4 +- .../src/lib/shared/qdesigner_qsettings.cpp | 4 +- .../src/lib/shared/qdesigner_qsettings_p.h | 4 +- .../src/lib/shared/qdesigner_stackedbox.cpp | 4 +- .../src/lib/shared/qdesigner_stackedbox_p.h | 4 +- .../src/lib/shared/qdesigner_tabwidget.cpp | 4 +- .../src/lib/shared/qdesigner_tabwidget_p.h | 4 +- .../designer/src/lib/shared/qdesigner_taskmenu.cpp | 4 +- .../designer/src/lib/shared/qdesigner_taskmenu_p.h | 4 +- .../designer/src/lib/shared/qdesigner_toolbar.cpp | 4 +- .../designer/src/lib/shared/qdesigner_toolbar_p.h | 4 +- .../designer/src/lib/shared/qdesigner_toolbox.cpp | 4 +- .../designer/src/lib/shared/qdesigner_toolbox_p.h | 4 +- tools/designer/src/lib/shared/qdesigner_utils.cpp | 4 +- tools/designer/src/lib/shared/qdesigner_utils_p.h | 4 +- tools/designer/src/lib/shared/qdesigner_widget.cpp | 4 +- tools/designer/src/lib/shared/qdesigner_widget_p.h | 4 +- .../src/lib/shared/qdesigner_widgetbox.cpp | 4 +- .../src/lib/shared/qdesigner_widgetbox_p.h | 4 +- .../src/lib/shared/qdesigner_widgetitem.cpp | 4 +- .../src/lib/shared/qdesigner_widgetitem_p.h | 4 +- tools/designer/src/lib/shared/qlayout_widget.cpp | 4 +- tools/designer/src/lib/shared/qlayout_widget_p.h | 4 +- .../designer/src/lib/shared/qscripthighlighter.cpp | 4 +- .../designer/src/lib/shared/qscripthighlighter_p.h | 4 +- tools/designer/src/lib/shared/qsimpleresource.cpp | 4 +- tools/designer/src/lib/shared/qsimpleresource_p.h | 4 +- .../src/lib/shared/qtresourceeditordialog.cpp | 4 +- .../src/lib/shared/qtresourceeditordialog_p.h | 4 +- tools/designer/src/lib/shared/qtresourcemodel.cpp | 4 +- tools/designer/src/lib/shared/qtresourcemodel_p.h | 4 +- tools/designer/src/lib/shared/qtresourceview.cpp | 4 +- tools/designer/src/lib/shared/qtresourceview_p.h | 4 +- tools/designer/src/lib/shared/richtexteditor.cpp | 4 +- tools/designer/src/lib/shared/richtexteditor_p.h | 4 +- tools/designer/src/lib/shared/scriptcommand.cpp | 4 +- tools/designer/src/lib/shared/scriptcommand_p.h | 4 +- tools/designer/src/lib/shared/scriptdialog.cpp | 4 +- tools/designer/src/lib/shared/scriptdialog_p.h | 4 +- .../designer/src/lib/shared/scripterrordialog.cpp | 4 +- .../designer/src/lib/shared/scripterrordialog_p.h | 4 +- tools/designer/src/lib/shared/shared_enums_p.h | 4 +- tools/designer/src/lib/shared/shared_global_p.h | 4 +- tools/designer/src/lib/shared/shared_settings.cpp | 4 +- tools/designer/src/lib/shared/shared_settings_p.h | 4 +- tools/designer/src/lib/shared/sheet_delegate.cpp | 4 +- tools/designer/src/lib/shared/sheet_delegate_p.h | 4 +- tools/designer/src/lib/shared/signalslotdialog.cpp | 4 +- tools/designer/src/lib/shared/signalslotdialog_p.h | 4 +- tools/designer/src/lib/shared/spacer_widget.cpp | 4 +- tools/designer/src/lib/shared/spacer_widget_p.h | 4 +- tools/designer/src/lib/shared/stylesheeteditor.cpp | 4 +- tools/designer/src/lib/shared/stylesheeteditor_p.h | 4 +- .../designer/src/lib/shared/textpropertyeditor.cpp | 4 +- .../designer/src/lib/shared/textpropertyeditor_p.h | 4 +- tools/designer/src/lib/shared/widgetdatabase.cpp | 4 +- tools/designer/src/lib/shared/widgetdatabase_p.h | 4 +- tools/designer/src/lib/shared/widgetfactory.cpp | 4 +- tools/designer/src/lib/shared/widgetfactory_p.h | 4 +- tools/designer/src/lib/shared/zoomwidget.cpp | 4 +- tools/designer/src/lib/shared/zoomwidget_p.h | 4 +- .../designer/src/lib/uilib/abstractformbuilder.cpp | 4 +- tools/designer/src/lib/uilib/abstractformbuilder.h | 4 +- tools/designer/src/lib/uilib/container.h | 4 +- tools/designer/src/lib/uilib/customwidget.h | 4 +- tools/designer/src/lib/uilib/formbuilder.cpp | 4 +- tools/designer/src/lib/uilib/formbuilder.h | 4 +- tools/designer/src/lib/uilib/formbuilderextra.cpp | 4 +- tools/designer/src/lib/uilib/formbuilderextra_p.h | 4 +- tools/designer/src/lib/uilib/formscriptrunner.cpp | 4 +- tools/designer/src/lib/uilib/formscriptrunner_p.h | 4 +- tools/designer/src/lib/uilib/properties.cpp | 4 +- tools/designer/src/lib/uilib/properties_p.h | 4 +- .../designer/src/lib/uilib/qdesignerexportwidget.h | 4 +- tools/designer/src/lib/uilib/resourcebuilder.cpp | 4 +- tools/designer/src/lib/uilib/resourcebuilder_p.h | 4 +- tools/designer/src/lib/uilib/textbuilder.cpp | 4 +- tools/designer/src/lib/uilib/textbuilder_p.h | 4 +- tools/designer/src/lib/uilib/ui4.cpp | 4 +- tools/designer/src/lib/uilib/ui4_p.h | 4 +- tools/designer/src/lib/uilib/uilib_global.h | 4 +- .../src/plugins/activeqt/qaxwidgetextrainfo.cpp | 4 +- .../src/plugins/activeqt/qaxwidgetextrainfo.h | 4 +- .../src/plugins/activeqt/qaxwidgetplugin.cpp | 4 +- .../src/plugins/activeqt/qaxwidgetplugin.h | 4 +- .../plugins/activeqt/qaxwidgetpropertysheet.cpp | 4 +- .../src/plugins/activeqt/qaxwidgetpropertysheet.h | 4 +- .../src/plugins/activeqt/qaxwidgettaskmenu.cpp | 4 +- .../src/plugins/activeqt/qaxwidgettaskmenu.h | 4 +- .../src/plugins/activeqt/qdesigneraxwidget.cpp | 4 +- .../src/plugins/activeqt/qdesigneraxwidget.h | 4 +- .../src/plugins/phononwidgets/phononcollection.cpp | 4 +- .../src/plugins/phononwidgets/seeksliderplugin.cpp | 4 +- .../src/plugins/phononwidgets/seeksliderplugin.h | 4 +- .../plugins/phononwidgets/videoplayerplugin.cpp | 4 +- .../src/plugins/phononwidgets/videoplayerplugin.h | 4 +- .../plugins/phononwidgets/videoplayertaskmenu.cpp | 4 +- .../plugins/phononwidgets/videoplayertaskmenu.h | 4 +- .../plugins/phononwidgets/volumesliderplugin.cpp | 4 +- .../src/plugins/phononwidgets/volumesliderplugin.h | 4 +- .../src/plugins/qwebview/qwebview_plugin.cpp | 4 +- .../src/plugins/qwebview/qwebview_plugin.h | 4 +- tools/designer/src/plugins/tools/view3d/view3d.cpp | 4 +- tools/designer/src/plugins/tools/view3d/view3d.h | 4 +- .../src/plugins/tools/view3d/view3d_global.h | 4 +- .../src/plugins/tools/view3d/view3d_plugin.cpp | 4 +- .../src/plugins/tools/view3d/view3d_plugin.h | 4 +- .../src/plugins/tools/view3d/view3d_tool.cpp | 4 +- .../src/plugins/tools/view3d/view3d_tool.h | 4 +- .../widgets/q3iconview/q3iconview_extrainfo.cpp | 4 +- .../widgets/q3iconview/q3iconview_extrainfo.h | 4 +- .../widgets/q3iconview/q3iconview_plugin.cpp | 4 +- .../plugins/widgets/q3iconview/q3iconview_plugin.h | 4 +- .../widgets/q3listbox/q3listbox_extrainfo.cpp | 4 +- .../widgets/q3listbox/q3listbox_extrainfo.h | 4 +- .../plugins/widgets/q3listbox/q3listbox_plugin.cpp | 4 +- .../plugins/widgets/q3listbox/q3listbox_plugin.h | 4 +- .../widgets/q3listview/q3listview_extrainfo.cpp | 4 +- .../widgets/q3listview/q3listview_extrainfo.h | 4 +- .../widgets/q3listview/q3listview_plugin.cpp | 4 +- .../plugins/widgets/q3listview/q3listview_plugin.h | 4 +- .../q3mainwindow/q3mainwindow_container.cpp | 4 +- .../widgets/q3mainwindow/q3mainwindow_container.h | 4 +- .../widgets/q3mainwindow/q3mainwindow_plugin.cpp | 4 +- .../widgets/q3mainwindow/q3mainwindow_plugin.h | 4 +- .../plugins/widgets/q3table/q3table_extrainfo.cpp | 4 +- .../plugins/widgets/q3table/q3table_extrainfo.h | 4 +- .../src/plugins/widgets/q3table/q3table_plugin.cpp | 4 +- .../src/plugins/widgets/q3table/q3table_plugin.h | 4 +- .../widgets/q3textedit/q3textedit_extrainfo.cpp | 4 +- .../widgets/q3textedit/q3textedit_extrainfo.h | 4 +- .../widgets/q3textedit/q3textedit_plugin.cpp | 4 +- .../plugins/widgets/q3textedit/q3textedit_plugin.h | 4 +- .../widgets/q3toolbar/q3toolbar_extrainfo.cpp | 4 +- .../widgets/q3toolbar/q3toolbar_extrainfo.h | 4 +- .../plugins/widgets/q3toolbar/q3toolbar_plugin.cpp | 4 +- .../plugins/widgets/q3toolbar/q3toolbar_plugin.h | 4 +- .../plugins/widgets/q3widgets/q3widget_plugins.cpp | 4 +- .../plugins/widgets/q3widgets/q3widget_plugins.h | 4 +- .../q3widgetstack/q3widgetstack_container.cpp | 4 +- .../q3widgetstack/q3widgetstack_container.h | 4 +- .../widgets/q3widgetstack/q3widgetstack_plugin.cpp | 4 +- .../widgets/q3widgetstack/q3widgetstack_plugin.h | 4 +- .../q3widgetstack/qdesigner_q3widgetstack.cpp | 4 +- .../q3widgetstack/qdesigner_q3widgetstack_p.h | 4 +- .../widgets/q3wizard/q3wizard_container.cpp | 4 +- .../plugins/widgets/q3wizard/q3wizard_container.h | 4 +- .../plugins/widgets/q3wizard/q3wizard_plugin.cpp | 4 +- .../src/plugins/widgets/q3wizard/q3wizard_plugin.h | 4 +- .../src/plugins/widgets/qt3supportwidgets.cpp | 4 +- tools/designer/src/uitools/quiloader.cpp | 4 +- tools/designer/src/uitools/quiloader.h | 4 +- tools/designer/src/uitools/quiloader_p.h | 4 +- tools/installer/batch/build.bat | 4 +- tools/installer/batch/copy.bat | 4 +- tools/installer/batch/delete.bat | 4 +- tools/installer/batch/env.bat | 4 +- tools/installer/batch/extract.bat | 4 +- tools/installer/batch/installer.bat | 4 +- tools/installer/batch/log.bat | 4 +- tools/installer/batch/toupper.bat | 4 +- tools/installer/config/config.default.sample | 4 +- tools/installer/config/mingw-opensource.conf | 4 +- tools/installer/iwmake.bat | 4 +- tools/installer/nsis/confirmpage.ini | 4 +- tools/installer/nsis/gwdownload.ini | 4 +- tools/installer/nsis/gwmirror.ini | 4 +- tools/installer/nsis/includes/global.nsh | 4 +- tools/installer/nsis/includes/instdir.nsh | 4 +- tools/installer/nsis/includes/list.nsh | 4 +- tools/installer/nsis/includes/qtcommon.nsh | 4 +- tools/installer/nsis/includes/qtenv.nsh | 4 +- tools/installer/nsis/includes/system.nsh | 4 +- tools/installer/nsis/installer.nsi | 4 +- tools/installer/nsis/modules/environment.nsh | 4 +- tools/installer/nsis/modules/mingw.nsh | 4 +- tools/installer/nsis/modules/opensource.nsh | 4 +- tools/installer/nsis/modules/registeruiext.nsh | 4 +- tools/installer/nsis/opensource.ini | 4 +- tools/linguist/lconvert/main.cpp | 4 +- tools/linguist/linguist/batchtranslation.ui | 4 +- tools/linguist/linguist/batchtranslationdialog.cpp | 4 +- tools/linguist/linguist/batchtranslationdialog.h | 4 +- tools/linguist/linguist/errorsview.cpp | 4 +- tools/linguist/linguist/errorsview.h | 4 +- tools/linguist/linguist/finddialog.cpp | 4 +- tools/linguist/linguist/finddialog.h | 4 +- tools/linguist/linguist/finddialog.ui | 4 +- tools/linguist/linguist/formpreviewview.cpp | 4 +- tools/linguist/linguist/formpreviewview.h | 4 +- tools/linguist/linguist/main.cpp | 4 +- tools/linguist/linguist/mainwindow.cpp | 4 +- tools/linguist/linguist/mainwindow.h | 4 +- tools/linguist/linguist/mainwindow.ui | 4 +- tools/linguist/linguist/messageeditor.cpp | 4 +- tools/linguist/linguist/messageeditor.h | 4 +- tools/linguist/linguist/messageeditorwidgets.cpp | 4 +- tools/linguist/linguist/messageeditorwidgets.h | 4 +- tools/linguist/linguist/messagehighlighter.cpp | 4 +- tools/linguist/linguist/messagehighlighter.h | 4 +- tools/linguist/linguist/messagemodel.cpp | 4 +- tools/linguist/linguist/messagemodel.h | 4 +- tools/linguist/linguist/phrase.cpp | 4 +- tools/linguist/linguist/phrase.h | 4 +- tools/linguist/linguist/phrasebookbox.cpp | 4 +- tools/linguist/linguist/phrasebookbox.h | 4 +- tools/linguist/linguist/phrasebookbox.ui | 4 +- tools/linguist/linguist/phrasemodel.cpp | 4 +- tools/linguist/linguist/phrasemodel.h | 4 +- tools/linguist/linguist/phraseview.cpp | 4 +- tools/linguist/linguist/phraseview.h | 4 +- tools/linguist/linguist/printout.cpp | 4 +- tools/linguist/linguist/printout.h | 4 +- tools/linguist/linguist/recentfiles.cpp | 4 +- tools/linguist/linguist/recentfiles.h | 4 +- tools/linguist/linguist/sourcecodeview.cpp | 4 +- tools/linguist/linguist/sourcecodeview.h | 4 +- tools/linguist/linguist/statistics.cpp | 4 +- tools/linguist/linguist/statistics.h | 4 +- tools/linguist/linguist/statistics.ui | 4 +- tools/linguist/linguist/translatedialog.cpp | 4 +- tools/linguist/linguist/translatedialog.h | 4 +- tools/linguist/linguist/translatedialog.ui | 4 +- .../linguist/translationsettingsdialog.cpp | 4 +- .../linguist/linguist/translationsettingsdialog.h | 4 +- tools/linguist/lrelease/lrelease.1 | 49 +++++++++++++++------- tools/linguist/lrelease/main.cpp | 4 +- tools/linguist/lupdate/lupdate.1 | 41 +++++++++++++----- tools/linguist/lupdate/main.cpp | 4 +- tools/linguist/shared/abstractproitemvisitor.h | 4 +- tools/linguist/shared/cpp.cpp | 4 +- tools/linguist/shared/java.cpp | 4 +- tools/linguist/shared/numerus.cpp | 4 +- tools/linguist/shared/po.cpp | 4 +- tools/linguist/shared/profileevaluator.cpp | 4 +- tools/linguist/shared/profileevaluator.h | 4 +- tools/linguist/shared/proitems.cpp | 4 +- tools/linguist/shared/proitems.h | 4 +- tools/linguist/shared/proparserutils.h | 4 +- tools/linguist/shared/qm.cpp | 4 +- tools/linguist/shared/qph.cpp | 4 +- tools/linguist/shared/qscript.cpp | 4 +- tools/linguist/shared/qscript.g | 4 +- tools/linguist/shared/simtexth.cpp | 4 +- tools/linguist/shared/simtexth.h | 4 +- tools/linguist/shared/translator.cpp | 4 +- tools/linguist/shared/translator.h | 4 +- tools/linguist/shared/translatormessage.cpp | 4 +- tools/linguist/shared/translatormessage.h | 4 +- tools/linguist/shared/translatortools.cpp | 4 +- tools/linguist/shared/translatortools.h | 4 +- tools/linguist/shared/ts.cpp | 4 +- tools/linguist/shared/ui.cpp | 4 +- tools/linguist/shared/xliff.cpp | 4 +- tools/linguist/tests/tst_lupdate.cpp | 2 +- tools/linguist/tests/tst_simtexth.cpp | 2 +- tools/macdeployqt/macchangeqt/main.cpp | 4 +- tools/macdeployqt/macdeployqt/main.cpp | 4 +- tools/macdeployqt/shared/shared.cpp | 4 +- tools/macdeployqt/shared/shared.h | 4 +- tools/macdeployqt/tests/tst_deployment_mac.cpp | 4 +- tools/makeqpf/main.cpp | 4 +- tools/makeqpf/mainwindow.cpp | 4 +- tools/makeqpf/mainwindow.h | 4 +- tools/makeqpf/qpf2.cpp | 4 +- tools/makeqpf/qpf2.h | 4 +- tools/pixeltool/main.cpp | 4 +- tools/pixeltool/qpixeltool.cpp | 4 +- tools/pixeltool/qpixeltool.h | 4 +- tools/porting/src/ast.cpp | 4 +- tools/porting/src/ast.h | 4 +- tools/porting/src/codemodel.cpp | 4 +- tools/porting/src/codemodel.h | 4 +- tools/porting/src/codemodelattributes.cpp | 4 +- tools/porting/src/codemodelattributes.h | 4 +- tools/porting/src/codemodelwalker.cpp | 4 +- tools/porting/src/codemodelwalker.h | 4 +- tools/porting/src/cpplexer.cpp | 4 +- tools/porting/src/cpplexer.h | 4 +- tools/porting/src/errors.cpp | 4 +- tools/porting/src/errors.h | 4 +- tools/porting/src/fileporter.cpp | 4 +- tools/porting/src/fileporter.h | 4 +- tools/porting/src/filewriter.cpp | 4 +- tools/porting/src/filewriter.h | 4 +- tools/porting/src/list.h | 4 +- tools/porting/src/logger.cpp | 4 +- tools/porting/src/logger.h | 4 +- tools/porting/src/parser.cpp | 4 +- tools/porting/src/parser.h | 4 +- tools/porting/src/port.cpp | 4 +- tools/porting/src/portingrules.cpp | 4 +- tools/porting/src/portingrules.h | 4 +- tools/porting/src/preprocessorcontrol.cpp | 4 +- tools/porting/src/preprocessorcontrol.h | 4 +- tools/porting/src/projectporter.cpp | 4 +- tools/porting/src/projectporter.h | 4 +- tools/porting/src/proparser.cpp | 4 +- tools/porting/src/proparser.h | 4 +- tools/porting/src/q3porting.xml | 4 +- tools/porting/src/qtsimplexml.cpp | 4 +- tools/porting/src/qtsimplexml.h | 4 +- tools/porting/src/replacetoken.cpp | 4 +- tools/porting/src/replacetoken.h | 4 +- tools/porting/src/rpp.cpp | 4 +- tools/porting/src/rpp.h | 4 +- tools/porting/src/rppexpressionbuilder.cpp | 4 +- tools/porting/src/rppexpressionbuilder.h | 4 +- tools/porting/src/rpplexer.cpp | 4 +- tools/porting/src/rpplexer.h | 4 +- tools/porting/src/rpptreeevaluator.cpp | 4 +- tools/porting/src/rpptreeevaluator.h | 4 +- tools/porting/src/rpptreewalker.cpp | 4 +- tools/porting/src/rpptreewalker.h | 4 +- tools/porting/src/semantic.cpp | 4 +- tools/porting/src/semantic.h | 4 +- tools/porting/src/smallobject.cpp | 4 +- tools/porting/src/smallobject.h | 4 +- tools/porting/src/textreplacement.cpp | 4 +- tools/porting/src/textreplacement.h | 4 +- tools/porting/src/tokenengine.cpp | 4 +- tools/porting/src/tokenengine.h | 4 +- tools/porting/src/tokenizer.cpp | 4 +- tools/porting/src/tokenizer.h | 4 +- tools/porting/src/tokenreplacements.cpp | 4 +- tools/porting/src/tokenreplacements.h | 4 +- tools/porting/src/tokens.h | 4 +- tools/porting/src/tokenstreamadapter.h | 4 +- tools/porting/src/translationunit.cpp | 4 +- tools/porting/src/translationunit.h | 4 +- tools/porting/src/treewalker.cpp | 4 +- tools/porting/src/treewalker.h | 4 +- tools/qconfig/feature.cpp | 4 +- tools/qconfig/feature.h | 4 +- tools/qconfig/featuretreemodel.cpp | 4 +- tools/qconfig/featuretreemodel.h | 4 +- tools/qconfig/graphics.h | 4 +- tools/qconfig/main.cpp | 4 +- tools/qdbus/qdbus/qdbus.cpp | 4 +- tools/qdbus/qdbuscpp2xml/qdbuscpp2xml.cpp | 4 +- tools/qdbus/qdbusviewer/main.cpp | 4 +- tools/qdbus/qdbusviewer/propertydialog.cpp | 4 +- tools/qdbus/qdbusviewer/propertydialog.h | 4 +- tools/qdbus/qdbusviewer/qdbusmodel.cpp | 4 +- tools/qdbus/qdbusviewer/qdbusmodel.h | 4 +- tools/qdbus/qdbusviewer/qdbusviewer.cpp | 4 +- tools/qdbus/qdbusviewer/qdbusviewer.h | 4 +- tools/qdbus/qdbusxml2cpp/qdbusxml2cpp.cpp | 4 +- tools/qdoc3/apigenerator.cpp | 4 +- tools/qdoc3/apigenerator.h | 4 +- tools/qdoc3/archiveextractor.cpp | 4 +- tools/qdoc3/archiveextractor.h | 4 +- tools/qdoc3/atom.cpp | 4 +- tools/qdoc3/atom.h | 4 +- tools/qdoc3/bookgenerator.cpp | 4 +- tools/qdoc3/bookgenerator.h | 4 +- tools/qdoc3/ccodeparser.cpp | 4 +- tools/qdoc3/ccodeparser.h | 4 +- tools/qdoc3/codechunk.cpp | 4 +- tools/qdoc3/codechunk.h | 4 +- tools/qdoc3/codemarker.cpp | 4 +- tools/qdoc3/codemarker.h | 4 +- tools/qdoc3/codeparser.cpp | 4 +- tools/qdoc3/codeparser.h | 4 +- tools/qdoc3/command.cpp | 4 +- tools/qdoc3/command.h | 4 +- tools/qdoc3/config.cpp | 4 +- tools/qdoc3/config.h | 4 +- tools/qdoc3/cppcodemarker.cpp | 4 +- tools/qdoc3/cppcodemarker.h | 4 +- tools/qdoc3/cppcodeparser.cpp | 4 +- tools/qdoc3/cppcodeparser.h | 4 +- tools/qdoc3/cpptoqsconverter.cpp | 4 +- tools/qdoc3/cpptoqsconverter.h | 4 +- tools/qdoc3/dcfsection.cpp | 4 +- tools/qdoc3/dcfsection.h | 4 +- tools/qdoc3/doc.cpp | 4 +- tools/qdoc3/doc.h | 4 +- tools/qdoc3/editdistance.cpp | 4 +- tools/qdoc3/editdistance.h | 4 +- tools/qdoc3/generator.cpp | 4 +- tools/qdoc3/generator.h | 4 +- tools/qdoc3/helpprojectwriter.cpp | 4 +- tools/qdoc3/helpprojectwriter.h | 4 +- tools/qdoc3/htmlgenerator.cpp | 4 +- tools/qdoc3/htmlgenerator.h | 4 +- tools/qdoc3/jambiapiparser.cpp | 4 +- tools/qdoc3/jambiapiparser.h | 4 +- tools/qdoc3/javacodemarker.cpp | 4 +- tools/qdoc3/javacodemarker.h | 4 +- tools/qdoc3/javadocgenerator.cpp | 4 +- tools/qdoc3/javadocgenerator.h | 4 +- tools/qdoc3/linguistgenerator.cpp | 4 +- tools/qdoc3/linguistgenerator.h | 4 +- tools/qdoc3/location.cpp | 4 +- tools/qdoc3/location.h | 4 +- tools/qdoc3/loutgenerator.cpp | 4 +- tools/qdoc3/loutgenerator.h | 4 +- tools/qdoc3/main.cpp | 4 +- tools/qdoc3/mangenerator.cpp | 4 +- tools/qdoc3/mangenerator.h | 4 +- tools/qdoc3/node.cpp | 4 +- tools/qdoc3/node.h | 4 +- tools/qdoc3/openedlist.cpp | 4 +- tools/qdoc3/openedlist.h | 4 +- tools/qdoc3/pagegenerator.cpp | 4 +- tools/qdoc3/pagegenerator.h | 4 +- tools/qdoc3/plaincodemarker.cpp | 4 +- tools/qdoc3/plaincodemarker.h | 4 +- tools/qdoc3/polyarchiveextractor.cpp | 4 +- tools/qdoc3/polyarchiveextractor.h | 4 +- tools/qdoc3/polyuncompressor.cpp | 4 +- tools/qdoc3/polyuncompressor.h | 4 +- tools/qdoc3/qsakernelparser.cpp | 4 +- tools/qdoc3/qsakernelparser.h | 4 +- tools/qdoc3/qscodemarker.cpp | 4 +- tools/qdoc3/qscodemarker.h | 4 +- tools/qdoc3/qscodeparser.cpp | 4 +- tools/qdoc3/qscodeparser.h | 4 +- tools/qdoc3/quoter.cpp | 4 +- tools/qdoc3/quoter.h | 4 +- tools/qdoc3/separator.cpp | 4 +- tools/qdoc3/separator.h | 4 +- tools/qdoc3/sgmlgenerator.cpp | 4 +- tools/qdoc3/sgmlgenerator.h | 4 +- tools/qdoc3/text.cpp | 4 +- tools/qdoc3/text.h | 4 +- tools/qdoc3/tokenizer.cpp | 4 +- tools/qdoc3/tokenizer.h | 4 +- tools/qdoc3/tr.h | 4 +- tools/qdoc3/tree.cpp | 4 +- tools/qdoc3/tree.h | 4 +- tools/qdoc3/uncompressor.cpp | 4 +- tools/qdoc3/uncompressor.h | 4 +- tools/qdoc3/webxmlgenerator.cpp | 4 +- tools/qdoc3/webxmlgenerator.h | 4 +- tools/qdoc3/yyindent.cpp | 4 +- tools/qev/qev.cpp | 4 +- tools/qtconcurrent/codegenerator/example/main.cpp | 4 +- .../codegenerator/src/codegenerator.cpp | 4 +- .../qtconcurrent/codegenerator/src/codegenerator.h | 4 +- tools/qtconcurrent/generaterun/main.cpp | 16 +++---- tools/qtconfig/colorbutton.cpp | 4 +- tools/qtconfig/colorbutton.h | 4 +- tools/qtconfig/main.cpp | 4 +- tools/qtconfig/mainwindow.cpp | 4 +- tools/qtconfig/mainwindow.h | 4 +- tools/qtconfig/mainwindowbase.cpp | 4 +- tools/qtconfig/mainwindowbase.h | 4 +- tools/qtconfig/mainwindowbase.ui | 4 +- tools/qtconfig/paletteeditoradvanced.cpp | 4 +- tools/qtconfig/paletteeditoradvanced.h | 4 +- tools/qtconfig/paletteeditoradvancedbase.cpp | 4 +- tools/qtconfig/paletteeditoradvancedbase.h | 4 +- tools/qtconfig/paletteeditoradvancedbase.ui | 4 +- tools/qtconfig/previewframe.cpp | 4 +- tools/qtconfig/previewframe.h | 4 +- tools/qtconfig/previewwidget.cpp | 4 +- tools/qtconfig/previewwidget.h | 4 +- tools/qtconfig/previewwidgetbase.cpp | 4 +- tools/qtconfig/previewwidgetbase.h | 4 +- tools/qtconfig/previewwidgetbase.ui | 4 +- tools/qtestlib/updater/main.cpp | 4 +- .../qtestlib/wince/cetest/activesyncconnection.cpp | 4 +- tools/qtestlib/wince/cetest/activesyncconnection.h | 4 +- tools/qtestlib/wince/cetest/deployment.cpp | 4 +- tools/qtestlib/wince/cetest/deployment.h | 4 +- tools/qtestlib/wince/cetest/main.cpp | 4 +- tools/qtestlib/wince/cetest/remoteconnection.cpp | 4 +- tools/qtestlib/wince/cetest/remoteconnection.h | 4 +- tools/qtestlib/wince/remotelib/commands.cpp | 4 +- tools/qtestlib/wince/remotelib/commands.h | 4 +- tools/qvfb/config.ui | 4 +- tools/qvfb/gammaview.h | 4 +- tools/qvfb/main.cpp | 4 +- tools/qvfb/qanimationwriter.cpp | 4 +- tools/qvfb/qanimationwriter.h | 4 +- tools/qvfb/qtopiakeysym.h | 2 +- tools/qvfb/qvfb.cpp | 4 +- tools/qvfb/qvfb.h | 4 +- tools/qvfb/qvfbmmap.cpp | 4 +- tools/qvfb/qvfbmmap.h | 4 +- tools/qvfb/qvfbprotocol.cpp | 4 +- tools/qvfb/qvfbprotocol.h | 4 +- tools/qvfb/qvfbratedlg.cpp | 4 +- tools/qvfb/qvfbratedlg.h | 4 +- tools/qvfb/qvfbshmem.cpp | 4 +- tools/qvfb/qvfbshmem.h | 4 +- tools/qvfb/qvfbview.cpp | 4 +- tools/qvfb/qvfbview.h | 4 +- tools/qvfb/qvfbx11view.cpp | 2 +- tools/qvfb/qvfbx11view.h | 2 +- tools/qvfb/x11keyfaker.cpp | 2 +- tools/qvfb/x11keyfaker.h | 2 +- tools/shared/deviceskin/deviceskin.cpp | 4 +- tools/shared/deviceskin/deviceskin.h | 4 +- tools/shared/findwidget/abstractfindwidget.cpp | 4 +- tools/shared/findwidget/abstractfindwidget.h | 4 +- tools/shared/findwidget/itemviewfindwidget.cpp | 4 +- tools/shared/findwidget/itemviewfindwidget.h | 4 +- tools/shared/findwidget/texteditfindwidget.cpp | 4 +- tools/shared/findwidget/texteditfindwidget.h | 4 +- tools/shared/fontpanel/fontpanel.cpp | 4 +- tools/shared/fontpanel/fontpanel.h | 4 +- tools/shared/qtgradienteditor/qtcolorbutton.cpp | 4 +- tools/shared/qtgradienteditor/qtcolorbutton.h | 4 +- tools/shared/qtgradienteditor/qtcolorline.cpp | 4 +- tools/shared/qtgradienteditor/qtcolorline.h | 4 +- tools/shared/qtgradienteditor/qtgradientdialog.cpp | 4 +- tools/shared/qtgradienteditor/qtgradientdialog.h | 4 +- tools/shared/qtgradienteditor/qtgradientdialog.ui | 4 +- tools/shared/qtgradienteditor/qtgradienteditor.cpp | 4 +- tools/shared/qtgradienteditor/qtgradienteditor.h | 4 +- tools/shared/qtgradienteditor/qtgradienteditor.ui | 4 +- .../shared/qtgradienteditor/qtgradientmanager.cpp | 4 +- tools/shared/qtgradienteditor/qtgradientmanager.h | 4 +- .../qtgradienteditor/qtgradientstopscontroller.cpp | 4 +- .../qtgradienteditor/qtgradientstopscontroller.h | 4 +- .../qtgradienteditor/qtgradientstopsmodel.cpp | 4 +- .../shared/qtgradienteditor/qtgradientstopsmodel.h | 4 +- .../qtgradienteditor/qtgradientstopswidget.cpp | 4 +- .../qtgradienteditor/qtgradientstopswidget.h | 4 +- tools/shared/qtgradienteditor/qtgradientutils.cpp | 4 +- tools/shared/qtgradienteditor/qtgradientutils.h | 4 +- tools/shared/qtgradienteditor/qtgradientview.cpp | 4 +- tools/shared/qtgradienteditor/qtgradientview.h | 4 +- .../qtgradienteditor/qtgradientviewdialog.cpp | 4 +- .../shared/qtgradienteditor/qtgradientviewdialog.h | 4 +- .../qtgradienteditor/qtgradientviewdialog.ui | 4 +- tools/shared/qtgradienteditor/qtgradientwidget.cpp | 4 +- tools/shared/qtgradienteditor/qtgradientwidget.h | 4 +- .../qtpropertybrowser/qtbuttonpropertybrowser.cpp | 4 +- .../qtpropertybrowser/qtbuttonpropertybrowser.h | 4 +- tools/shared/qtpropertybrowser/qteditorfactory.cpp | 4 +- tools/shared/qtpropertybrowser/qteditorfactory.h | 4 +- .../qtgroupboxpropertybrowser.cpp | 4 +- .../qtpropertybrowser/qtgroupboxpropertybrowser.h | 4 +- .../shared/qtpropertybrowser/qtpropertybrowser.cpp | 4 +- tools/shared/qtpropertybrowser/qtpropertybrowser.h | 4 +- .../qtpropertybrowser/qtpropertybrowserutils.cpp | 4 +- .../qtpropertybrowser/qtpropertybrowserutils_p.h | 4 +- .../shared/qtpropertybrowser/qtpropertymanager.cpp | 4 +- tools/shared/qtpropertybrowser/qtpropertymanager.h | 4 +- .../qtpropertybrowser/qttreepropertybrowser.cpp | 4 +- .../qtpropertybrowser/qttreepropertybrowser.h | 4 +- .../shared/qtpropertybrowser/qtvariantproperty.cpp | 4 +- tools/shared/qtpropertybrowser/qtvariantproperty.h | 4 +- tools/shared/qttoolbardialog/qttoolbardialog.cpp | 4 +- tools/shared/qttoolbardialog/qttoolbardialog.h | 4 +- tools/xmlpatterns/main.cpp | 4 +- tools/xmlpatterns/main.h | 4 +- tools/xmlpatterns/qapplicationargument.cpp | 4 +- tools/xmlpatterns/qapplicationargument_p.h | 4 +- tools/xmlpatterns/qapplicationargumentparser.cpp | 4 +- tools/xmlpatterns/qapplicationargumentparser_p.h | 4 +- tools/xmlpatterns/qcoloringmessagehandler.cpp | 4 +- tools/xmlpatterns/qcoloringmessagehandler_p.h | 4 +- tools/xmlpatterns/qcoloroutput.cpp | 4 +- tools/xmlpatterns/qcoloroutput_p.h | 4 +- util/fixnonlatin1/main.cpp | 4 +- util/gencmap/gencmap.cpp | 4 +- util/lexgen/configfile.cpp | 4 +- util/lexgen/configfile.h | 4 +- util/lexgen/generator.cpp | 4 +- util/lexgen/generator.h | 4 +- util/lexgen/global.h | 4 +- util/lexgen/main.cpp | 4 +- util/lexgen/nfa.cpp | 4 +- util/lexgen/nfa.h | 4 +- util/lexgen/re2nfa.cpp | 4 +- util/lexgen/re2nfa.h | 4 +- util/lexgen/tests/tst_lexgen.cpp | 4 +- util/lexgen/tokenizer.cpp | 4 +- util/local_database/testlocales/localemodel.cpp | 4 +- util/local_database/testlocales/localemodel.h | 4 +- util/local_database/testlocales/localewidget.cpp | 4 +- util/local_database/testlocales/localewidget.h | 4 +- util/local_database/testlocales/main.cpp | 4 +- util/normalize/main.cpp | 4 +- util/plugintest/main.cpp | 4 +- util/qlalr/compress.cpp | 4 +- util/qlalr/compress.h | 4 +- util/qlalr/cppgenerator.cpp | 4 +- util/qlalr/cppgenerator.h | 4 +- util/qlalr/dotgraph.cpp | 4 +- util/qlalr/dotgraph.h | 4 +- util/qlalr/grammar.cpp | 4 +- util/qlalr/grammar_p.h | 4 +- util/qlalr/lalr.cpp | 4 +- util/qlalr/lalr.g | 12 +++--- util/qlalr/lalr.h | 4 +- util/qlalr/main.cpp | 4 +- util/qlalr/parsetable.cpp | 4 +- util/qlalr/parsetable.h | 4 +- util/qlalr/recognizer.cpp | 4 +- util/qlalr/recognizer.h | 4 +- util/scripts/make_qfeatures_dot_h | 4 +- util/unicode/codecs/big5/main.cpp | 4 +- util/unicode/main.cpp | 4 +- util/xkbdatagen/main.cpp | 4 +- 7172 files changed, 14511 insertions(+), 14473 deletions(-) mode change 100755 => 100644 tests/auto/qqueue/tst_qqueue.cpp mode change 100755 => 100644 tests/benchmarks/qbytearray/main.cpp mode change 100755 => 100644 tests/benchmarks/qdiriterator/main.cpp mode change 100755 => 100644 tests/benchmarks/qiodevice/main.cpp diff --git a/LICENSE.GPL3 b/LICENSE.GPL3 index 13e6f18..265c4ea 100644 --- a/LICENSE.GPL3 +++ b/LICENSE.GPL3 @@ -1,7 +1,7 @@ GNU GENERAL PUBLIC LICENSE The Qt GUI Toolkit is Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). - Contact: Qt Software Information (qt-info@nokia.com) + Contact: Nokia Corporation (qt-info@nokia.com) You may use, distribute and copy the Qt GUI Toolkit under the terms of GNU General Public License version 3, which is displayed below. diff --git a/LICENSE.LGPL b/LICENSE.LGPL index bb95f25..9a30e8c 100644 --- a/LICENSE.LGPL +++ b/LICENSE.LGPL @@ -1,7 +1,7 @@ GNU LESSER GENERAL PUBLIC LICENSE The Qt GUI Toolkit is Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). - Contact: Qt Software Information (qt-info@nokia.com) + Contact: Nokia Corporation (qt-info@nokia.com) You may use, distribute and copy the Qt GUI Toolkit under the terms of GNU Lesser General Public License version 2.1, which is displayed below. diff --git a/bin/syncqt b/bin/syncqt index 7a9f1d3..f58a4d1 100755 --- a/bin/syncqt +++ b/bin/syncqt @@ -4,7 +4,7 @@ # Synchronizes Qt header files - internal Trolltech tool. # # Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -# Contact: Qt Software Information (qt-info@nokia.com) +# Contact: Nokia Corporation (qt-info@nokia.com) # ###################################################################### diff --git a/configure b/configure index 5a162ee..12eaf77 100755 --- a/configure +++ b/configure @@ -3,7 +3,7 @@ # Configures to build the Qt library # # Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -# Contact: Qt Software Information (qt-info@nokia.com) +# Contact: Nokia Corporation (qt-info@nokia.com) # # This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE # WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. diff --git a/demos/affine/main.cpp b/demos/affine/main.cpp index 88cd864..e83018d 100644 --- a/demos/affine/main.cpp +++ b/demos/affine/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/affine/xform.cpp b/demos/affine/xform.cpp index 059e38e..e3ecb3c 100644 --- a/demos/affine/xform.cpp +++ b/demos/affine/xform.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/affine/xform.h b/demos/affine/xform.h index f33e63d..825a18d 100644 --- a/demos/affine/xform.h +++ b/demos/affine/xform.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/arthurplugin/plugin.cpp b/demos/arthurplugin/plugin.cpp index e2bf54e..1cee957 100644 --- a/demos/arthurplugin/plugin.cpp +++ b/demos/arthurplugin/plugin.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/bookdelegate.cpp b/demos/books/bookdelegate.cpp index 1322fd6..a9d6292 100644 --- a/demos/books/bookdelegate.cpp +++ b/demos/books/bookdelegate.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/bookdelegate.h b/demos/books/bookdelegate.h index fb32335..22a9e25 100644 --- a/demos/books/bookdelegate.h +++ b/demos/books/bookdelegate.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/bookwindow.cpp b/demos/books/bookwindow.cpp index e73f727..752d6b9 100644 --- a/demos/books/bookwindow.cpp +++ b/demos/books/bookwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/bookwindow.h b/demos/books/bookwindow.h index 3cc69d0..02f2039 100644 --- a/demos/books/bookwindow.h +++ b/demos/books/bookwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/initdb.h b/demos/books/initdb.h index f9a94b7..9571b51 100644 --- a/demos/books/initdb.h +++ b/demos/books/initdb.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/books/main.cpp b/demos/books/main.cpp index f3ae325..5da843d 100644 --- a/demos/books/main.cpp +++ b/demos/books/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/basic.fsh b/demos/boxes/basic.fsh index 06ef24a..0148f35 100644 --- a/demos/boxes/basic.fsh +++ b/demos/boxes/basic.fsh @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/basic.vsh b/demos/boxes/basic.vsh index 5a02df2..2a462b6 100644 --- a/demos/boxes/basic.vsh +++ b/demos/boxes/basic.vsh @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/dotted.fsh b/demos/boxes/dotted.fsh index 26425f6..071a207 100644 --- a/demos/boxes/dotted.fsh +++ b/demos/boxes/dotted.fsh @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/fresnel.fsh b/demos/boxes/fresnel.fsh index dd98061..1258838 100644 --- a/demos/boxes/fresnel.fsh +++ b/demos/boxes/fresnel.fsh @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glass.fsh b/demos/boxes/glass.fsh index 2b59a0a..bf0b3de 100644 --- a/demos/boxes/glass.fsh +++ b/demos/boxes/glass.fsh @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glbuffers.cpp b/demos/boxes/glbuffers.cpp index b2a594e..374cb8c 100644 --- a/demos/boxes/glbuffers.cpp +++ b/demos/boxes/glbuffers.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glbuffers.h b/demos/boxes/glbuffers.h index 88de4e8..c9e866d 100644 --- a/demos/boxes/glbuffers.h +++ b/demos/boxes/glbuffers.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glextensions.cpp b/demos/boxes/glextensions.cpp index 59256a8..28bc0cb 100644 --- a/demos/boxes/glextensions.cpp +++ b/demos/boxes/glextensions.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glextensions.h b/demos/boxes/glextensions.h index 7ba3b32..a4cb503 100644 --- a/demos/boxes/glextensions.h +++ b/demos/boxes/glextensions.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glshaders.cpp b/demos/boxes/glshaders.cpp index 094fd77..f548773 100644 --- a/demos/boxes/glshaders.cpp +++ b/demos/boxes/glshaders.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/glshaders.h b/demos/boxes/glshaders.h index 2b6209a..aedf7e5 100644 --- a/demos/boxes/glshaders.h +++ b/demos/boxes/glshaders.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/gltrianglemesh.h b/demos/boxes/gltrianglemesh.h index c06ce90..7398982 100644 --- a/demos/boxes/gltrianglemesh.h +++ b/demos/boxes/gltrianglemesh.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/granite.fsh b/demos/boxes/granite.fsh index 9b75d1d..75b4bd8 100644 --- a/demos/boxes/granite.fsh +++ b/demos/boxes/granite.fsh @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/main.cpp b/demos/boxes/main.cpp index 10bbde1..3ed6719 100644 --- a/demos/boxes/main.cpp +++ b/demos/boxes/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/marble.fsh b/demos/boxes/marble.fsh index 62d3c9f..90133ee 100644 --- a/demos/boxes/marble.fsh +++ b/demos/boxes/marble.fsh @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/qtbox.cpp b/demos/boxes/qtbox.cpp index 0607698..dc1ad63 100644 --- a/demos/boxes/qtbox.cpp +++ b/demos/boxes/qtbox.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/qtbox.h b/demos/boxes/qtbox.h index aae8256..f72ffdb 100644 --- a/demos/boxes/qtbox.h +++ b/demos/boxes/qtbox.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/reflection.fsh b/demos/boxes/reflection.fsh index d5807ee..4af6e64 100644 --- a/demos/boxes/reflection.fsh +++ b/demos/boxes/reflection.fsh @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/refraction.fsh b/demos/boxes/refraction.fsh index f91c24d..732fc1e 100644 --- a/demos/boxes/refraction.fsh +++ b/demos/boxes/refraction.fsh @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/roundedbox.cpp b/demos/boxes/roundedbox.cpp index f238da2..1834c80 100644 --- a/demos/boxes/roundedbox.cpp +++ b/demos/boxes/roundedbox.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/roundedbox.h b/demos/boxes/roundedbox.h index b934ade..f45bad4 100644 --- a/demos/boxes/roundedbox.h +++ b/demos/boxes/roundedbox.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/scene.cpp b/demos/boxes/scene.cpp index 1040e17..7ec2702 100644 --- a/demos/boxes/scene.cpp +++ b/demos/boxes/scene.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/scene.h b/demos/boxes/scene.h index 2db9317..aeefc83 100644 --- a/demos/boxes/scene.h +++ b/demos/boxes/scene.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/trackball.cpp b/demos/boxes/trackball.cpp index 980f6ed..aa836e3 100644 --- a/demos/boxes/trackball.cpp +++ b/demos/boxes/trackball.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/trackball.h b/demos/boxes/trackball.h index 5e3f40c..f4ca22e 100644 --- a/demos/boxes/trackball.h +++ b/demos/boxes/trackball.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/vector.h b/demos/boxes/vector.h index bb24531..9f5d447 100644 --- a/demos/boxes/vector.h +++ b/demos/boxes/vector.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/boxes/wood.fsh b/demos/boxes/wood.fsh index 35bf7d6..8f4f9be 100644 --- a/demos/boxes/wood.fsh +++ b/demos/boxes/wood.fsh @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/autosaver.cpp b/demos/browser/autosaver.cpp index 4e945f0..8ea275e 100644 --- a/demos/browser/autosaver.cpp +++ b/demos/browser/autosaver.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/autosaver.h b/demos/browser/autosaver.h index bb340cd..8d88e7f 100644 --- a/demos/browser/autosaver.h +++ b/demos/browser/autosaver.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/bookmarks.cpp b/demos/browser/bookmarks.cpp index 8e7823d..05119f6 100644 --- a/demos/browser/bookmarks.cpp +++ b/demos/browser/bookmarks.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/bookmarks.h b/demos/browser/bookmarks.h index fb47b4f..1079b56 100644 --- a/demos/browser/bookmarks.h +++ b/demos/browser/bookmarks.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/browserapplication.cpp b/demos/browser/browserapplication.cpp index 5433022..5ef3ce6 100644 --- a/demos/browser/browserapplication.cpp +++ b/demos/browser/browserapplication.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/browserapplication.h b/demos/browser/browserapplication.h index 6887dfd..6c60edf 100644 --- a/demos/browser/browserapplication.h +++ b/demos/browser/browserapplication.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/browsermainwindow.cpp b/demos/browser/browsermainwindow.cpp index f1dcaef..88abb6a 100644 --- a/demos/browser/browsermainwindow.cpp +++ b/demos/browser/browsermainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/browsermainwindow.h b/demos/browser/browsermainwindow.h index eaf976c..7e9d53f 100644 --- a/demos/browser/browsermainwindow.h +++ b/demos/browser/browsermainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/chasewidget.cpp b/demos/browser/chasewidget.cpp index 7ebe282..15bfa90 100644 --- a/demos/browser/chasewidget.cpp +++ b/demos/browser/chasewidget.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/chasewidget.h b/demos/browser/chasewidget.h index 78968ba..3405a6d 100644 --- a/demos/browser/chasewidget.h +++ b/demos/browser/chasewidget.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/cookiejar.cpp b/demos/browser/cookiejar.cpp index 9e11c8e..f323688 100644 --- a/demos/browser/cookiejar.cpp +++ b/demos/browser/cookiejar.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/cookiejar.h b/demos/browser/cookiejar.h index ffcd4c1..5e8b7c7 100644 --- a/demos/browser/cookiejar.h +++ b/demos/browser/cookiejar.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/downloadmanager.cpp b/demos/browser/downloadmanager.cpp index af31391..8d4be73 100644 --- a/demos/browser/downloadmanager.cpp +++ b/demos/browser/downloadmanager.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/downloadmanager.h b/demos/browser/downloadmanager.h index 85318da..0702982 100644 --- a/demos/browser/downloadmanager.h +++ b/demos/browser/downloadmanager.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/edittableview.cpp b/demos/browser/edittableview.cpp index 0d776a7..d9539d4 100644 --- a/demos/browser/edittableview.cpp +++ b/demos/browser/edittableview.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/edittableview.h b/demos/browser/edittableview.h index 3ae63e0..cec9804 100644 --- a/demos/browser/edittableview.h +++ b/demos/browser/edittableview.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/edittreeview.cpp b/demos/browser/edittreeview.cpp index 0331ba7..6ee7f9b 100644 --- a/demos/browser/edittreeview.cpp +++ b/demos/browser/edittreeview.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/edittreeview.h b/demos/browser/edittreeview.h index 97b9804..5a60c6b 100644 --- a/demos/browser/edittreeview.h +++ b/demos/browser/edittreeview.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/history.cpp b/demos/browser/history.cpp index 80e7372..a6006f4 100644 --- a/demos/browser/history.cpp +++ b/demos/browser/history.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/history.h b/demos/browser/history.h index 4f4edcd..0aeaa63 100644 --- a/demos/browser/history.h +++ b/demos/browser/history.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/main.cpp b/demos/browser/main.cpp index a59b2fb..9d7d7ed 100644 --- a/demos/browser/main.cpp +++ b/demos/browser/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/modelmenu.cpp b/demos/browser/modelmenu.cpp index 9403ef1..fb201ca 100644 --- a/demos/browser/modelmenu.cpp +++ b/demos/browser/modelmenu.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/modelmenu.h b/demos/browser/modelmenu.h index edd2e04..4d88b0c 100644 --- a/demos/browser/modelmenu.h +++ b/demos/browser/modelmenu.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/networkaccessmanager.cpp b/demos/browser/networkaccessmanager.cpp index 2e7b2fd..be65597 100644 --- a/demos/browser/networkaccessmanager.cpp +++ b/demos/browser/networkaccessmanager.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/networkaccessmanager.h b/demos/browser/networkaccessmanager.h index d016e76..2d89f29 100644 --- a/demos/browser/networkaccessmanager.h +++ b/demos/browser/networkaccessmanager.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/searchlineedit.cpp b/demos/browser/searchlineedit.cpp index 8f668e0..0f38dd2 100644 --- a/demos/browser/searchlineedit.cpp +++ b/demos/browser/searchlineedit.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/searchlineedit.h b/demos/browser/searchlineedit.h index be17e05..7b3c86c 100644 --- a/demos/browser/searchlineedit.h +++ b/demos/browser/searchlineedit.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/settings.cpp b/demos/browser/settings.cpp index 09f4846..9faed5e 100644 --- a/demos/browser/settings.cpp +++ b/demos/browser/settings.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/settings.h b/demos/browser/settings.h index a7a0a35..8a2396f 100644 --- a/demos/browser/settings.h +++ b/demos/browser/settings.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/squeezelabel.cpp b/demos/browser/squeezelabel.cpp index 3209e16..1ea6267 100644 --- a/demos/browser/squeezelabel.cpp +++ b/demos/browser/squeezelabel.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/squeezelabel.h b/demos/browser/squeezelabel.h index 2f82240..6eb0c46 100644 --- a/demos/browser/squeezelabel.h +++ b/demos/browser/squeezelabel.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/tabwidget.cpp b/demos/browser/tabwidget.cpp index 7a2ee40..8727b78 100644 --- a/demos/browser/tabwidget.cpp +++ b/demos/browser/tabwidget.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/tabwidget.h b/demos/browser/tabwidget.h index da3fe42..bf9ca1c 100644 --- a/demos/browser/tabwidget.h +++ b/demos/browser/tabwidget.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/toolbarsearch.cpp b/demos/browser/toolbarsearch.cpp index 255b5e9..877832b 100644 --- a/demos/browser/toolbarsearch.cpp +++ b/demos/browser/toolbarsearch.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/toolbarsearch.h b/demos/browser/toolbarsearch.h index 8e1be8d..e0e0b0d 100644 --- a/demos/browser/toolbarsearch.h +++ b/demos/browser/toolbarsearch.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/urllineedit.cpp b/demos/browser/urllineedit.cpp index f7a6345..2330306 100644 --- a/demos/browser/urllineedit.cpp +++ b/demos/browser/urllineedit.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/urllineedit.h b/demos/browser/urllineedit.h index 6a718f0..fd15b09 100644 --- a/demos/browser/urllineedit.h +++ b/demos/browser/urllineedit.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/webview.cpp b/demos/browser/webview.cpp index 6c4d857..84ce5ef 100644 --- a/demos/browser/webview.cpp +++ b/demos/browser/webview.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/webview.h b/demos/browser/webview.h index a41bcf3..29fab12 100644 --- a/demos/browser/webview.h +++ b/demos/browser/webview.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/xbel.cpp b/demos/browser/xbel.cpp index a92b649..be04709 100644 --- a/demos/browser/xbel.cpp +++ b/demos/browser/xbel.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/browser/xbel.h b/demos/browser/xbel.h index b736d02..e780db6 100644 --- a/demos/browser/xbel.h +++ b/demos/browser/xbel.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/chip.cpp b/demos/chip/chip.cpp index c2b22da..8d3ea31 100644 --- a/demos/chip/chip.cpp +++ b/demos/chip/chip.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/chip.h b/demos/chip/chip.h index 9866f80..e1ae906 100644 --- a/demos/chip/chip.h +++ b/demos/chip/chip.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/main.cpp b/demos/chip/main.cpp index e945026..848fd52 100644 --- a/demos/chip/main.cpp +++ b/demos/chip/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/mainwindow.cpp b/demos/chip/mainwindow.cpp index 5222cd4..9eeccd8 100644 --- a/demos/chip/mainwindow.cpp +++ b/demos/chip/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/mainwindow.h b/demos/chip/mainwindow.h index 5decca8..8e763d9 100644 --- a/demos/chip/mainwindow.h +++ b/demos/chip/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/view.cpp b/demos/chip/view.cpp index f919af3..3850b9e 100644 --- a/demos/chip/view.cpp +++ b/demos/chip/view.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/chip/view.h b/demos/chip/view.h index 4987f60..c296e9f 100644 --- a/demos/chip/view.h +++ b/demos/chip/view.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/composition/composition.cpp b/demos/composition/composition.cpp index b43c66b..6191165 100644 --- a/demos/composition/composition.cpp +++ b/demos/composition/composition.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/composition/composition.h b/demos/composition/composition.h index 1d504d0..d2551a5 100644 --- a/demos/composition/composition.h +++ b/demos/composition/composition.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/composition/main.cpp b/demos/composition/main.cpp index 74055b2..5218bf8 100644 --- a/demos/composition/main.cpp +++ b/demos/composition/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/deform/main.cpp b/demos/deform/main.cpp index e32fa12..d267d07 100644 --- a/demos/deform/main.cpp +++ b/demos/deform/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/deform/pathdeform.cpp b/demos/deform/pathdeform.cpp index 2e1d89a..cc5a3df 100644 --- a/demos/deform/pathdeform.cpp +++ b/demos/deform/pathdeform.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/deform/pathdeform.h b/demos/deform/pathdeform.h index 45edb26..52534e8 100644 --- a/demos/deform/pathdeform.h +++ b/demos/deform/pathdeform.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.cpp b/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.cpp index 1bd99c9..2393c4e 100644 --- a/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.cpp +++ b/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.h b/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.h index c0af3cf..1171b32 100644 --- a/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.h +++ b/demos/embedded/embeddedsvgviewer/embeddedsvgviewer.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/embeddedsvgviewer/main.cpp b/demos/embedded/embeddedsvgviewer/main.cpp index 80f92d6..648e114 100644 --- a/demos/embedded/embeddedsvgviewer/main.cpp +++ b/demos/embedded/embeddedsvgviewer/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/demoapplication.cpp b/demos/embedded/fluidlauncher/demoapplication.cpp index c5abfb9..31a7628 100644 --- a/demos/embedded/fluidlauncher/demoapplication.cpp +++ b/demos/embedded/fluidlauncher/demoapplication.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/demoapplication.h b/demos/embedded/fluidlauncher/demoapplication.h index 84ce1d4..7864d85 100644 --- a/demos/embedded/fluidlauncher/demoapplication.h +++ b/demos/embedded/fluidlauncher/demoapplication.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/fluidlauncher.cpp b/demos/embedded/fluidlauncher/fluidlauncher.cpp index f80e6ca..7035fb7 100644 --- a/demos/embedded/fluidlauncher/fluidlauncher.cpp +++ b/demos/embedded/fluidlauncher/fluidlauncher.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/fluidlauncher.h b/demos/embedded/fluidlauncher/fluidlauncher.h index 3f4c1fe..1167aef 100644 --- a/demos/embedded/fluidlauncher/fluidlauncher.h +++ b/demos/embedded/fluidlauncher/fluidlauncher.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/main.cpp b/demos/embedded/fluidlauncher/main.cpp index 05e820e..b7c78ff 100644 --- a/demos/embedded/fluidlauncher/main.cpp +++ b/demos/embedded/fluidlauncher/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/pictureflow.cpp b/demos/embedded/fluidlauncher/pictureflow.cpp index 04bbf05..c8b01ae 100644 --- a/demos/embedded/fluidlauncher/pictureflow.cpp +++ b/demos/embedded/fluidlauncher/pictureflow.cpp @@ -32,7 +32,7 @@ * met: http://www.gnu.org/copyleft/gpl.html. * * If you are unsure which license is appropriate for your use, please -* contact the sales department at qt-sales@nokia.com. +* contact the sales department at http://www.qtsoftware.com/contact. * $QT_END_LICENSE$ * * diff --git a/demos/embedded/fluidlauncher/pictureflow.h b/demos/embedded/fluidlauncher/pictureflow.h index fccc7a3..05090f2 100644 --- a/demos/embedded/fluidlauncher/pictureflow.h +++ b/demos/embedded/fluidlauncher/pictureflow.h @@ -32,7 +32,7 @@ * met: http://www.gnu.org/copyleft/gpl.html. * * If you are unsure which license is appropriate for your use, please -* contact the sales department at qt-sales@nokia.com. +* contact the sales department at http://www.qtsoftware.com/contact. * $QT_END_LICENSE$ * * diff --git a/demos/embedded/fluidlauncher/slideshow.cpp b/demos/embedded/fluidlauncher/slideshow.cpp index 8f643b4..8ffdd15 100644 --- a/demos/embedded/fluidlauncher/slideshow.cpp +++ b/demos/embedded/fluidlauncher/slideshow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/fluidlauncher/slideshow.h b/demos/embedded/fluidlauncher/slideshow.h index 27fb87b..3cc1d7c 100644 --- a/demos/embedded/fluidlauncher/slideshow.h +++ b/demos/embedded/fluidlauncher/slideshow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/styledemo/main.cpp b/demos/embedded/styledemo/main.cpp index 6a7472e..e34a628 100644 --- a/demos/embedded/styledemo/main.cpp +++ b/demos/embedded/styledemo/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/styledemo/stylewidget.cpp b/demos/embedded/styledemo/stylewidget.cpp index 304dd36..26673ba 100644 --- a/demos/embedded/styledemo/stylewidget.cpp +++ b/demos/embedded/styledemo/stylewidget.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embedded/styledemo/stylewidget.h b/demos/embedded/styledemo/stylewidget.h index 5ccb418..88e9461 100644 --- a/demos/embedded/styledemo/stylewidget.h +++ b/demos/embedded/styledemo/stylewidget.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embeddeddialogs/customproxy.cpp b/demos/embeddeddialogs/customproxy.cpp index dd8766f..2ea5552 100644 --- a/demos/embeddeddialogs/customproxy.cpp +++ b/demos/embeddeddialogs/customproxy.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embeddeddialogs/customproxy.h b/demos/embeddeddialogs/customproxy.h index d324426..e5ea9ce 100644 --- a/demos/embeddeddialogs/customproxy.h +++ b/demos/embeddeddialogs/customproxy.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embeddeddialogs/embeddeddialog.cpp b/demos/embeddeddialogs/embeddeddialog.cpp index 40f361c..f49fc0c 100644 --- a/demos/embeddeddialogs/embeddeddialog.cpp +++ b/demos/embeddeddialogs/embeddeddialog.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embeddeddialogs/embeddeddialog.h b/demos/embeddeddialogs/embeddeddialog.h index 787196c..a4f9f3a 100644 --- a/demos/embeddeddialogs/embeddeddialog.h +++ b/demos/embeddeddialogs/embeddeddialog.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/embeddeddialogs/main.cpp b/demos/embeddeddialogs/main.cpp index cfb31c4..3ffcd2f 100644 --- a/demos/embeddeddialogs/main.cpp +++ b/demos/embeddeddialogs/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/gradients/gradients.cpp b/demos/gradients/gradients.cpp index 6256ba9..f4c1adb 100644 --- a/demos/gradients/gradients.cpp +++ b/demos/gradients/gradients.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/gradients/gradients.h b/demos/gradients/gradients.h index 74e8417..a138d04 100644 --- a/demos/gradients/gradients.h +++ b/demos/gradients/gradients.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/gradients/main.cpp b/demos/gradients/main.cpp index f880510..bf7e78b 100644 --- a/demos/gradients/main.cpp +++ b/demos/gradients/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/interview/main.cpp b/demos/interview/main.cpp index 9682322..713b4ab 100644 --- a/demos/interview/main.cpp +++ b/demos/interview/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/interview/model.cpp b/demos/interview/model.cpp index 1d5040c..a302bae 100644 --- a/demos/interview/model.cpp +++ b/demos/interview/model.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/interview/model.h b/demos/interview/model.h index 96e6aea..26f71a3 100644 --- a/demos/interview/model.h +++ b/demos/interview/model.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/macmainwindow/macmainwindow.h b/demos/macmainwindow/macmainwindow.h index b5e4740..7a74943 100644 --- a/demos/macmainwindow/macmainwindow.h +++ b/demos/macmainwindow/macmainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/macmainwindow/macmainwindow.mm b/demos/macmainwindow/macmainwindow.mm index 156e793..a5090a1 100644 --- a/demos/macmainwindow/macmainwindow.mm +++ b/demos/macmainwindow/macmainwindow.mm @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/macmainwindow/main.cpp b/demos/macmainwindow/main.cpp index 2b01cfe..70bc77c 100644 --- a/demos/macmainwindow/main.cpp +++ b/demos/macmainwindow/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/colorswatch.cpp b/demos/mainwindow/colorswatch.cpp index ba6a076..c8e71b5 100644 --- a/demos/mainwindow/colorswatch.cpp +++ b/demos/mainwindow/colorswatch.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/colorswatch.h b/demos/mainwindow/colorswatch.h index 57c5ac6..4401951 100644 --- a/demos/mainwindow/colorswatch.h +++ b/demos/mainwindow/colorswatch.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/main.cpp b/demos/mainwindow/main.cpp index 46268b5..c17c0d1 100644 --- a/demos/mainwindow/main.cpp +++ b/demos/mainwindow/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/mainwindow.cpp b/demos/mainwindow/mainwindow.cpp index 7edaf52..3315a96 100644 --- a/demos/mainwindow/mainwindow.cpp +++ b/demos/mainwindow/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/mainwindow.h b/demos/mainwindow/mainwindow.h index 9c7f620..3be96f8 100644 --- a/demos/mainwindow/mainwindow.h +++ b/demos/mainwindow/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/toolbar.cpp b/demos/mainwindow/toolbar.cpp index 9de1348..cd03494 100644 --- a/demos/mainwindow/toolbar.cpp +++ b/demos/mainwindow/toolbar.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mainwindow/toolbar.h b/demos/mainwindow/toolbar.h index a9b9af2..f9feecc 100644 --- a/demos/mainwindow/toolbar.h +++ b/demos/mainwindow/toolbar.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/mediaplayer/main.cpp b/demos/mediaplayer/main.cpp index 279a6c7..cac77af 100644 --- a/demos/mediaplayer/main.cpp +++ b/demos/mediaplayer/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ***************************************************************************/ diff --git a/demos/mediaplayer/mediaplayer.cpp b/demos/mediaplayer/mediaplayer.cpp index 5f5a5dc..6ce823f 100644 --- a/demos/mediaplayer/mediaplayer.cpp +++ b/demos/mediaplayer/mediaplayer.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ***************************************************************************/ diff --git a/demos/mediaplayer/mediaplayer.h b/demos/mediaplayer/mediaplayer.h index d162435..509ff94 100644 --- a/demos/mediaplayer/mediaplayer.h +++ b/demos/mediaplayer/mediaplayer.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ***************************************************************************/ diff --git a/demos/pathstroke/main.cpp b/demos/pathstroke/main.cpp index 613d835..baff24e 100644 --- a/demos/pathstroke/main.cpp +++ b/demos/pathstroke/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/pathstroke/pathstroke.cpp b/demos/pathstroke/pathstroke.cpp index d079490..83ed249 100644 --- a/demos/pathstroke/pathstroke.cpp +++ b/demos/pathstroke/pathstroke.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/pathstroke/pathstroke.h b/demos/pathstroke/pathstroke.h index 99f17a7..f9ce05a 100644 --- a/demos/pathstroke/pathstroke.h +++ b/demos/pathstroke/pathstroke.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/colors.cpp b/demos/qtdemo/colors.cpp index 048cb98..7593df8 100644 --- a/demos/qtdemo/colors.cpp +++ b/demos/qtdemo/colors.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/colors.h b/demos/qtdemo/colors.h index 58865c6..3eadb98 100644 --- a/demos/qtdemo/colors.h +++ b/demos/qtdemo/colors.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoitem.cpp b/demos/qtdemo/demoitem.cpp index 0335bd3..7a785e5 100644 --- a/demos/qtdemo/demoitem.cpp +++ b/demos/qtdemo/demoitem.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoitem.h b/demos/qtdemo/demoitem.h index e03327b..c9178f6 100644 --- a/demos/qtdemo/demoitem.h +++ b/demos/qtdemo/demoitem.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoitemanimation.cpp b/demos/qtdemo/demoitemanimation.cpp index 92b2d24..8f5c892 100644 --- a/demos/qtdemo/demoitemanimation.cpp +++ b/demos/qtdemo/demoitemanimation.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoitemanimation.h b/demos/qtdemo/demoitemanimation.h index ad89ada..07a1a8c 100644 --- a/demos/qtdemo/demoitemanimation.h +++ b/demos/qtdemo/demoitemanimation.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoscene.cpp b/demos/qtdemo/demoscene.cpp index 29b73d3..bb6a9a0 100644 --- a/demos/qtdemo/demoscene.cpp +++ b/demos/qtdemo/demoscene.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demoscene.h b/demos/qtdemo/demoscene.h index e4838c7..fcf3f3f 100644 --- a/demos/qtdemo/demoscene.h +++ b/demos/qtdemo/demoscene.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demotextitem.cpp b/demos/qtdemo/demotextitem.cpp index cd549fc..07ee4c5 100644 --- a/demos/qtdemo/demotextitem.cpp +++ b/demos/qtdemo/demotextitem.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/demotextitem.h b/demos/qtdemo/demotextitem.h index 679e3fb..a33ebb5 100644 --- a/demos/qtdemo/demotextitem.h +++ b/demos/qtdemo/demotextitem.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/dockitem.cpp b/demos/qtdemo/dockitem.cpp index 7f26f04..7f51e1c 100644 --- a/demos/qtdemo/dockitem.cpp +++ b/demos/qtdemo/dockitem.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/dockitem.h b/demos/qtdemo/dockitem.h index 13473a3..ac46dfb 100644 --- a/demos/qtdemo/dockitem.h +++ b/demos/qtdemo/dockitem.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/examplecontent.cpp b/demos/qtdemo/examplecontent.cpp index a568b8c..d72650c 100644 --- a/demos/qtdemo/examplecontent.cpp +++ b/demos/qtdemo/examplecontent.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/examplecontent.h b/demos/qtdemo/examplecontent.h index 850d64b..a06be61 100644 --- a/demos/qtdemo/examplecontent.h +++ b/demos/qtdemo/examplecontent.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guide.cpp b/demos/qtdemo/guide.cpp index 1f3c355..87ddb1a 100644 --- a/demos/qtdemo/guide.cpp +++ b/demos/qtdemo/guide.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guide.h b/demos/qtdemo/guide.h index 51ce6c3..decf968 100644 --- a/demos/qtdemo/guide.h +++ b/demos/qtdemo/guide.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guidecircle.cpp b/demos/qtdemo/guidecircle.cpp index 98328dc..f22765b 100644 --- a/demos/qtdemo/guidecircle.cpp +++ b/demos/qtdemo/guidecircle.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guidecircle.h b/demos/qtdemo/guidecircle.h index 2179527..7eeabfb 100644 --- a/demos/qtdemo/guidecircle.h +++ b/demos/qtdemo/guidecircle.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guideline.cpp b/demos/qtdemo/guideline.cpp index ac01339..cf2a405 100644 --- a/demos/qtdemo/guideline.cpp +++ b/demos/qtdemo/guideline.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/guideline.h b/demos/qtdemo/guideline.h index 93daaa8..133acc4 100644 --- a/demos/qtdemo/guideline.h +++ b/demos/qtdemo/guideline.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/headingitem.cpp b/demos/qtdemo/headingitem.cpp index 80a255a..5291f85 100644 --- a/demos/qtdemo/headingitem.cpp +++ b/demos/qtdemo/headingitem.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/headingitem.h b/demos/qtdemo/headingitem.h index a5cb997..fede69d 100644 --- a/demos/qtdemo/headingitem.h +++ b/demos/qtdemo/headingitem.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/imageitem.cpp b/demos/qtdemo/imageitem.cpp index e556011..9b7ff64 100644 --- a/demos/qtdemo/imageitem.cpp +++ b/demos/qtdemo/imageitem.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/imageitem.h b/demos/qtdemo/imageitem.h index e73079a..10f0bc7 100644 --- a/demos/qtdemo/imageitem.h +++ b/demos/qtdemo/imageitem.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/itemcircleanimation.cpp b/demos/qtdemo/itemcircleanimation.cpp index fff52bb..ece700a 100644 --- a/demos/qtdemo/itemcircleanimation.cpp +++ b/demos/qtdemo/itemcircleanimation.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/itemcircleanimation.h b/demos/qtdemo/itemcircleanimation.h index 27e399c..934b2e8 100644 --- a/demos/qtdemo/itemcircleanimation.h +++ b/demos/qtdemo/itemcircleanimation.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/letteritem.cpp b/demos/qtdemo/letteritem.cpp index 7b814b1..11a16d2 100644 --- a/demos/qtdemo/letteritem.cpp +++ b/demos/qtdemo/letteritem.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/letteritem.h b/demos/qtdemo/letteritem.h index 8c3f16e..e2f3c15 100644 --- a/demos/qtdemo/letteritem.h +++ b/demos/qtdemo/letteritem.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/main.cpp b/demos/qtdemo/main.cpp index bf2028d..bc97683 100644 --- a/demos/qtdemo/main.cpp +++ b/demos/qtdemo/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/mainwindow.cpp b/demos/qtdemo/mainwindow.cpp index bfffba5..fe59f68 100644 --- a/demos/qtdemo/mainwindow.cpp +++ b/demos/qtdemo/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/mainwindow.h b/demos/qtdemo/mainwindow.h index 388a392..ab57517 100644 --- a/demos/qtdemo/mainwindow.h +++ b/demos/qtdemo/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/menucontent.cpp b/demos/qtdemo/menucontent.cpp index a74cfe4..dbdd10e 100644 --- a/demos/qtdemo/menucontent.cpp +++ b/demos/qtdemo/menucontent.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/menucontent.h b/demos/qtdemo/menucontent.h index 737492d..5636d6f 100644 --- a/demos/qtdemo/menucontent.h +++ b/demos/qtdemo/menucontent.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/menumanager.cpp b/demos/qtdemo/menumanager.cpp index a9e9b4b..f19cd2c 100644 --- a/demos/qtdemo/menumanager.cpp +++ b/demos/qtdemo/menumanager.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/menumanager.h b/demos/qtdemo/menumanager.h index 3a12c54..d890bd7 100644 --- a/demos/qtdemo/menumanager.h +++ b/demos/qtdemo/menumanager.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/scanitem.cpp b/demos/qtdemo/scanitem.cpp index 0eab840..fe4c523 100644 --- a/demos/qtdemo/scanitem.cpp +++ b/demos/qtdemo/scanitem.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/scanitem.h b/demos/qtdemo/scanitem.h index b0b5ffc..c052d4e 100644 --- a/demos/qtdemo/scanitem.h +++ b/demos/qtdemo/scanitem.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/score.cpp b/demos/qtdemo/score.cpp index f45ba0d..a6ffa17 100644 --- a/demos/qtdemo/score.cpp +++ b/demos/qtdemo/score.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/score.h b/demos/qtdemo/score.h index bfed5d2..694a4fc 100644 --- a/demos/qtdemo/score.h +++ b/demos/qtdemo/score.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/textbutton.cpp b/demos/qtdemo/textbutton.cpp index 96e1a23..00b6674 100644 --- a/demos/qtdemo/textbutton.cpp +++ b/demos/qtdemo/textbutton.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/qtdemo/textbutton.h b/demos/qtdemo/textbutton.h index b7c91fb..40dab51 100644 --- a/demos/qtdemo/textbutton.h +++ b/demos/qtdemo/textbutton.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/arthurstyle.cpp b/demos/shared/arthurstyle.cpp index 846d2f3..652fcdc 100644 --- a/demos/shared/arthurstyle.cpp +++ b/demos/shared/arthurstyle.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/arthurstyle.h b/demos/shared/arthurstyle.h index ec79361..e1e2e61 100644 --- a/demos/shared/arthurstyle.h +++ b/demos/shared/arthurstyle.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/arthurwidgets.cpp b/demos/shared/arthurwidgets.cpp index f9eed99..548d5e6 100644 --- a/demos/shared/arthurwidgets.cpp +++ b/demos/shared/arthurwidgets.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/arthurwidgets.h b/demos/shared/arthurwidgets.h index 4d55b61..e61510d 100644 --- a/demos/shared/arthurwidgets.h +++ b/demos/shared/arthurwidgets.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/hoverpoints.cpp b/demos/shared/hoverpoints.cpp index 70062f6..44a8e35 100644 --- a/demos/shared/hoverpoints.cpp +++ b/demos/shared/hoverpoints.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/shared/hoverpoints.h b/demos/shared/hoverpoints.h index cf8742d..6dfb144 100644 --- a/demos/shared/hoverpoints.h +++ b/demos/shared/hoverpoints.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/main.cpp b/demos/spreadsheet/main.cpp index 7a71641..5a03ddb 100644 --- a/demos/spreadsheet/main.cpp +++ b/demos/spreadsheet/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/printview.cpp b/demos/spreadsheet/printview.cpp index 76c4ae8..0afba6f 100644 --- a/demos/spreadsheet/printview.cpp +++ b/demos/spreadsheet/printview.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/printview.h b/demos/spreadsheet/printview.h index 3f2b918..9310cfa 100644 --- a/demos/spreadsheet/printview.h +++ b/demos/spreadsheet/printview.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheet.cpp b/demos/spreadsheet/spreadsheet.cpp index 742855e..66abf60 100644 --- a/demos/spreadsheet/spreadsheet.cpp +++ b/demos/spreadsheet/spreadsheet.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheet.h b/demos/spreadsheet/spreadsheet.h index 944433d..047d684 100644 --- a/demos/spreadsheet/spreadsheet.h +++ b/demos/spreadsheet/spreadsheet.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheetdelegate.cpp b/demos/spreadsheet/spreadsheetdelegate.cpp index 2916757..c0be498 100644 --- a/demos/spreadsheet/spreadsheetdelegate.cpp +++ b/demos/spreadsheet/spreadsheetdelegate.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheetdelegate.h b/demos/spreadsheet/spreadsheetdelegate.h index 3b7b9ac..5670dcb 100644 --- a/demos/spreadsheet/spreadsheetdelegate.h +++ b/demos/spreadsheet/spreadsheetdelegate.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheetitem.cpp b/demos/spreadsheet/spreadsheetitem.cpp index 8f94b87..d579a7c 100644 --- a/demos/spreadsheet/spreadsheetitem.cpp +++ b/demos/spreadsheet/spreadsheetitem.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/spreadsheet/spreadsheetitem.h b/demos/spreadsheet/spreadsheetitem.h index 5996d73..66d9f83 100644 --- a/demos/spreadsheet/spreadsheetitem.h +++ b/demos/spreadsheet/spreadsheetitem.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/browser.cpp b/demos/sqlbrowser/browser.cpp index f7b24db..d7546d7 100644 --- a/demos/sqlbrowser/browser.cpp +++ b/demos/sqlbrowser/browser.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/browser.h b/demos/sqlbrowser/browser.h index 787675b..2591881 100644 --- a/demos/sqlbrowser/browser.h +++ b/demos/sqlbrowser/browser.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/connectionwidget.cpp b/demos/sqlbrowser/connectionwidget.cpp index 7df28ac..a02fa7a 100644 --- a/demos/sqlbrowser/connectionwidget.cpp +++ b/demos/sqlbrowser/connectionwidget.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/connectionwidget.h b/demos/sqlbrowser/connectionwidget.h index 5c48414..3147cb6 100644 --- a/demos/sqlbrowser/connectionwidget.h +++ b/demos/sqlbrowser/connectionwidget.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/main.cpp b/demos/sqlbrowser/main.cpp index b7b7fe5..3087667 100644 --- a/demos/sqlbrowser/main.cpp +++ b/demos/sqlbrowser/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/qsqlconnectiondialog.cpp b/demos/sqlbrowser/qsqlconnectiondialog.cpp index a2e3c89..379acbc 100644 --- a/demos/sqlbrowser/qsqlconnectiondialog.cpp +++ b/demos/sqlbrowser/qsqlconnectiondialog.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/sqlbrowser/qsqlconnectiondialog.h b/demos/sqlbrowser/qsqlconnectiondialog.h index d5f3456..54bfec3 100644 --- a/demos/sqlbrowser/qsqlconnectiondialog.h +++ b/demos/sqlbrowser/qsqlconnectiondialog.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/textedit/main.cpp b/demos/textedit/main.cpp index fa38ecb..68aa49d 100644 --- a/demos/textedit/main.cpp +++ b/demos/textedit/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/textedit/textedit.cpp b/demos/textedit/textedit.cpp index 128cd6a..17516b4 100644 --- a/demos/textedit/textedit.cpp +++ b/demos/textedit/textedit.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/textedit/textedit.h b/demos/textedit/textedit.h index 1fb09f9..88991b3 100644 --- a/demos/textedit/textedit.h +++ b/demos/textedit/textedit.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/commands.cpp b/demos/undo/commands.cpp index 4802e34..2de4ee6 100644 --- a/demos/undo/commands.cpp +++ b/demos/undo/commands.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/commands.h b/demos/undo/commands.h index f98cb6d..356bd3b 100644 --- a/demos/undo/commands.h +++ b/demos/undo/commands.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/document.cpp b/demos/undo/document.cpp index df435fd..d0cc707 100644 --- a/demos/undo/document.cpp +++ b/demos/undo/document.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/document.h b/demos/undo/document.h index 0b12ad0..98ad520 100644 --- a/demos/undo/document.h +++ b/demos/undo/document.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/main.cpp b/demos/undo/main.cpp index f36a6e8..4d7c1ef 100644 --- a/demos/undo/main.cpp +++ b/demos/undo/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/mainwindow.cpp b/demos/undo/mainwindow.cpp index 409fd14..21e54b6 100644 --- a/demos/undo/mainwindow.cpp +++ b/demos/undo/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/demos/undo/mainwindow.h b/demos/undo/mainwindow.h index 5340e94..dc01e70 100644 --- a/demos/undo/mainwindow.h +++ b/demos/undo/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the demonstration applications of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/3rdparty.qdoc b/doc/src/3rdparty.qdoc index 23dfb12..0d86ab3 100644 --- a/doc/src/3rdparty.qdoc +++ b/doc/src/3rdparty.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/accelerators.qdoc b/doc/src/accelerators.qdoc index 538a245..6fe938e 100644 --- a/doc/src/accelerators.qdoc +++ b/doc/src/accelerators.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/accessible.qdoc b/doc/src/accessible.qdoc index ad9f4f1..befdb78 100644 --- a/doc/src/accessible.qdoc +++ b/doc/src/accessible.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/activeqt-dumpcpp.qdoc b/doc/src/activeqt-dumpcpp.qdoc index 9465a31..996d0dd 100644 --- a/doc/src/activeqt-dumpcpp.qdoc +++ b/doc/src/activeqt-dumpcpp.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/activeqt-dumpdoc.qdoc b/doc/src/activeqt-dumpdoc.qdoc index b9156f0..712263d 100644 --- a/doc/src/activeqt-dumpdoc.qdoc +++ b/doc/src/activeqt-dumpdoc.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/activeqt-idc.qdoc b/doc/src/activeqt-idc.qdoc index c570dcd..b942b17 100644 --- a/doc/src/activeqt-idc.qdoc +++ b/doc/src/activeqt-idc.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/activeqt-testcon.qdoc b/doc/src/activeqt-testcon.qdoc index aba0b58..7e3270c 100644 --- a/doc/src/activeqt-testcon.qdoc +++ b/doc/src/activeqt-testcon.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/activeqt.qdoc b/doc/src/activeqt.qdoc index 473f815..4744f76 100644 --- a/doc/src/activeqt.qdoc +++ b/doc/src/activeqt.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/annotated.qdoc b/doc/src/annotated.qdoc index 1950c45..a817df6 100644 --- a/doc/src/annotated.qdoc +++ b/doc/src/annotated.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -44,7 +44,7 @@ ** Documentation for class overview. ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/appicon.qdoc b/doc/src/appicon.qdoc index 4d29337..929eda8 100644 --- a/doc/src/appicon.qdoc +++ b/doc/src/appicon.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -44,7 +44,7 @@ ** Qt Application Icon Usage Documentation. ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/assistant-manual.qdoc b/doc/src/assistant-manual.qdoc index 6a735d2..c760638 100644 --- a/doc/src/assistant-manual.qdoc +++ b/doc/src/assistant-manual.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/atomic-operations.qdoc b/doc/src/atomic-operations.qdoc index 5c0973b..c49bba7 100644 --- a/doc/src/atomic-operations.qdoc +++ b/doc/src/atomic-operations.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/bughowto.qdoc b/doc/src/bughowto.qdoc index 2a17a34..927cb04 100644 --- a/doc/src/bughowto.qdoc +++ b/doc/src/bughowto.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/classes.qdoc b/doc/src/classes.qdoc index c25da2b..69ca716 100644 --- a/doc/src/classes.qdoc +++ b/doc/src/classes.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/codecs.qdoc b/doc/src/codecs.qdoc index eaeed3e..4380c6b 100644 --- a/doc/src/codecs.qdoc +++ b/doc/src/codecs.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/commercialeditions.qdoc b/doc/src/commercialeditions.qdoc index 987468c..97c6e47 100644 --- a/doc/src/commercialeditions.qdoc +++ b/doc/src/commercialeditions.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/compatclasses.qdoc b/doc/src/compatclasses.qdoc index 62bbdb5..cb6d7dd 100644 --- a/doc/src/compatclasses.qdoc +++ b/doc/src/compatclasses.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/containers.qdoc b/doc/src/containers.qdoc index d107277..11a4b0b 100644 --- a/doc/src/containers.qdoc +++ b/doc/src/containers.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/coordsys.qdoc b/doc/src/coordsys.qdoc index 604d233..7ba3946 100644 --- a/doc/src/coordsys.qdoc +++ b/doc/src/coordsys.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -44,7 +44,7 @@ ** Qt Coordinate System Documentation. ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/credits.qdoc b/doc/src/credits.qdoc index 6b48514..81ded04 100644 --- a/doc/src/credits.qdoc +++ b/doc/src/credits.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/custom-types.qdoc b/doc/src/custom-types.qdoc index 81eecfc..9fb5966 100644 --- a/doc/src/custom-types.qdoc +++ b/doc/src/custom-types.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/datastreamformat.qdoc b/doc/src/datastreamformat.qdoc index 15ac062..dea193f 100644 --- a/doc/src/datastreamformat.qdoc +++ b/doc/src/datastreamformat.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -44,7 +44,7 @@ ** Documentation of the Format of the QDataStream operators. ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/debug.qdoc b/doc/src/debug.qdoc index da5a82f..94b96f6 100644 --- a/doc/src/debug.qdoc +++ b/doc/src/debug.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -44,7 +44,7 @@ ** Qt Debugging Techniques ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/demos.qdoc b/doc/src/demos.qdoc index 9cc8df5..f0ec128 100644 --- a/doc/src/demos.qdoc +++ b/doc/src/demos.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/affine.qdoc b/doc/src/demos/affine.qdoc index 25e496e..d9f5f11 100644 --- a/doc/src/demos/affine.qdoc +++ b/doc/src/demos/affine.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/arthurplugin.qdoc b/doc/src/demos/arthurplugin.qdoc index 38c5d3c..0364b1b 100644 --- a/doc/src/demos/arthurplugin.qdoc +++ b/doc/src/demos/arthurplugin.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/books.qdoc b/doc/src/demos/books.qdoc index b491b2a..a4dea59 100644 --- a/doc/src/demos/books.qdoc +++ b/doc/src/demos/books.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/boxes.qdoc b/doc/src/demos/boxes.qdoc index db1155e..b9ff990 100644 --- a/doc/src/demos/boxes.qdoc +++ b/doc/src/demos/boxes.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/browser.qdoc b/doc/src/demos/browser.qdoc index 34bb80d..f58dd77 100644 --- a/doc/src/demos/browser.qdoc +++ b/doc/src/demos/browser.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/chip.qdoc b/doc/src/demos/chip.qdoc index 9e9b7b4..8588122 100644 --- a/doc/src/demos/chip.qdoc +++ b/doc/src/demos/chip.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/composition.qdoc b/doc/src/demos/composition.qdoc index 9c2c9d7..a6e8595 100644 --- a/doc/src/demos/composition.qdoc +++ b/doc/src/demos/composition.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/deform.qdoc b/doc/src/demos/deform.qdoc index 2b94e15..c77a87d 100644 --- a/doc/src/demos/deform.qdoc +++ b/doc/src/demos/deform.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/embeddeddialogs.qdoc b/doc/src/demos/embeddeddialogs.qdoc index f7d20cc..7db8d98 100644 --- a/doc/src/demos/embeddeddialogs.qdoc +++ b/doc/src/demos/embeddeddialogs.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/gradients.qdoc b/doc/src/demos/gradients.qdoc index 3e8575a..dc22a62 100644 --- a/doc/src/demos/gradients.qdoc +++ b/doc/src/demos/gradients.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/interview.qdoc b/doc/src/demos/interview.qdoc index c32c13c..da87455 100644 --- a/doc/src/demos/interview.qdoc +++ b/doc/src/demos/interview.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/macmainwindow.qdoc b/doc/src/demos/macmainwindow.qdoc index 3a59275..26b4b5f 100644 --- a/doc/src/demos/macmainwindow.qdoc +++ b/doc/src/demos/macmainwindow.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/mainwindow.qdoc b/doc/src/demos/mainwindow.qdoc index 58f2b65..1857f21 100644 --- a/doc/src/demos/mainwindow.qdoc +++ b/doc/src/demos/mainwindow.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/mediaplayer.qdoc b/doc/src/demos/mediaplayer.qdoc index 0e66908..4dc0233 100644 --- a/doc/src/demos/mediaplayer.qdoc +++ b/doc/src/demos/mediaplayer.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/pathstroke.qdoc b/doc/src/demos/pathstroke.qdoc index 1c817f6..f6683de 100644 --- a/doc/src/demos/pathstroke.qdoc +++ b/doc/src/demos/pathstroke.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/spreadsheet.qdoc b/doc/src/demos/spreadsheet.qdoc index 88eb7d6..6f63230 100644 --- a/doc/src/demos/spreadsheet.qdoc +++ b/doc/src/demos/spreadsheet.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/sqlbrowser.qdoc b/doc/src/demos/sqlbrowser.qdoc index 68c3656..9519563 100644 --- a/doc/src/demos/sqlbrowser.qdoc +++ b/doc/src/demos/sqlbrowser.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/textedit.qdoc b/doc/src/demos/textedit.qdoc index a99fc4a..64c86b5 100644 --- a/doc/src/demos/textedit.qdoc +++ b/doc/src/demos/textedit.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/demos/undo.qdoc b/doc/src/demos/undo.qdoc index 401986a..f88e566 100644 --- a/doc/src/demos/undo.qdoc +++ b/doc/src/demos/undo.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/deployment.qdoc b/doc/src/deployment.qdoc index 446c91b..0866930 100644 --- a/doc/src/deployment.qdoc +++ b/doc/src/deployment.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -42,7 +42,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/designer-manual.qdoc b/doc/src/designer-manual.qdoc index fc3adcf..ed8f5ff 100644 --- a/doc/src/designer-manual.qdoc +++ b/doc/src/designer-manual.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/desktop-integration.qdoc b/doc/src/desktop-integration.qdoc index e52b8d8..98a83f2 100644 --- a/doc/src/desktop-integration.qdoc +++ b/doc/src/desktop-integration.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/developing-on-mac.qdoc b/doc/src/developing-on-mac.qdoc index 00c54b6..60c928d 100644 --- a/doc/src/developing-on-mac.qdoc +++ b/doc/src/developing-on-mac.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/distributingqt.qdoc b/doc/src/distributingqt.qdoc index 9b88dc4..4ca5253 100644 --- a/doc/src/distributingqt.qdoc +++ b/doc/src/distributingqt.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -44,7 +44,7 @@ ** Documentation on deploying Qt. ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/dnd.qdoc b/doc/src/dnd.qdoc index 119922b..8d3d79d 100644 --- a/doc/src/dnd.qdoc +++ b/doc/src/dnd.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/ecmascript.qdoc b/doc/src/ecmascript.qdoc index 303b752..79722f1 100644 --- a/doc/src/ecmascript.qdoc +++ b/doc/src/ecmascript.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/editions.qdoc b/doc/src/editions.qdoc index 5d3b35c..9ed4c9c 100644 --- a/doc/src/editions.qdoc +++ b/doc/src/editions.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -44,7 +44,7 @@ ** Documentation of Qt editions. ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/emb-accel.qdoc b/doc/src/emb-accel.qdoc index 67fe8e6..27056c3 100644 --- a/doc/src/emb-accel.qdoc +++ b/doc/src/emb-accel.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-charinput.qdoc b/doc/src/emb-charinput.qdoc index e38ebe3..c9c768c 100644 --- a/doc/src/emb-charinput.qdoc +++ b/doc/src/emb-charinput.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-crosscompiling.qdoc b/doc/src/emb-crosscompiling.qdoc index 54e65c5..a1038af 100644 --- a/doc/src/emb-crosscompiling.qdoc +++ b/doc/src/emb-crosscompiling.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-deployment.qdoc b/doc/src/emb-deployment.qdoc index 2c1ff00..b991188 100644 --- a/doc/src/emb-deployment.qdoc +++ b/doc/src/emb-deployment.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-differences.qdoc b/doc/src/emb-differences.qdoc index b6fb631..741e4f7 100644 --- a/doc/src/emb-differences.qdoc +++ b/doc/src/emb-differences.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-envvars.qdoc b/doc/src/emb-envvars.qdoc index b06c132..4a4040a 100644 --- a/doc/src/emb-envvars.qdoc +++ b/doc/src/emb-envvars.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-features.qdoc b/doc/src/emb-features.qdoc index 67f92a5..e40da43 100644 --- a/doc/src/emb-features.qdoc +++ b/doc/src/emb-features.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-fonts.qdoc b/doc/src/emb-fonts.qdoc index 86e169d..f294f66 100644 --- a/doc/src/emb-fonts.qdoc +++ b/doc/src/emb-fonts.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-framebuffer-howto.qdoc b/doc/src/emb-framebuffer-howto.qdoc index fc86dd9..f4f0dfa 100644 --- a/doc/src/emb-framebuffer-howto.qdoc +++ b/doc/src/emb-framebuffer-howto.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-install.qdoc b/doc/src/emb-install.qdoc index 11b3f03..c04d523 100644 --- a/doc/src/emb-install.qdoc +++ b/doc/src/emb-install.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-makeqpf.qdoc b/doc/src/emb-makeqpf.qdoc index 8f5d10b..e37cc13 100644 --- a/doc/src/emb-makeqpf.qdoc +++ b/doc/src/emb-makeqpf.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-performance.qdoc b/doc/src/emb-performance.qdoc index 79edf34..4567a9b 100644 --- a/doc/src/emb-performance.qdoc +++ b/doc/src/emb-performance.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-pointer.qdoc b/doc/src/emb-pointer.qdoc index d52abfb..b13dec0 100644 --- a/doc/src/emb-pointer.qdoc +++ b/doc/src/emb-pointer.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-porting.qdoc b/doc/src/emb-porting.qdoc index 9d6fad6..eac232f 100644 --- a/doc/src/emb-porting.qdoc +++ b/doc/src/emb-porting.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-qvfb.qdoc b/doc/src/emb-qvfb.qdoc index 8b819b6..b42c695 100644 --- a/doc/src/emb-qvfb.qdoc +++ b/doc/src/emb-qvfb.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-running.qdoc b/doc/src/emb-running.qdoc index 9cdf414..38bd703 100644 --- a/doc/src/emb-running.qdoc +++ b/doc/src/emb-running.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/emb-vnc.qdoc b/doc/src/emb-vnc.qdoc index 283193c..d874f14 100644 --- a/doc/src/emb-vnc.qdoc +++ b/doc/src/emb-vnc.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/eventsandfilters.qdoc b/doc/src/eventsandfilters.qdoc index 06ca08c..0c04135 100644 --- a/doc/src/eventsandfilters.qdoc +++ b/doc/src/eventsandfilters.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples-overview.qdoc b/doc/src/examples-overview.qdoc index 549574d..4453dad 100644 --- a/doc/src/examples-overview.qdoc +++ b/doc/src/examples-overview.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples.qdoc b/doc/src/examples.qdoc index 29c6c0b..667f9b7 100644 --- a/doc/src/examples.qdoc +++ b/doc/src/examples.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/2dpainting.qdoc b/doc/src/examples/2dpainting.qdoc index 31aea59..77e1a8d 100644 --- a/doc/src/examples/2dpainting.qdoc +++ b/doc/src/examples/2dpainting.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/activeqt/comapp.qdoc b/doc/src/examples/activeqt/comapp.qdoc index 05f3fb5..2228295 100644 --- a/doc/src/examples/activeqt/comapp.qdoc +++ b/doc/src/examples/activeqt/comapp.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/activeqt/dotnet.qdoc b/doc/src/examples/activeqt/dotnet.qdoc index afe7034..3987bda 100644 --- a/doc/src/examples/activeqt/dotnet.qdoc +++ b/doc/src/examples/activeqt/dotnet.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/activeqt/hierarchy.qdoc b/doc/src/examples/activeqt/hierarchy.qdoc index 868d0ce..3217dd9 100644 --- a/doc/src/examples/activeqt/hierarchy.qdoc +++ b/doc/src/examples/activeqt/hierarchy.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/activeqt/menus.qdoc b/doc/src/examples/activeqt/menus.qdoc index 6ce1625..a2cd582 100644 --- a/doc/src/examples/activeqt/menus.qdoc +++ b/doc/src/examples/activeqt/menus.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/activeqt/multiple.qdoc b/doc/src/examples/activeqt/multiple.qdoc index d15371b..e644a42 100644 --- a/doc/src/examples/activeqt/multiple.qdoc +++ b/doc/src/examples/activeqt/multiple.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/activeqt/opengl.qdoc b/doc/src/examples/activeqt/opengl.qdoc index 05c9d08..ac1e3b9 100644 --- a/doc/src/examples/activeqt/opengl.qdoc +++ b/doc/src/examples/activeqt/opengl.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/activeqt/qutlook.qdoc b/doc/src/examples/activeqt/qutlook.qdoc index c29feeb..58e2788 100644 --- a/doc/src/examples/activeqt/qutlook.qdoc +++ b/doc/src/examples/activeqt/qutlook.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/activeqt/simple.qdoc b/doc/src/examples/activeqt/simple.qdoc index e79e542..f3a187f 100644 --- a/doc/src/examples/activeqt/simple.qdoc +++ b/doc/src/examples/activeqt/simple.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/activeqt/webbrowser.qdoc b/doc/src/examples/activeqt/webbrowser.qdoc index 46b83f9..2ca7a71 100644 --- a/doc/src/examples/activeqt/webbrowser.qdoc +++ b/doc/src/examples/activeqt/webbrowser.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/activeqt/wrapper.qdoc b/doc/src/examples/activeqt/wrapper.qdoc index 017da30..58a9e5c 100644 --- a/doc/src/examples/activeqt/wrapper.qdoc +++ b/doc/src/examples/activeqt/wrapper.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/addressbook.qdoc b/doc/src/examples/addressbook.qdoc index fb5c1ea..578b743 100644 --- a/doc/src/examples/addressbook.qdoc +++ b/doc/src/examples/addressbook.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/ahigl.qdoc b/doc/src/examples/ahigl.qdoc index d42df66..342e2bc 100644 --- a/doc/src/examples/ahigl.qdoc +++ b/doc/src/examples/ahigl.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/analogclock.qdoc b/doc/src/examples/analogclock.qdoc index d5f7273..00c2b71 100644 --- a/doc/src/examples/analogclock.qdoc +++ b/doc/src/examples/analogclock.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/application.qdoc b/doc/src/examples/application.qdoc index 32e8c10..deb4311 100644 --- a/doc/src/examples/application.qdoc +++ b/doc/src/examples/application.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/arrowpad.qdoc b/doc/src/examples/arrowpad.qdoc index 76b753b..9e9268c 100644 --- a/doc/src/examples/arrowpad.qdoc +++ b/doc/src/examples/arrowpad.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/basicdrawing.qdoc b/doc/src/examples/basicdrawing.qdoc index 5297201..7122dfb 100644 --- a/doc/src/examples/basicdrawing.qdoc +++ b/doc/src/examples/basicdrawing.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/basicgraphicslayouts.qdoc b/doc/src/examples/basicgraphicslayouts.qdoc index 92571af..e0af2e8 100644 --- a/doc/src/examples/basicgraphicslayouts.qdoc +++ b/doc/src/examples/basicgraphicslayouts.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/basiclayouts.qdoc b/doc/src/examples/basiclayouts.qdoc index 0d64b1f..f3528d6 100644 --- a/doc/src/examples/basiclayouts.qdoc +++ b/doc/src/examples/basiclayouts.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/basicsortfiltermodel.qdoc b/doc/src/examples/basicsortfiltermodel.qdoc index 557729a..da07089 100644 --- a/doc/src/examples/basicsortfiltermodel.qdoc +++ b/doc/src/examples/basicsortfiltermodel.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/blockingfortuneclient.qdoc b/doc/src/examples/blockingfortuneclient.qdoc index 5c9dbe1..39afa4e 100644 --- a/doc/src/examples/blockingfortuneclient.qdoc +++ b/doc/src/examples/blockingfortuneclient.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/borderlayout.qdoc b/doc/src/examples/borderlayout.qdoc index 6275249..cf09a92 100644 --- a/doc/src/examples/borderlayout.qdoc +++ b/doc/src/examples/borderlayout.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/broadcastreceiver.qdoc b/doc/src/examples/broadcastreceiver.qdoc index 253b68b..328bf3b 100644 --- a/doc/src/examples/broadcastreceiver.qdoc +++ b/doc/src/examples/broadcastreceiver.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/broadcastsender.qdoc b/doc/src/examples/broadcastsender.qdoc index 05975aa..f75a416 100644 --- a/doc/src/examples/broadcastsender.qdoc +++ b/doc/src/examples/broadcastsender.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/cachedtable.qdoc b/doc/src/examples/cachedtable.qdoc index b7f416b..7706c93 100644 --- a/doc/src/examples/cachedtable.qdoc +++ b/doc/src/examples/cachedtable.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/calculator.qdoc b/doc/src/examples/calculator.qdoc index 2cae6ce..14b3584 100644 --- a/doc/src/examples/calculator.qdoc +++ b/doc/src/examples/calculator.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/calculatorbuilder.qdoc b/doc/src/examples/calculatorbuilder.qdoc index c63267e..7fee1eb 100644 --- a/doc/src/examples/calculatorbuilder.qdoc +++ b/doc/src/examples/calculatorbuilder.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/calculatorform.qdoc b/doc/src/examples/calculatorform.qdoc index a8e891e..7cbf2ac 100644 --- a/doc/src/examples/calculatorform.qdoc +++ b/doc/src/examples/calculatorform.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/calendar.qdoc b/doc/src/examples/calendar.qdoc index e6beef4..893e61b 100644 --- a/doc/src/examples/calendar.qdoc +++ b/doc/src/examples/calendar.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/calendarwidget.qdoc b/doc/src/examples/calendarwidget.qdoc index f4417c2..4fa4f60 100644 --- a/doc/src/examples/calendarwidget.qdoc +++ b/doc/src/examples/calendarwidget.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/capabilitiesexample.qdoc b/doc/src/examples/capabilitiesexample.qdoc index 9d62c71..c476bac 100644 --- a/doc/src/examples/capabilitiesexample.qdoc +++ b/doc/src/examples/capabilitiesexample.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/charactermap.qdoc b/doc/src/examples/charactermap.qdoc index 64c00db..dc509f4 100644 --- a/doc/src/examples/charactermap.qdoc +++ b/doc/src/examples/charactermap.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/chart.qdoc b/doc/src/examples/chart.qdoc index 22f8a51..d515093 100644 --- a/doc/src/examples/chart.qdoc +++ b/doc/src/examples/chart.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/classwizard.qdoc b/doc/src/examples/classwizard.qdoc index a36edf7..c6a3598 100644 --- a/doc/src/examples/classwizard.qdoc +++ b/doc/src/examples/classwizard.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/codecs.qdoc b/doc/src/examples/codecs.qdoc index cb38cbe..3c860d0 100644 --- a/doc/src/examples/codecs.qdoc +++ b/doc/src/examples/codecs.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/codeeditor.qdoc b/doc/src/examples/codeeditor.qdoc index d218d0d..71400a1 100644 --- a/doc/src/examples/codeeditor.qdoc +++ b/doc/src/examples/codeeditor.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/collidingmice-example.qdoc b/doc/src/examples/collidingmice-example.qdoc index 657a204..5b124f9 100644 --- a/doc/src/examples/collidingmice-example.qdoc +++ b/doc/src/examples/collidingmice-example.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/coloreditorfactory.qdoc b/doc/src/examples/coloreditorfactory.qdoc index 768bb51..835c5ad 100644 --- a/doc/src/examples/coloreditorfactory.qdoc +++ b/doc/src/examples/coloreditorfactory.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/combowidgetmapper.qdoc b/doc/src/examples/combowidgetmapper.qdoc index cf44bdb..d80ab7b 100644 --- a/doc/src/examples/combowidgetmapper.qdoc +++ b/doc/src/examples/combowidgetmapper.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/completer.qdoc b/doc/src/examples/completer.qdoc index f47ba07..9aaaf66 100644 --- a/doc/src/examples/completer.qdoc +++ b/doc/src/examples/completer.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/complexpingpong.qdoc b/doc/src/examples/complexpingpong.qdoc index dd05a41..c13f35f 100644 --- a/doc/src/examples/complexpingpong.qdoc +++ b/doc/src/examples/complexpingpong.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/concentriccircles.qdoc b/doc/src/examples/concentriccircles.qdoc index 7c36b0d..1e3bb37 100644 --- a/doc/src/examples/concentriccircles.qdoc +++ b/doc/src/examples/concentriccircles.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/configdialog.qdoc b/doc/src/examples/configdialog.qdoc index afb1c5f..cbc37e6 100644 --- a/doc/src/examples/configdialog.qdoc +++ b/doc/src/examples/configdialog.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/containerextension.qdoc b/doc/src/examples/containerextension.qdoc index 6d29cf6..aaceb54 100644 --- a/doc/src/examples/containerextension.qdoc +++ b/doc/src/examples/containerextension.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/context2d.qdoc b/doc/src/examples/context2d.qdoc index a45b8bb..f981d90 100644 --- a/doc/src/examples/context2d.qdoc +++ b/doc/src/examples/context2d.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/customcompleter.qdoc b/doc/src/examples/customcompleter.qdoc index 8d0404a..65ea07f 100644 --- a/doc/src/examples/customcompleter.qdoc +++ b/doc/src/examples/customcompleter.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/customsortfiltermodel.qdoc b/doc/src/examples/customsortfiltermodel.qdoc index 5778581..2e715c8 100644 --- a/doc/src/examples/customsortfiltermodel.qdoc +++ b/doc/src/examples/customsortfiltermodel.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/customtype.qdoc b/doc/src/examples/customtype.qdoc index ffeccc3..0df371e 100644 --- a/doc/src/examples/customtype.qdoc +++ b/doc/src/examples/customtype.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/customtypesending.qdoc b/doc/src/examples/customtypesending.qdoc index d335c28..a0905fc 100644 --- a/doc/src/examples/customtypesending.qdoc +++ b/doc/src/examples/customtypesending.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/customwidgetplugin.qdoc b/doc/src/examples/customwidgetplugin.qdoc index 31ad65b..cad9644 100644 --- a/doc/src/examples/customwidgetplugin.qdoc +++ b/doc/src/examples/customwidgetplugin.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/dbscreen.qdoc b/doc/src/examples/dbscreen.qdoc index 88f6d51..2b1a6e7 100644 --- a/doc/src/examples/dbscreen.qdoc +++ b/doc/src/examples/dbscreen.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/dbus-chat.qdoc b/doc/src/examples/dbus-chat.qdoc index f062c23..15a7441 100644 --- a/doc/src/examples/dbus-chat.qdoc +++ b/doc/src/examples/dbus-chat.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/dbus-listnames.qdoc b/doc/src/examples/dbus-listnames.qdoc index 5b13abe..f062359 100644 --- a/doc/src/examples/dbus-listnames.qdoc +++ b/doc/src/examples/dbus-listnames.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/dbus-remotecontrolledcar.qdoc b/doc/src/examples/dbus-remotecontrolledcar.qdoc index ef31bd2..92b022f 100644 --- a/doc/src/examples/dbus-remotecontrolledcar.qdoc +++ b/doc/src/examples/dbus-remotecontrolledcar.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/defaultprototypes.qdoc b/doc/src/examples/defaultprototypes.qdoc index dc65902..7934016 100644 --- a/doc/src/examples/defaultprototypes.qdoc +++ b/doc/src/examples/defaultprototypes.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/delayedencoding.qdoc b/doc/src/examples/delayedencoding.qdoc index cd1c4ae..57476ec 100644 --- a/doc/src/examples/delayedencoding.qdoc +++ b/doc/src/examples/delayedencoding.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/diagramscene.qdoc b/doc/src/examples/diagramscene.qdoc index ebf93e2..7fa70ad 100644 --- a/doc/src/examples/diagramscene.qdoc +++ b/doc/src/examples/diagramscene.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/digitalclock.qdoc b/doc/src/examples/digitalclock.qdoc index 0ff4642..e82e5cb 100644 --- a/doc/src/examples/digitalclock.qdoc +++ b/doc/src/examples/digitalclock.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/dirview.qdoc b/doc/src/examples/dirview.qdoc index 2cbfcfe..97e8e81 100644 --- a/doc/src/examples/dirview.qdoc +++ b/doc/src/examples/dirview.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/dockwidgets.qdoc b/doc/src/examples/dockwidgets.qdoc index bc9f5f1..aa6ecff 100644 --- a/doc/src/examples/dockwidgets.qdoc +++ b/doc/src/examples/dockwidgets.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/dombookmarks.qdoc b/doc/src/examples/dombookmarks.qdoc index f3944ef..125a0b1 100644 --- a/doc/src/examples/dombookmarks.qdoc +++ b/doc/src/examples/dombookmarks.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/draganddroppuzzle.qdoc b/doc/src/examples/draganddroppuzzle.qdoc index 0e6ed09..3412dad 100644 --- a/doc/src/examples/draganddroppuzzle.qdoc +++ b/doc/src/examples/draganddroppuzzle.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/dragdroprobot.qdoc b/doc/src/examples/dragdroprobot.qdoc index d3f97b0..f4e97ac 100644 --- a/doc/src/examples/dragdroprobot.qdoc +++ b/doc/src/examples/dragdroprobot.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/draggableicons.qdoc b/doc/src/examples/draggableicons.qdoc index 23150f9..d11c719 100644 --- a/doc/src/examples/draggableicons.qdoc +++ b/doc/src/examples/draggableicons.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/draggabletext.qdoc b/doc/src/examples/draggabletext.qdoc index 4d3d89d..043117a 100644 --- a/doc/src/examples/draggabletext.qdoc +++ b/doc/src/examples/draggabletext.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/drilldown.qdoc b/doc/src/examples/drilldown.qdoc index 344b9e7..f365cf9 100644 --- a/doc/src/examples/drilldown.qdoc +++ b/doc/src/examples/drilldown.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/dropsite.qdoc b/doc/src/examples/dropsite.qdoc index 4780b82..b7ae498 100644 --- a/doc/src/examples/dropsite.qdoc +++ b/doc/src/examples/dropsite.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/dynamiclayouts.qdoc b/doc/src/examples/dynamiclayouts.qdoc index 96b791b..6a90e02 100644 --- a/doc/src/examples/dynamiclayouts.qdoc +++ b/doc/src/examples/dynamiclayouts.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/echoplugin.qdoc b/doc/src/examples/echoplugin.qdoc index 32ad15b..46adcfe 100644 --- a/doc/src/examples/echoplugin.qdoc +++ b/doc/src/examples/echoplugin.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/editabletreemodel.qdoc b/doc/src/examples/editabletreemodel.qdoc index da01830..3968d58 100644 --- a/doc/src/examples/editabletreemodel.qdoc +++ b/doc/src/examples/editabletreemodel.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/elasticnodes.qdoc b/doc/src/examples/elasticnodes.qdoc index 90f2f01..67eecab 100644 --- a/doc/src/examples/elasticnodes.qdoc +++ b/doc/src/examples/elasticnodes.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/extension.qdoc b/doc/src/examples/extension.qdoc index 02e0698..62324d0 100644 --- a/doc/src/examples/extension.qdoc +++ b/doc/src/examples/extension.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/fancybrowser.qdoc b/doc/src/examples/fancybrowser.qdoc index 631aff9..fc41446 100644 --- a/doc/src/examples/fancybrowser.qdoc +++ b/doc/src/examples/fancybrowser.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/filetree.qdoc b/doc/src/examples/filetree.qdoc index e53769c..dd9865b 100644 --- a/doc/src/examples/filetree.qdoc +++ b/doc/src/examples/filetree.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/findfiles.qdoc b/doc/src/examples/findfiles.qdoc index db41f43..64b8125 100644 --- a/doc/src/examples/findfiles.qdoc +++ b/doc/src/examples/findfiles.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/flowlayout.qdoc b/doc/src/examples/flowlayout.qdoc index 3e7ec22..796849a 100644 --- a/doc/src/examples/flowlayout.qdoc +++ b/doc/src/examples/flowlayout.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/fontsampler.qdoc b/doc/src/examples/fontsampler.qdoc index 1fbb879..c5464e9 100644 --- a/doc/src/examples/fontsampler.qdoc +++ b/doc/src/examples/fontsampler.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/formextractor.qdoc b/doc/src/examples/formextractor.qdoc index b98f5bd..7bf1e3c 100644 --- a/doc/src/examples/formextractor.qdoc +++ b/doc/src/examples/formextractor.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/fortuneclient.qdoc b/doc/src/examples/fortuneclient.qdoc index cbdd164..6b576e0 100644 --- a/doc/src/examples/fortuneclient.qdoc +++ b/doc/src/examples/fortuneclient.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/fortuneserver.qdoc b/doc/src/examples/fortuneserver.qdoc index 848a3a3..9f9094a 100644 --- a/doc/src/examples/fortuneserver.qdoc +++ b/doc/src/examples/fortuneserver.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/framebufferobject.qdoc b/doc/src/examples/framebufferobject.qdoc index 3220641..8ce18d8 100644 --- a/doc/src/examples/framebufferobject.qdoc +++ b/doc/src/examples/framebufferobject.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/framebufferobject2.qdoc b/doc/src/examples/framebufferobject2.qdoc index 721706a..1a02971 100644 --- a/doc/src/examples/framebufferobject2.qdoc +++ b/doc/src/examples/framebufferobject2.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/fridgemagnets.qdoc b/doc/src/examples/fridgemagnets.qdoc index de95b52..27f60b4 100644 --- a/doc/src/examples/fridgemagnets.qdoc +++ b/doc/src/examples/fridgemagnets.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/ftp.qdoc b/doc/src/examples/ftp.qdoc index 7a74a37..e544e5d 100644 --- a/doc/src/examples/ftp.qdoc +++ b/doc/src/examples/ftp.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/globalVariables.qdoc b/doc/src/examples/globalVariables.qdoc index e1b83fe..d8c679f 100644 --- a/doc/src/examples/globalVariables.qdoc +++ b/doc/src/examples/globalVariables.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/googlechat.qdoc b/doc/src/examples/googlechat.qdoc index f2d61cf..42a0198 100644 --- a/doc/src/examples/googlechat.qdoc +++ b/doc/src/examples/googlechat.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/googlesuggest.qdoc b/doc/src/examples/googlesuggest.qdoc index a9b09f9..1752420 100644 --- a/doc/src/examples/googlesuggest.qdoc +++ b/doc/src/examples/googlesuggest.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/grabber.qdoc b/doc/src/examples/grabber.qdoc index efb5b6f..958a501 100644 --- a/doc/src/examples/grabber.qdoc +++ b/doc/src/examples/grabber.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/groupbox.qdoc b/doc/src/examples/groupbox.qdoc index c5f6a62..9531174 100644 --- a/doc/src/examples/groupbox.qdoc +++ b/doc/src/examples/groupbox.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/hellogl.qdoc b/doc/src/examples/hellogl.qdoc index 2fc51a3..c8dd29e 100644 --- a/doc/src/examples/hellogl.qdoc +++ b/doc/src/examples/hellogl.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/helloscript.qdoc b/doc/src/examples/helloscript.qdoc index 5662680..a18e4ad 100644 --- a/doc/src/examples/helloscript.qdoc +++ b/doc/src/examples/helloscript.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/hellotr.qdoc b/doc/src/examples/hellotr.qdoc index 72efd11..bb38737 100644 --- a/doc/src/examples/hellotr.qdoc +++ b/doc/src/examples/hellotr.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/http.qdoc b/doc/src/examples/http.qdoc index 17404a8..19232f3 100644 --- a/doc/src/examples/http.qdoc +++ b/doc/src/examples/http.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/i18n.qdoc b/doc/src/examples/i18n.qdoc index 68d9153..fefa2b9 100644 --- a/doc/src/examples/i18n.qdoc +++ b/doc/src/examples/i18n.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/icons.qdoc b/doc/src/examples/icons.qdoc index a81ddb9..49433af 100644 --- a/doc/src/examples/icons.qdoc +++ b/doc/src/examples/icons.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/imagecomposition.qdoc b/doc/src/examples/imagecomposition.qdoc index 8cba805..bcccfca 100644 --- a/doc/src/examples/imagecomposition.qdoc +++ b/doc/src/examples/imagecomposition.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/imageviewer.qdoc b/doc/src/examples/imageviewer.qdoc index 6881673..61ede64 100644 --- a/doc/src/examples/imageviewer.qdoc +++ b/doc/src/examples/imageviewer.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/itemviewspuzzle.qdoc b/doc/src/examples/itemviewspuzzle.qdoc index 99ef7d4..40bfb90 100644 --- a/doc/src/examples/itemviewspuzzle.qdoc +++ b/doc/src/examples/itemviewspuzzle.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/licensewizard.qdoc b/doc/src/examples/licensewizard.qdoc index a702c06..4e725fc 100644 --- a/doc/src/examples/licensewizard.qdoc +++ b/doc/src/examples/licensewizard.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/lineedits.qdoc b/doc/src/examples/lineedits.qdoc index ee702ae..71f1fab 100644 --- a/doc/src/examples/lineedits.qdoc +++ b/doc/src/examples/lineedits.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/localfortuneclient.qdoc b/doc/src/examples/localfortuneclient.qdoc index b4489b1..5ea0987 100644 --- a/doc/src/examples/localfortuneclient.qdoc +++ b/doc/src/examples/localfortuneclient.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/localfortuneserver.qdoc b/doc/src/examples/localfortuneserver.qdoc index 3b2395c..2d57218 100644 --- a/doc/src/examples/localfortuneserver.qdoc +++ b/doc/src/examples/localfortuneserver.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/loopback.qdoc b/doc/src/examples/loopback.qdoc index b100f71..757d51b 100644 --- a/doc/src/examples/loopback.qdoc +++ b/doc/src/examples/loopback.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/mandelbrot.qdoc b/doc/src/examples/mandelbrot.qdoc index d2a3ee1..29038eb 100644 --- a/doc/src/examples/mandelbrot.qdoc +++ b/doc/src/examples/mandelbrot.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/masterdetail.qdoc b/doc/src/examples/masterdetail.qdoc index d7dc0e2..fdc6e1c 100644 --- a/doc/src/examples/masterdetail.qdoc +++ b/doc/src/examples/masterdetail.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/mdi.qdoc b/doc/src/examples/mdi.qdoc index f97db5e..530ccc4 100644 --- a/doc/src/examples/mdi.qdoc +++ b/doc/src/examples/mdi.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/menus.qdoc b/doc/src/examples/menus.qdoc index 0500101..91cbd3e 100644 --- a/doc/src/examples/menus.qdoc +++ b/doc/src/examples/menus.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/mousecalibration.qdoc b/doc/src/examples/mousecalibration.qdoc index e271265..47e0840 100644 --- a/doc/src/examples/mousecalibration.qdoc +++ b/doc/src/examples/mousecalibration.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/movie.qdoc b/doc/src/examples/movie.qdoc index 00e42c6..63dd5c4 100644 --- a/doc/src/examples/movie.qdoc +++ b/doc/src/examples/movie.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/multipleinheritance.qdoc b/doc/src/examples/multipleinheritance.qdoc index ff2f00f..5a77275 100644 --- a/doc/src/examples/multipleinheritance.qdoc +++ b/doc/src/examples/multipleinheritance.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/musicplayerexample.qdoc b/doc/src/examples/musicplayerexample.qdoc index 9f04bf6..289e5e6 100644 --- a/doc/src/examples/musicplayerexample.qdoc +++ b/doc/src/examples/musicplayerexample.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/network-chat.qdoc b/doc/src/examples/network-chat.qdoc index 3caeb9a..2888ff5 100644 --- a/doc/src/examples/network-chat.qdoc +++ b/doc/src/examples/network-chat.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/orderform.qdoc b/doc/src/examples/orderform.qdoc index f6f2607..d0747a3 100644 --- a/doc/src/examples/orderform.qdoc +++ b/doc/src/examples/orderform.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/overpainting.qdoc b/doc/src/examples/overpainting.qdoc index e19f54b..8644f08 100644 --- a/doc/src/examples/overpainting.qdoc +++ b/doc/src/examples/overpainting.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/padnavigator.qdoc b/doc/src/examples/padnavigator.qdoc index f43725b..a20beb8 100644 --- a/doc/src/examples/padnavigator.qdoc +++ b/doc/src/examples/padnavigator.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/painterpaths.qdoc b/doc/src/examples/painterpaths.qdoc index fd27566..709ac9f 100644 --- a/doc/src/examples/painterpaths.qdoc +++ b/doc/src/examples/painterpaths.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/pbuffers.qdoc b/doc/src/examples/pbuffers.qdoc index 347cf3d..df09ecf 100644 --- a/doc/src/examples/pbuffers.qdoc +++ b/doc/src/examples/pbuffers.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/pbuffers2.qdoc b/doc/src/examples/pbuffers2.qdoc index 5426852..b61eb43 100644 --- a/doc/src/examples/pbuffers2.qdoc +++ b/doc/src/examples/pbuffers2.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/pixelator.qdoc b/doc/src/examples/pixelator.qdoc index 2a8b43d..154805e 100644 --- a/doc/src/examples/pixelator.qdoc +++ b/doc/src/examples/pixelator.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/plugandpaint.qdoc b/doc/src/examples/plugandpaint.qdoc index 3cdd8a4..e7c97de 100644 --- a/doc/src/examples/plugandpaint.qdoc +++ b/doc/src/examples/plugandpaint.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/portedasteroids.qdoc b/doc/src/examples/portedasteroids.qdoc index d32732f..0f70855 100644 --- a/doc/src/examples/portedasteroids.qdoc +++ b/doc/src/examples/portedasteroids.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/portedcanvas.qdoc b/doc/src/examples/portedcanvas.qdoc index 76943df..7a1b59c 100644 --- a/doc/src/examples/portedcanvas.qdoc +++ b/doc/src/examples/portedcanvas.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/previewer.qdoc b/doc/src/examples/previewer.qdoc index 9cbeec1..f57ade0 100644 --- a/doc/src/examples/previewer.qdoc +++ b/doc/src/examples/previewer.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/qobjectxmlmodel.qdoc b/doc/src/examples/qobjectxmlmodel.qdoc index 37c66bc..54f47f9 100644 --- a/doc/src/examples/qobjectxmlmodel.qdoc +++ b/doc/src/examples/qobjectxmlmodel.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/qtconcurrent-imagescaling.qdoc b/doc/src/examples/qtconcurrent-imagescaling.qdoc index 74b4be0..2b86ce6 100644 --- a/doc/src/examples/qtconcurrent-imagescaling.qdoc +++ b/doc/src/examples/qtconcurrent-imagescaling.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/qtconcurrent-map.qdoc b/doc/src/examples/qtconcurrent-map.qdoc index 9f5295d..647423b 100644 --- a/doc/src/examples/qtconcurrent-map.qdoc +++ b/doc/src/examples/qtconcurrent-map.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/qtconcurrent-progressdialog.qdoc b/doc/src/examples/qtconcurrent-progressdialog.qdoc index 41909fb..8ec033e 100644 --- a/doc/src/examples/qtconcurrent-progressdialog.qdoc +++ b/doc/src/examples/qtconcurrent-progressdialog.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/qtconcurrent-runfunction.qdoc b/doc/src/examples/qtconcurrent-runfunction.qdoc index 5c40552..9a824ba 100644 --- a/doc/src/examples/qtconcurrent-runfunction.qdoc +++ b/doc/src/examples/qtconcurrent-runfunction.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/qtconcurrent-wordcount.qdoc b/doc/src/examples/qtconcurrent-wordcount.qdoc index d7d3227..46e87b5 100644 --- a/doc/src/examples/qtconcurrent-wordcount.qdoc +++ b/doc/src/examples/qtconcurrent-wordcount.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/qtscriptcalculator.qdoc b/doc/src/examples/qtscriptcalculator.qdoc index 1d713f8..20ba4b2 100644 --- a/doc/src/examples/qtscriptcalculator.qdoc +++ b/doc/src/examples/qtscriptcalculator.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/qtscriptcustomclass.qdoc b/doc/src/examples/qtscriptcustomclass.qdoc index f8d85a2..4bdfbe1 100644 --- a/doc/src/examples/qtscriptcustomclass.qdoc +++ b/doc/src/examples/qtscriptcustomclass.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/qtscripttetrix.qdoc b/doc/src/examples/qtscripttetrix.qdoc index c96db6a..c94697a 100644 --- a/doc/src/examples/qtscripttetrix.qdoc +++ b/doc/src/examples/qtscripttetrix.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/querymodel.qdoc b/doc/src/examples/querymodel.qdoc index 296f609..17645a2 100644 --- a/doc/src/examples/querymodel.qdoc +++ b/doc/src/examples/querymodel.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/queuedcustomtype.qdoc b/doc/src/examples/queuedcustomtype.qdoc index bbd1427..8e2daa4 100644 --- a/doc/src/examples/queuedcustomtype.qdoc +++ b/doc/src/examples/queuedcustomtype.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/qxmlstreambookmarks.qdoc b/doc/src/examples/qxmlstreambookmarks.qdoc index fb3a1c1..49b2589 100644 --- a/doc/src/examples/qxmlstreambookmarks.qdoc +++ b/doc/src/examples/qxmlstreambookmarks.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/recentfiles.qdoc b/doc/src/examples/recentfiles.qdoc index 185cbf1..077adfd 100644 --- a/doc/src/examples/recentfiles.qdoc +++ b/doc/src/examples/recentfiles.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/recipes.qdoc b/doc/src/examples/recipes.qdoc index ba06b7e..966dbe9 100644 --- a/doc/src/examples/recipes.qdoc +++ b/doc/src/examples/recipes.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/regexp.qdoc b/doc/src/examples/regexp.qdoc index de6cbfc..91b12b4 100644 --- a/doc/src/examples/regexp.qdoc +++ b/doc/src/examples/regexp.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/relationaltablemodel.qdoc b/doc/src/examples/relationaltablemodel.qdoc index 5e944c2..f695398 100644 --- a/doc/src/examples/relationaltablemodel.qdoc +++ b/doc/src/examples/relationaltablemodel.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/remotecontrol.qdoc b/doc/src/examples/remotecontrol.qdoc index 698ad1f..7f83fa1 100644 --- a/doc/src/examples/remotecontrol.qdoc +++ b/doc/src/examples/remotecontrol.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/rsslisting.qdoc b/doc/src/examples/rsslisting.qdoc index 73ff68c..26cb3a6 100644 --- a/doc/src/examples/rsslisting.qdoc +++ b/doc/src/examples/rsslisting.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/samplebuffers.qdoc b/doc/src/examples/samplebuffers.qdoc index 1c8202c..169ac07 100644 --- a/doc/src/examples/samplebuffers.qdoc +++ b/doc/src/examples/samplebuffers.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/saxbookmarks.qdoc b/doc/src/examples/saxbookmarks.qdoc index 3db87d6..a8b7626 100644 --- a/doc/src/examples/saxbookmarks.qdoc +++ b/doc/src/examples/saxbookmarks.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/screenshot.qdoc b/doc/src/examples/screenshot.qdoc index b989a32..e086d6c 100644 --- a/doc/src/examples/screenshot.qdoc +++ b/doc/src/examples/screenshot.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/scribble.qdoc b/doc/src/examples/scribble.qdoc index 4dc1783..3a5e018 100644 --- a/doc/src/examples/scribble.qdoc +++ b/doc/src/examples/scribble.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/sdi.qdoc b/doc/src/examples/sdi.qdoc index cfe351c..e9e6597 100644 --- a/doc/src/examples/sdi.qdoc +++ b/doc/src/examples/sdi.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/securesocketclient.qdoc b/doc/src/examples/securesocketclient.qdoc index e93bf20..4080d67 100644 --- a/doc/src/examples/securesocketclient.qdoc +++ b/doc/src/examples/securesocketclient.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/semaphores.qdoc b/doc/src/examples/semaphores.qdoc index a387350..8382c34 100644 --- a/doc/src/examples/semaphores.qdoc +++ b/doc/src/examples/semaphores.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/settingseditor.qdoc b/doc/src/examples/settingseditor.qdoc index 5ce1e49..cd558be 100644 --- a/doc/src/examples/settingseditor.qdoc +++ b/doc/src/examples/settingseditor.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/shapedclock.qdoc b/doc/src/examples/shapedclock.qdoc index 369553b..6552df5 100644 --- a/doc/src/examples/shapedclock.qdoc +++ b/doc/src/examples/shapedclock.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/sharedmemory.qdoc b/doc/src/examples/sharedmemory.qdoc index f323977..f0cdc69 100644 --- a/doc/src/examples/sharedmemory.qdoc +++ b/doc/src/examples/sharedmemory.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/simpledecoration.qdoc b/doc/src/examples/simpledecoration.qdoc index fe8700a..814cd8e 100644 --- a/doc/src/examples/simpledecoration.qdoc +++ b/doc/src/examples/simpledecoration.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/simpledommodel.qdoc b/doc/src/examples/simpledommodel.qdoc index 8d2d102..c5ac951 100644 --- a/doc/src/examples/simpledommodel.qdoc +++ b/doc/src/examples/simpledommodel.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/simpletextviewer.qdoc b/doc/src/examples/simpletextviewer.qdoc index 2a5e45c0..87eae57 100644 --- a/doc/src/examples/simpletextviewer.qdoc +++ b/doc/src/examples/simpletextviewer.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/simpletreemodel.qdoc b/doc/src/examples/simpletreemodel.qdoc index 5ddeb46..f80a28a 100644 --- a/doc/src/examples/simpletreemodel.qdoc +++ b/doc/src/examples/simpletreemodel.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/simplewidgetmapper.qdoc b/doc/src/examples/simplewidgetmapper.qdoc index 2fdbf25..3377c49 100644 --- a/doc/src/examples/simplewidgetmapper.qdoc +++ b/doc/src/examples/simplewidgetmapper.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/sipdialog.qdoc b/doc/src/examples/sipdialog.qdoc index 817f5e2..5383038 100644 --- a/doc/src/examples/sipdialog.qdoc +++ b/doc/src/examples/sipdialog.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/sliders.qdoc b/doc/src/examples/sliders.qdoc index 650fdcb..fd44a11 100644 --- a/doc/src/examples/sliders.qdoc +++ b/doc/src/examples/sliders.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/spinboxdelegate.qdoc b/doc/src/examples/spinboxdelegate.qdoc index 542eebd..5afd861 100644 --- a/doc/src/examples/spinboxdelegate.qdoc +++ b/doc/src/examples/spinboxdelegate.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/spinboxes.qdoc b/doc/src/examples/spinboxes.qdoc index d8b0daa..9fee158 100644 --- a/doc/src/examples/spinboxes.qdoc +++ b/doc/src/examples/spinboxes.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/sqlwidgetmapper.qdoc b/doc/src/examples/sqlwidgetmapper.qdoc index 173aea4..81a4cfb 100644 --- a/doc/src/examples/sqlwidgetmapper.qdoc +++ b/doc/src/examples/sqlwidgetmapper.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/standarddialogs.qdoc b/doc/src/examples/standarddialogs.qdoc index db533ed..78352a2 100644 --- a/doc/src/examples/standarddialogs.qdoc +++ b/doc/src/examples/standarddialogs.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/stardelegate.qdoc b/doc/src/examples/stardelegate.qdoc index fde3316..fb48649 100644 --- a/doc/src/examples/stardelegate.qdoc +++ b/doc/src/examples/stardelegate.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/styleplugin.qdoc b/doc/src/examples/styleplugin.qdoc index 0dea7bf..6f57ba9 100644 --- a/doc/src/examples/styleplugin.qdoc +++ b/doc/src/examples/styleplugin.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/styles.qdoc b/doc/src/examples/styles.qdoc index b68a310..d1d24bd 100644 --- a/doc/src/examples/styles.qdoc +++ b/doc/src/examples/styles.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/stylesheet.qdoc b/doc/src/examples/stylesheet.qdoc index 811d65c..8a035f3 100644 --- a/doc/src/examples/stylesheet.qdoc +++ b/doc/src/examples/stylesheet.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/svgalib.qdoc b/doc/src/examples/svgalib.qdoc index c94d408..d45f611 100644 --- a/doc/src/examples/svgalib.qdoc +++ b/doc/src/examples/svgalib.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/svggenerator.qdoc b/doc/src/examples/svggenerator.qdoc index 32bb89a..09fe6e1 100644 --- a/doc/src/examples/svggenerator.qdoc +++ b/doc/src/examples/svggenerator.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/svgviewer.qdoc b/doc/src/examples/svgviewer.qdoc index affc85f..7c4b33f 100644 --- a/doc/src/examples/svgviewer.qdoc +++ b/doc/src/examples/svgviewer.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/syntaxhighlighter.qdoc b/doc/src/examples/syntaxhighlighter.qdoc index 7cc9e61..de94d65 100644 --- a/doc/src/examples/syntaxhighlighter.qdoc +++ b/doc/src/examples/syntaxhighlighter.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/systray.qdoc b/doc/src/examples/systray.qdoc index 62bc05c..0217596 100644 --- a/doc/src/examples/systray.qdoc +++ b/doc/src/examples/systray.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/tabdialog.qdoc b/doc/src/examples/tabdialog.qdoc index 5394b82..54138f9 100644 --- a/doc/src/examples/tabdialog.qdoc +++ b/doc/src/examples/tabdialog.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/tablemodel.qdoc b/doc/src/examples/tablemodel.qdoc index e3d4a22..2bcad0c 100644 --- a/doc/src/examples/tablemodel.qdoc +++ b/doc/src/examples/tablemodel.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/tablet.qdoc b/doc/src/examples/tablet.qdoc index 476bba1..e412815 100644 --- a/doc/src/examples/tablet.qdoc +++ b/doc/src/examples/tablet.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/taskmenuextension.qdoc b/doc/src/examples/taskmenuextension.qdoc index b02da6c..3ca06b2 100644 --- a/doc/src/examples/taskmenuextension.qdoc +++ b/doc/src/examples/taskmenuextension.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/tetrix.qdoc b/doc/src/examples/tetrix.qdoc index b9adb98..b3a38bd 100644 --- a/doc/src/examples/tetrix.qdoc +++ b/doc/src/examples/tetrix.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/textfinder.qdoc b/doc/src/examples/textfinder.qdoc index 2eea15d..adbbd0d 100644 --- a/doc/src/examples/textfinder.qdoc +++ b/doc/src/examples/textfinder.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/textobject.qdoc b/doc/src/examples/textobject.qdoc index cc5a6b6..0b4c309 100644 --- a/doc/src/examples/textobject.qdoc +++ b/doc/src/examples/textobject.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/textures.qdoc b/doc/src/examples/textures.qdoc index 2f0389c3..d76094c 100644 --- a/doc/src/examples/textures.qdoc +++ b/doc/src/examples/textures.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/threadedfortuneserver.qdoc b/doc/src/examples/threadedfortuneserver.qdoc index d5f2571..56c43d2 100644 --- a/doc/src/examples/threadedfortuneserver.qdoc +++ b/doc/src/examples/threadedfortuneserver.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/tooltips.qdoc b/doc/src/examples/tooltips.qdoc index 78b350b..3dc6d36 100644 --- a/doc/src/examples/tooltips.qdoc +++ b/doc/src/examples/tooltips.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/torrent.qdoc b/doc/src/examples/torrent.qdoc index 8805dad..90d20f3 100644 --- a/doc/src/examples/torrent.qdoc +++ b/doc/src/examples/torrent.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/trafficinfo.qdoc b/doc/src/examples/trafficinfo.qdoc index 13181cd..cd090e7 100644 --- a/doc/src/examples/trafficinfo.qdoc +++ b/doc/src/examples/trafficinfo.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/transformations.qdoc b/doc/src/examples/transformations.qdoc index 58c8b80..a449d4c 100644 --- a/doc/src/examples/transformations.qdoc +++ b/doc/src/examples/transformations.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/treemodelcompleter.qdoc b/doc/src/examples/treemodelcompleter.qdoc index 82e9c24..dd9dd5a 100644 --- a/doc/src/examples/treemodelcompleter.qdoc +++ b/doc/src/examples/treemodelcompleter.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/trivialwizard.qdoc b/doc/src/examples/trivialwizard.qdoc index 360ea00..0fa98cf 100644 --- a/doc/src/examples/trivialwizard.qdoc +++ b/doc/src/examples/trivialwizard.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/trollprint.qdoc b/doc/src/examples/trollprint.qdoc index 489012e..4d00d25 100644 --- a/doc/src/examples/trollprint.qdoc +++ b/doc/src/examples/trollprint.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/undoframework.qdoc b/doc/src/examples/undoframework.qdoc index 3d0965f..8ec69ab 100644 --- a/doc/src/examples/undoframework.qdoc +++ b/doc/src/examples/undoframework.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/waitconditions.qdoc b/doc/src/examples/waitconditions.qdoc index dce0411..7cab2f0 100644 --- a/doc/src/examples/waitconditions.qdoc +++ b/doc/src/examples/waitconditions.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/wiggly.qdoc b/doc/src/examples/wiggly.qdoc index 5406c77..7add3b1 100644 --- a/doc/src/examples/wiggly.qdoc +++ b/doc/src/examples/wiggly.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/windowflags.qdoc b/doc/src/examples/windowflags.qdoc index b25206e..467de67 100644 --- a/doc/src/examples/windowflags.qdoc +++ b/doc/src/examples/windowflags.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/worldtimeclockbuilder.qdoc b/doc/src/examples/worldtimeclockbuilder.qdoc index 644ffdb..55246e9 100644 --- a/doc/src/examples/worldtimeclockbuilder.qdoc +++ b/doc/src/examples/worldtimeclockbuilder.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/worldtimeclockplugin.qdoc b/doc/src/examples/worldtimeclockplugin.qdoc index 072b1f0..c952ac4 100644 --- a/doc/src/examples/worldtimeclockplugin.qdoc +++ b/doc/src/examples/worldtimeclockplugin.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/examples/xmlstreamlint.qdoc b/doc/src/examples/xmlstreamlint.qdoc index 925a7a0..764018f 100644 --- a/doc/src/examples/xmlstreamlint.qdoc +++ b/doc/src/examples/xmlstreamlint.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/exportedfunctions.qdoc b/doc/src/exportedfunctions.qdoc index f67950c..66dc2b2 100644 --- a/doc/src/exportedfunctions.qdoc +++ b/doc/src/exportedfunctions.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/external-resources.qdoc b/doc/src/external-resources.qdoc index f48c3d7..49f6e2e 100644 --- a/doc/src/external-resources.qdoc +++ b/doc/src/external-resources.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/focus.qdoc b/doc/src/focus.qdoc index defb3e0..d3df9e3 100644 --- a/doc/src/focus.qdoc +++ b/doc/src/focus.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -44,7 +44,7 @@ ** Documentation of focus handling in Qt. ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/functions.qdoc b/doc/src/functions.qdoc index 4aa0851..e4c8c57 100644 --- a/doc/src/functions.qdoc +++ b/doc/src/functions.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -44,7 +44,7 @@ ** Documentation for class overview. ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/gallery-cde.qdoc b/doc/src/gallery-cde.qdoc index 36916a2..640e63a 100644 --- a/doc/src/gallery-cde.qdoc +++ b/doc/src/gallery-cde.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/gallery-cleanlooks.qdoc b/doc/src/gallery-cleanlooks.qdoc index 7ae5385..fe4f6ff 100644 --- a/doc/src/gallery-cleanlooks.qdoc +++ b/doc/src/gallery-cleanlooks.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/gallery-macintosh.qdoc b/doc/src/gallery-macintosh.qdoc index 608713d..0e8ca3d 100644 --- a/doc/src/gallery-macintosh.qdoc +++ b/doc/src/gallery-macintosh.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/gallery-motif.qdoc b/doc/src/gallery-motif.qdoc index 79c44b1..2f38963 100644 --- a/doc/src/gallery-motif.qdoc +++ b/doc/src/gallery-motif.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/gallery-plastique.qdoc b/doc/src/gallery-plastique.qdoc index b184ea8..11fea6e 100644 --- a/doc/src/gallery-plastique.qdoc +++ b/doc/src/gallery-plastique.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/gallery-windows.qdoc b/doc/src/gallery-windows.qdoc index 40ba7ce..fcfb297 100644 --- a/doc/src/gallery-windows.qdoc +++ b/doc/src/gallery-windows.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/gallery-windowsvista.qdoc b/doc/src/gallery-windowsvista.qdoc index 1ad8823..36066fe 100644 --- a/doc/src/gallery-windowsvista.qdoc +++ b/doc/src/gallery-windowsvista.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/gallery-windowsxp.qdoc b/doc/src/gallery-windowsxp.qdoc index dcb8e82..8737c02 100644 --- a/doc/src/gallery-windowsxp.qdoc +++ b/doc/src/gallery-windowsxp.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/gallery.qdoc b/doc/src/gallery.qdoc index dc9f732..255fa6b 100644 --- a/doc/src/gallery.qdoc +++ b/doc/src/gallery.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/geometry.qdoc b/doc/src/geometry.qdoc index b17aa39..e326fef 100644 --- a/doc/src/geometry.qdoc +++ b/doc/src/geometry.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/gpl.qdoc b/doc/src/gpl.qdoc index e423171..97959e8 100644 --- a/doc/src/gpl.qdoc +++ b/doc/src/gpl.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -45,7 +45,7 @@ \brief About the GPL license used for Qt. The Qt GUI Toolkit is Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).\br -Contact: Qt Software Information (qt-info@nokia.com) +Contact: Nokia Corporation (qt-info@nokia.com) Qt is available under the GPL. @@ -62,7 +62,7 @@ Reference: \l{GNU General Public License} \brief About the LGPL license used for Qt. The Qt GUI Toolkit is Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).\br -Contact: Qt Software Information (qt-info@nokia.com) +Contact: Nokia Corporation (qt-info@nokia.com) Qt is available under the LGPL. diff --git a/doc/src/graphicsview.qdoc b/doc/src/graphicsview.qdoc index 049b0c3..c88efdb 100644 --- a/doc/src/graphicsview.qdoc +++ b/doc/src/graphicsview.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/groups.qdoc b/doc/src/groups.qdoc index c9cedc4..367b519 100644 --- a/doc/src/groups.qdoc +++ b/doc/src/groups.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/guibooks.qdoc b/doc/src/guibooks.qdoc index 888368b..bb34913 100644 --- a/doc/src/guibooks.qdoc +++ b/doc/src/guibooks.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/hierarchy.qdoc b/doc/src/hierarchy.qdoc index 2b70964..4a278dc 100644 --- a/doc/src/hierarchy.qdoc +++ b/doc/src/hierarchy.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/how-to-learn-qt.qdoc b/doc/src/how-to-learn-qt.qdoc index 4b16294..71b779b 100644 --- a/doc/src/how-to-learn-qt.qdoc +++ b/doc/src/how-to-learn-qt.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/i18n.qdoc b/doc/src/i18n.qdoc index 5018b51..4109b62 100644 --- a/doc/src/i18n.qdoc +++ b/doc/src/i18n.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/index.qdoc b/doc/src/index.qdoc index 23e8623..bcaa614 100644 --- a/doc/src/index.qdoc +++ b/doc/src/index.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/installation.qdoc b/doc/src/installation.qdoc index 6a689f9..de4a30e 100644 --- a/doc/src/installation.qdoc +++ b/doc/src/installation.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/introtodbus.qdoc b/doc/src/introtodbus.qdoc index 71c65d5..51599fb 100644 --- a/doc/src/introtodbus.qdoc +++ b/doc/src/introtodbus.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/ipc.qdoc b/doc/src/ipc.qdoc index 97ed22e..1349fde 100644 --- a/doc/src/ipc.qdoc +++ b/doc/src/ipc.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/known-issues.qdoc b/doc/src/known-issues.qdoc index 91e122f..e005b14 100644 --- a/doc/src/known-issues.qdoc +++ b/doc/src/known-issues.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/layout.qdoc b/doc/src/layout.qdoc index d97fcfc..ec88089 100644 --- a/doc/src/layout.qdoc +++ b/doc/src/layout.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/licenses.qdoc b/doc/src/licenses.qdoc index a11c071..f6e70b6 100644 --- a/doc/src/licenses.qdoc +++ b/doc/src/licenses.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/linguist-manual.qdoc b/doc/src/linguist-manual.qdoc index 92e3bed..ee59fdc 100644 --- a/doc/src/linguist-manual.qdoc +++ b/doc/src/linguist-manual.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/mac-differences.qdoc b/doc/src/mac-differences.qdoc index 5849850..3ae9a90 100644 --- a/doc/src/mac-differences.qdoc +++ b/doc/src/mac-differences.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/mainclasses.qdoc b/doc/src/mainclasses.qdoc index da041fa..33bb91a 100644 --- a/doc/src/mainclasses.qdoc +++ b/doc/src/mainclasses.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/metaobjects.qdoc b/doc/src/metaobjects.qdoc index 4c91a90..647f0a5 100644 --- a/doc/src/metaobjects.qdoc +++ b/doc/src/metaobjects.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/moc.qdoc b/doc/src/moc.qdoc index b7283c4..fe40fec 100644 --- a/doc/src/moc.qdoc +++ b/doc/src/moc.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/model-view-programming.qdoc b/doc/src/model-view-programming.qdoc index 8874cfa..e216591 100644 --- a/doc/src/model-view-programming.qdoc +++ b/doc/src/model-view-programming.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/modules.qdoc b/doc/src/modules.qdoc index 7372994..145b361 100644 --- a/doc/src/modules.qdoc +++ b/doc/src/modules.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/object.qdoc b/doc/src/object.qdoc index 3bd563a..9135719 100644 --- a/doc/src/object.qdoc +++ b/doc/src/object.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/objecttrees.qdoc b/doc/src/objecttrees.qdoc index 4b868c0..8d49835 100644 --- a/doc/src/objecttrees.qdoc +++ b/doc/src/objecttrees.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/opensourceedition.qdoc b/doc/src/opensourceedition.qdoc index d8253d3..46fdb99 100644 --- a/doc/src/opensourceedition.qdoc +++ b/doc/src/opensourceedition.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/overviews.qdoc b/doc/src/overviews.qdoc index 8eb4e35..364ddb6 100644 --- a/doc/src/overviews.qdoc +++ b/doc/src/overviews.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/paintsystem.qdoc b/doc/src/paintsystem.qdoc index 11b9a5b..56f60a3 100644 --- a/doc/src/paintsystem.qdoc +++ b/doc/src/paintsystem.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/phonon-api.qdoc b/doc/src/phonon-api.qdoc index dd37fe2..9d49c3f 100644 --- a/doc/src/phonon-api.qdoc +++ b/doc/src/phonon-api.qdoc @@ -2,7 +2,7 @@ This file is part of the KDE project Copyright (C) 2005-2007 Matthias Kretz Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). - Contact: Qt Software Information (qt-info@nokia.com) + Contact: Nokia Corporation (qt-info@nokia.com) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/doc/src/phonon.qdoc b/doc/src/phonon.qdoc index 9470e61..27b43b9 100644 --- a/doc/src/phonon.qdoc +++ b/doc/src/phonon.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -624,7 +624,7 @@ Copyright (C) 2005-2007 Matthias Kretz \BR Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). - Contact: Qt Software Information (qt-info@nokia.com) + Contact: Nokia Corporation (qt-info@nokia.com) This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public diff --git a/doc/src/platform-notes.qdoc b/doc/src/platform-notes.qdoc index c8046c4..cd782fe 100644 --- a/doc/src/platform-notes.qdoc +++ b/doc/src/platform-notes.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/plugins-howto.qdoc b/doc/src/plugins-howto.qdoc index 2c2b031..4c37f8e 100644 --- a/doc/src/plugins-howto.qdoc +++ b/doc/src/plugins-howto.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/porting-qsa.qdoc b/doc/src/porting-qsa.qdoc index 0560060..5cc8e3c 100644 --- a/doc/src/porting-qsa.qdoc +++ b/doc/src/porting-qsa.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/porting4-canvas.qdoc b/doc/src/porting4-canvas.qdoc index dcd1a1e..fa0bc6b 100644 --- a/doc/src/porting4-canvas.qdoc +++ b/doc/src/porting4-canvas.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/porting4-designer.qdoc b/doc/src/porting4-designer.qdoc index 9ae3c52..916894b 100644 --- a/doc/src/porting4-designer.qdoc +++ b/doc/src/porting4-designer.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/porting4-overview.qdoc b/doc/src/porting4-overview.qdoc index 462f849..d91729d 100644 --- a/doc/src/porting4-overview.qdoc +++ b/doc/src/porting4-overview.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/porting4.qdoc b/doc/src/porting4.qdoc index b93e139..7ce2969 100644 --- a/doc/src/porting4.qdoc +++ b/doc/src/porting4.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/printing.qdoc b/doc/src/printing.qdoc index e1c337a..003fa8f 100644 --- a/doc/src/printing.qdoc +++ b/doc/src/printing.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/properties.qdoc b/doc/src/properties.qdoc index d934f13..65d3fc8 100644 --- a/doc/src/properties.qdoc +++ b/doc/src/properties.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3asciicache.qdoc b/doc/src/q3asciicache.qdoc index fbbb21b..43537cc 100644 --- a/doc/src/q3asciicache.qdoc +++ b/doc/src/q3asciicache.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3asciidict.qdoc b/doc/src/q3asciidict.qdoc index 0b5b790..9a51db1 100644 --- a/doc/src/q3asciidict.qdoc +++ b/doc/src/q3asciidict.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3cache.qdoc b/doc/src/q3cache.qdoc index a54430f..d8799b6 100644 --- a/doc/src/q3cache.qdoc +++ b/doc/src/q3cache.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3dict.qdoc b/doc/src/q3dict.qdoc index 8a0c5b0..0e6d51d 100644 --- a/doc/src/q3dict.qdoc +++ b/doc/src/q3dict.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3intcache.qdoc b/doc/src/q3intcache.qdoc index bba79f1..dfff679 100644 --- a/doc/src/q3intcache.qdoc +++ b/doc/src/q3intcache.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3intdict.qdoc b/doc/src/q3intdict.qdoc index 8f0aabf..cef2e79 100644 --- a/doc/src/q3intdict.qdoc +++ b/doc/src/q3intdict.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3memarray.qdoc b/doc/src/q3memarray.qdoc index 5ab7895..b9c1f73 100644 --- a/doc/src/q3memarray.qdoc +++ b/doc/src/q3memarray.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3popupmenu.qdoc b/doc/src/q3popupmenu.qdoc index 137115e..a2cfe08 100644 --- a/doc/src/q3popupmenu.qdoc +++ b/doc/src/q3popupmenu.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3ptrdict.qdoc b/doc/src/q3ptrdict.qdoc index a7e3545..38ca0bb 100644 --- a/doc/src/q3ptrdict.qdoc +++ b/doc/src/q3ptrdict.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3ptrlist.qdoc b/doc/src/q3ptrlist.qdoc index 7eb4265..3000940 100644 --- a/doc/src/q3ptrlist.qdoc +++ b/doc/src/q3ptrlist.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3ptrqueue.qdoc b/doc/src/q3ptrqueue.qdoc index 8a3ef22..b3af5f6 100644 --- a/doc/src/q3ptrqueue.qdoc +++ b/doc/src/q3ptrqueue.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3ptrstack.qdoc b/doc/src/q3ptrstack.qdoc index fcece9f..1650d69 100644 --- a/doc/src/q3ptrstack.qdoc +++ b/doc/src/q3ptrstack.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3ptrvector.qdoc b/doc/src/q3ptrvector.qdoc index b539219..fa78de5 100644 --- a/doc/src/q3ptrvector.qdoc +++ b/doc/src/q3ptrvector.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3sqlfieldinfo.qdoc b/doc/src/q3sqlfieldinfo.qdoc index 1b152c0..ba064f3 100644 --- a/doc/src/q3sqlfieldinfo.qdoc +++ b/doc/src/q3sqlfieldinfo.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3sqlrecordinfo.qdoc b/doc/src/q3sqlrecordinfo.qdoc index f8f6cd5..64236d2 100644 --- a/doc/src/q3sqlrecordinfo.qdoc +++ b/doc/src/q3sqlrecordinfo.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3valuelist.qdoc b/doc/src/q3valuelist.qdoc index e3681af..fd73763 100644 --- a/doc/src/q3valuelist.qdoc +++ b/doc/src/q3valuelist.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3valuestack.qdoc b/doc/src/q3valuestack.qdoc index 40847ab..e3ae677 100644 --- a/doc/src/q3valuestack.qdoc +++ b/doc/src/q3valuestack.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/q3valuevector.qdoc b/doc/src/q3valuevector.qdoc index 1af2bf3..353b7fa 100644 --- a/doc/src/q3valuevector.qdoc +++ b/doc/src/q3valuevector.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qalgorithms.qdoc b/doc/src/qalgorithms.qdoc index 90289f9..7634322 100644 --- a/doc/src/qalgorithms.qdoc +++ b/doc/src/qalgorithms.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qaxcontainer.qdoc b/doc/src/qaxcontainer.qdoc index 48c76fc..2438e2a 100644 --- a/doc/src/qaxcontainer.qdoc +++ b/doc/src/qaxcontainer.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -231,7 +231,7 @@ Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).\br All rights reserved. - Contact: Qt Software Information (qt-info@nokia.com)\br + Contact: Nokia Corporation (qt-info@nokia.com)\br You may use this file under the terms of the BSD license as follows:\br diff --git a/doc/src/qaxserver.qdoc b/doc/src/qaxserver.qdoc index f0c317b..95a6cbc 100644 --- a/doc/src/qaxserver.qdoc +++ b/doc/src/qaxserver.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -869,7 +869,7 @@ Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).\br All rights reserved. - Contact: Qt Software Information (qt-info@nokia.com)\br + Contact: Nokia Corporation (qt-info@nokia.com)\br You may use this file under the terms of the BSD license as follows:\br diff --git a/doc/src/qcache.qdoc b/doc/src/qcache.qdoc index 2c68640..6c88ede 100644 --- a/doc/src/qcache.qdoc +++ b/doc/src/qcache.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qcolormap.qdoc b/doc/src/qcolormap.qdoc index dae4dc7..95f7dc0 100644 --- a/doc/src/qcolormap.qdoc +++ b/doc/src/qcolormap.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qdbusadaptors.qdoc b/doc/src/qdbusadaptors.qdoc index fc487aa..e3e5cf9 100644 --- a/doc/src/qdbusadaptors.qdoc +++ b/doc/src/qdbusadaptors.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,14 +34,14 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ /** -*- mode: C++ -*- ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -74,7 +74,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qdesktopwidget.qdoc b/doc/src/qdesktopwidget.qdoc index 5a27fb4..1158904 100644 --- a/doc/src/qdesktopwidget.qdoc +++ b/doc/src/qdesktopwidget.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qiterator.qdoc b/doc/src/qiterator.qdoc index b1e95c6..416b4bc 100644 --- a/doc/src/qiterator.qdoc +++ b/doc/src/qiterator.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qmake-manual.qdoc b/doc/src/qmake-manual.qdoc index 172bc60..d840c71 100644 --- a/doc/src/qmake-manual.qdoc +++ b/doc/src/qmake-manual.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qmsdev.qdoc b/doc/src/qmsdev.qdoc index 8cbd1d3..b8d8f85 100644 --- a/doc/src/qmsdev.qdoc +++ b/doc/src/qmsdev.qdoc @@ -3,7 +3,7 @@ ** Documentation of Visual Studio Integration Plugin. ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/qnamespace.qdoc b/doc/src/qnamespace.qdoc index d9f001e..ca5c981 100644 --- a/doc/src/qnamespace.qdoc +++ b/doc/src/qnamespace.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qpagesetupdialog.qdoc b/doc/src/qpagesetupdialog.qdoc index 66e4b96..7f0b09e 100644 --- a/doc/src/qpagesetupdialog.qdoc +++ b/doc/src/qpagesetupdialog.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qpaintdevice.qdoc b/doc/src/qpaintdevice.qdoc index be2f4bb..0f4e9a0 100644 --- a/doc/src/qpaintdevice.qdoc +++ b/doc/src/qpaintdevice.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qpair.qdoc b/doc/src/qpair.qdoc index c31b7eb..6d8a0f9 100644 --- a/doc/src/qpair.qdoc +++ b/doc/src/qpair.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qpatternistdummy.cpp b/doc/src/qpatternistdummy.cpp index 8bedecb..a690184 100644 --- a/doc/src/qpatternistdummy.cpp +++ b/doc/src/qpatternistdummy.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qplugin.qdoc b/doc/src/qplugin.qdoc index 7a93394..4fbd198 100644 --- a/doc/src/qplugin.qdoc +++ b/doc/src/qplugin.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qprintdialog.qdoc b/doc/src/qprintdialog.qdoc index a4cd18b..8011f62 100644 --- a/doc/src/qprintdialog.qdoc +++ b/doc/src/qprintdialog.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qprinterinfo.qdoc b/doc/src/qprinterinfo.qdoc index ae900e0..a4ffeb2 100644 --- a/doc/src/qprinterinfo.qdoc +++ b/doc/src/qprinterinfo.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qset.qdoc b/doc/src/qset.qdoc index 6326219..20ed771 100644 --- a/doc/src/qset.qdoc +++ b/doc/src/qset.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qsignalspy.qdoc b/doc/src/qsignalspy.qdoc index cf9021e..4ee7590 100644 --- a/doc/src/qsignalspy.qdoc +++ b/doc/src/qsignalspy.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qsizepolicy.qdoc b/doc/src/qsizepolicy.qdoc index d82bb16..c74beb8 100644 --- a/doc/src/qsizepolicy.qdoc +++ b/doc/src/qsizepolicy.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qsql.qdoc b/doc/src/qsql.qdoc index e98d309..5315413 100644 --- a/doc/src/qsql.qdoc +++ b/doc/src/qsql.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qstyles.qdoc b/doc/src/qstyles.qdoc index e17097a..ae2d95b 100644 --- a/doc/src/qstyles.qdoc +++ b/doc/src/qstyles.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt-conf.qdoc b/doc/src/qt-conf.qdoc index d826600..f637e34 100644 --- a/doc/src/qt-conf.qdoc +++ b/doc/src/qt-conf.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt-embedded.qdoc b/doc/src/qt-embedded.qdoc index f0eb096..596c3dc 100644 --- a/doc/src/qt-embedded.qdoc +++ b/doc/src/qt-embedded.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt3support.qdoc b/doc/src/qt3support.qdoc index 30bc5a3..055573c 100644 --- a/doc/src/qt3support.qdoc +++ b/doc/src/qt3support.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt3to4.qdoc b/doc/src/qt3to4.qdoc index 1297424..9ffd52e 100644 --- a/doc/src/qt3to4.qdoc +++ b/doc/src/qt3to4.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-accessibility.qdoc b/doc/src/qt4-accessibility.qdoc index 05a25ee..4821951 100644 --- a/doc/src/qt4-accessibility.qdoc +++ b/doc/src/qt4-accessibility.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-arthur.qdoc b/doc/src/qt4-arthur.qdoc index 8a29138..ce84ab6 100644 --- a/doc/src/qt4-arthur.qdoc +++ b/doc/src/qt4-arthur.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-designer.qdoc b/doc/src/qt4-designer.qdoc index 3f90390..a525c62 100644 --- a/doc/src/qt4-designer.qdoc +++ b/doc/src/qt4-designer.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-interview.qdoc b/doc/src/qt4-interview.qdoc index bceba85..a39aa4c 100644 --- a/doc/src/qt4-interview.qdoc +++ b/doc/src/qt4-interview.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-intro.qdoc b/doc/src/qt4-intro.qdoc index 5d83ef2..2fda7cf 100644 --- a/doc/src/qt4-intro.qdoc +++ b/doc/src/qt4-intro.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-mainwindow.qdoc b/doc/src/qt4-mainwindow.qdoc index ad5aec2..4d94eb7 100644 --- a/doc/src/qt4-mainwindow.qdoc +++ b/doc/src/qt4-mainwindow.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-network.qdoc b/doc/src/qt4-network.qdoc index 35418cc..3b3091e 100644 --- a/doc/src/qt4-network.qdoc +++ b/doc/src/qt4-network.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-scribe.qdoc b/doc/src/qt4-scribe.qdoc index 5061a82..a573eb8 100644 --- a/doc/src/qt4-scribe.qdoc +++ b/doc/src/qt4-scribe.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-sql.qdoc b/doc/src/qt4-sql.qdoc index cb94f54..bc9a6d4 100644 --- a/doc/src/qt4-sql.qdoc +++ b/doc/src/qt4-sql.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-styles.qdoc b/doc/src/qt4-styles.qdoc index 7e02ecc..79dcf31 100644 --- a/doc/src/qt4-styles.qdoc +++ b/doc/src/qt4-styles.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-threads.qdoc b/doc/src/qt4-threads.qdoc index 5239bba..39fd852 100644 --- a/doc/src/qt4-threads.qdoc +++ b/doc/src/qt4-threads.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qt4-tulip.qdoc b/doc/src/qt4-tulip.qdoc index d1f925e..62a6e22 100644 --- a/doc/src/qt4-tulip.qdoc +++ b/doc/src/qt4-tulip.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtassistant.qdoc b/doc/src/qtassistant.qdoc index 6be92fa..edb5fcd 100644 --- a/doc/src/qtassistant.qdoc +++ b/doc/src/qtassistant.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtconfig.qdoc b/doc/src/qtconfig.qdoc index f515aa3..4e2938d 100644 --- a/doc/src/qtconfig.qdoc +++ b/doc/src/qtconfig.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtcore.qdoc b/doc/src/qtcore.qdoc index 71a29b7..40555ef 100644 --- a/doc/src/qtcore.qdoc +++ b/doc/src/qtcore.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtdbus.qdoc b/doc/src/qtdbus.qdoc index 37217e9..fd3deac 100644 --- a/doc/src/qtdbus.qdoc +++ b/doc/src/qtdbus.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,14 +34,14 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ /** -*- mode: C++ -*- ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -74,7 +74,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtdemo.qdoc b/doc/src/qtdemo.qdoc index 7e23f6d..57ff792 100644 --- a/doc/src/qtdemo.qdoc +++ b/doc/src/qtdemo.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtdesigner.qdoc b/doc/src/qtdesigner.qdoc index 9699c5b..2117b27 100644 --- a/doc/src/qtdesigner.qdoc +++ b/doc/src/qtdesigner.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtendian.qdoc b/doc/src/qtendian.qdoc index f4b5bb8..dcffb5d 100644 --- a/doc/src/qtendian.qdoc +++ b/doc/src/qtendian.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtestevent.qdoc b/doc/src/qtestevent.qdoc index f5edb19..2e111b3 100644 --- a/doc/src/qtestevent.qdoc +++ b/doc/src/qtestevent.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtestlib.qdoc b/doc/src/qtestlib.qdoc index 4e93107..9f82d89 100644 --- a/doc/src/qtestlib.qdoc +++ b/doc/src/qtestlib.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtgui.qdoc b/doc/src/qtgui.qdoc index 08b492a..1c4401f 100644 --- a/doc/src/qtgui.qdoc +++ b/doc/src/qtgui.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qthelp.qdoc b/doc/src/qthelp.qdoc index 2182606..7260b6e 100644 --- a/doc/src/qthelp.qdoc +++ b/doc/src/qthelp.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtmac-as-native.qdoc b/doc/src/qtmac-as-native.qdoc index ecbc64c..793e541 100644 --- a/doc/src/qtmac-as-native.qdoc +++ b/doc/src/qtmac-as-native.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -44,7 +44,7 @@ ** Qt for Mac OS X documentation ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt Toolkit. ** @@ -77,7 +77,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** **********************************************************************/ diff --git a/doc/src/qtmain.qdoc b/doc/src/qtmain.qdoc index a6b234a..ca39413 100644 --- a/doc/src/qtmain.qdoc +++ b/doc/src/qtmain.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -64,7 +64,7 @@ Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).\br All rights reserved. - Contact: Qt Software Information (qt-info@nokia.com)\br + Contact: Nokia Corporation (qt-info@nokia.com)\br You may use this file under the terms of the BSD license as follows:\br diff --git a/doc/src/qtnetwork.qdoc b/doc/src/qtnetwork.qdoc index 2be7457..0eca161 100644 --- a/doc/src/qtnetwork.qdoc +++ b/doc/src/qtnetwork.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtopengl.qdoc b/doc/src/qtopengl.qdoc index 1052f14..69d33bb 100644 --- a/doc/src/qtopengl.qdoc +++ b/doc/src/qtopengl.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtopiacore-architecture.qdoc b/doc/src/qtopiacore-architecture.qdoc index 8ec0136..da11eb3 100644 --- a/doc/src/qtopiacore-architecture.qdoc +++ b/doc/src/qtopiacore-architecture.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtopiacore-displaymanagement.qdoc b/doc/src/qtopiacore-displaymanagement.qdoc index 7cfa91f..3be4387 100644 --- a/doc/src/qtopiacore-displaymanagement.qdoc +++ b/doc/src/qtopiacore-displaymanagement.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtopiacore-opengl.qdoc b/doc/src/qtopiacore-opengl.qdoc index ceaff22..7452592 100644 --- a/doc/src/qtopiacore-opengl.qdoc +++ b/doc/src/qtopiacore-opengl.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtopiacore.qdoc b/doc/src/qtopiacore.qdoc index 43e31eb..943c00b 100644 --- a/doc/src/qtopiacore.qdoc +++ b/doc/src/qtopiacore.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtscript.qdoc b/doc/src/qtscript.qdoc index 4a2bbf6..ac13ddf 100644 --- a/doc/src/qtscript.qdoc +++ b/doc/src/qtscript.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtscriptdebugger-manual.qdoc b/doc/src/qtscriptdebugger-manual.qdoc index 75d87f8..15d5f23 100644 --- a/doc/src/qtscriptdebugger-manual.qdoc +++ b/doc/src/qtscriptdebugger-manual.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtscriptextensions.qdoc b/doc/src/qtscriptextensions.qdoc index 2a7d569..adc5437 100644 --- a/doc/src/qtscriptextensions.qdoc +++ b/doc/src/qtscriptextensions.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -42,7 +42,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/qtscripttools.qdoc b/doc/src/qtscripttools.qdoc index 7d4bee1..2eb732f 100644 --- a/doc/src/qtscripttools.qdoc +++ b/doc/src/qtscripttools.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtsql.qdoc b/doc/src/qtsql.qdoc index c00410b..ff58c62 100644 --- a/doc/src/qtsql.qdoc +++ b/doc/src/qtsql.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtsvg.qdoc b/doc/src/qtsvg.qdoc index 083c669..0ca01f2 100644 --- a/doc/src/qtsvg.qdoc +++ b/doc/src/qtsvg.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qttest.qdoc b/doc/src/qttest.qdoc index 566ff5a..64e2baf 100644 --- a/doc/src/qttest.qdoc +++ b/doc/src/qttest.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtuiloader.qdoc b/doc/src/qtuiloader.qdoc index 746738b..137cfeb 100644 --- a/doc/src/qtuiloader.qdoc +++ b/doc/src/qtuiloader.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtxml.qdoc b/doc/src/qtxml.qdoc index e826403..0ab45aa 100644 --- a/doc/src/qtxml.qdoc +++ b/doc/src/qtxml.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qtxmlpatterns.qdoc b/doc/src/qtxmlpatterns.qdoc index cb260fc..6b82c0d 100644 --- a/doc/src/qtxmlpatterns.qdoc +++ b/doc/src/qtxmlpatterns.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qundo.qdoc b/doc/src/qundo.qdoc index 5358c12..77db9ea 100644 --- a/doc/src/qundo.qdoc +++ b/doc/src/qundo.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qvarlengtharray.qdoc b/doc/src/qvarlengtharray.qdoc index 6513b3e..ac6bb6e 100644 --- a/doc/src/qvarlengtharray.qdoc +++ b/doc/src/qvarlengtharray.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/qwaitcondition.qdoc b/doc/src/qwaitcondition.qdoc index 4a64cfe..ae94e35 100644 --- a/doc/src/qwaitcondition.qdoc +++ b/doc/src/qwaitcondition.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/rcc.qdoc b/doc/src/rcc.qdoc index d67a3bf..ea75bcc 100644 --- a/doc/src/rcc.qdoc +++ b/doc/src/rcc.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/resources.qdoc b/doc/src/resources.qdoc index 7997b9f..e4d4c35 100644 --- a/doc/src/resources.qdoc +++ b/doc/src/resources.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/richtext.qdoc b/doc/src/richtext.qdoc index fbd8adb..41afbcf 100644 --- a/doc/src/richtext.qdoc +++ b/doc/src/richtext.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/session.qdoc b/doc/src/session.qdoc index f47c245..f194835 100644 --- a/doc/src/session.qdoc +++ b/doc/src/session.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/sharedlibrary.qdoc b/doc/src/sharedlibrary.qdoc index 3febb8f..96e346f 100644 --- a/doc/src/sharedlibrary.qdoc +++ b/doc/src/sharedlibrary.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -42,7 +42,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the Qt GUI Toolkit. ** EDITIONS: FREE, PROFESSIONAL, ENTERPRISE diff --git a/doc/src/signalsandslots.qdoc b/doc/src/signalsandslots.qdoc index 5432bd4..fdfb3d4 100644 --- a/doc/src/signalsandslots.qdoc +++ b/doc/src/signalsandslots.qdoc @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/accessibilityfactorysnippet.cpp b/doc/src/snippets/accessibilityfactorysnippet.cpp index 1dbc38a..1ea8950 100644 --- a/doc/src/snippets/accessibilityfactorysnippet.cpp +++ b/doc/src/snippets/accessibilityfactorysnippet.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/accessibilitypluginsnippet.cpp b/doc/src/snippets/accessibilitypluginsnippet.cpp index 228f11c..d38133e 100644 --- a/doc/src/snippets/accessibilitypluginsnippet.cpp +++ b/doc/src/snippets/accessibilitypluginsnippet.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/accessibilityslidersnippet.cpp b/doc/src/snippets/accessibilityslidersnippet.cpp index 5c4b7fb..ec92527 100644 --- a/doc/src/snippets/accessibilityslidersnippet.cpp +++ b/doc/src/snippets/accessibilityslidersnippet.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/alphachannel.cpp b/doc/src/snippets/alphachannel.cpp index ad0885a..627b1f0 100644 --- a/doc/src/snippets/alphachannel.cpp +++ b/doc/src/snippets/alphachannel.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/brush/brush.cpp b/doc/src/snippets/brush/brush.cpp index c4583c0..9563e0a 100644 --- a/doc/src/snippets/brush/brush.cpp +++ b/doc/src/snippets/brush/brush.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/brush/gradientcreationsnippet.cpp b/doc/src/snippets/brush/gradientcreationsnippet.cpp index a7a50ef..30989af 100644 --- a/doc/src/snippets/brush/gradientcreationsnippet.cpp +++ b/doc/src/snippets/brush/gradientcreationsnippet.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/brushstyles/main.cpp b/doc/src/snippets/brushstyles/main.cpp index ed32fc3..cee8f97 100644 --- a/doc/src/snippets/brushstyles/main.cpp +++ b/doc/src/snippets/brushstyles/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/brushstyles/renderarea.cpp b/doc/src/snippets/brushstyles/renderarea.cpp index 0be6c71..0127ecb 100644 --- a/doc/src/snippets/brushstyles/renderarea.cpp +++ b/doc/src/snippets/brushstyles/renderarea.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/brushstyles/renderarea.h b/doc/src/snippets/brushstyles/renderarea.h index 5a1df67..2d50019 100644 --- a/doc/src/snippets/brushstyles/renderarea.h +++ b/doc/src/snippets/brushstyles/renderarea.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/brushstyles/stylewidget.cpp b/doc/src/snippets/brushstyles/stylewidget.cpp index 21ff711..3ce6e50 100644 --- a/doc/src/snippets/brushstyles/stylewidget.cpp +++ b/doc/src/snippets/brushstyles/stylewidget.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/brushstyles/stylewidget.h b/doc/src/snippets/brushstyles/stylewidget.h index c5c3f02..cb67a2c 100644 --- a/doc/src/snippets/brushstyles/stylewidget.h +++ b/doc/src/snippets/brushstyles/stylewidget.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/buffer/buffer.cpp b/doc/src/snippets/buffer/buffer.cpp index 3df2ed0..81fc9ca 100644 --- a/doc/src/snippets/buffer/buffer.cpp +++ b/doc/src/snippets/buffer/buffer.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/clipboard/clipwindow.cpp b/doc/src/snippets/clipboard/clipwindow.cpp index e0eb383..db51e9c 100644 --- a/doc/src/snippets/clipboard/clipwindow.cpp +++ b/doc/src/snippets/clipboard/clipwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/clipboard/clipwindow.h b/doc/src/snippets/clipboard/clipwindow.h index ab3b654..96be5eb 100644 --- a/doc/src/snippets/clipboard/clipwindow.h +++ b/doc/src/snippets/clipboard/clipwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/clipboard/main.cpp b/doc/src/snippets/clipboard/main.cpp index 7947ff1..60250d9 100644 --- a/doc/src/snippets/clipboard/main.cpp +++ b/doc/src/snippets/clipboard/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/coordsys/coordsys.cpp b/doc/src/snippets/coordsys/coordsys.cpp index 2fb0744..d0b70c0 100644 --- a/doc/src/snippets/coordsys/coordsys.cpp +++ b/doc/src/snippets/coordsys/coordsys.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/customstyle/customstyle.cpp b/doc/src/snippets/customstyle/customstyle.cpp index 0e3d00e..921a494 100644 --- a/doc/src/snippets/customstyle/customstyle.cpp +++ b/doc/src/snippets/customstyle/customstyle.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/customstyle/customstyle.h b/doc/src/snippets/customstyle/customstyle.h index 238eb6c..c0bed7a 100644 --- a/doc/src/snippets/customstyle/customstyle.h +++ b/doc/src/snippets/customstyle/customstyle.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/customstyle/main.cpp b/doc/src/snippets/customstyle/main.cpp index a6efacd..097dc44 100644 --- a/doc/src/snippets/customstyle/main.cpp +++ b/doc/src/snippets/customstyle/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/autoconnection/imagedialog.cpp b/doc/src/snippets/designer/autoconnection/imagedialog.cpp index a08650b..06e8dac 100644 --- a/doc/src/snippets/designer/autoconnection/imagedialog.cpp +++ b/doc/src/snippets/designer/autoconnection/imagedialog.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/autoconnection/imagedialog.h b/doc/src/snippets/designer/autoconnection/imagedialog.h index e99b7f0..3aa35f3 100644 --- a/doc/src/snippets/designer/autoconnection/imagedialog.h +++ b/doc/src/snippets/designer/autoconnection/imagedialog.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/autoconnection/main.cpp b/doc/src/snippets/designer/autoconnection/main.cpp index f5c762c..35456e9 100644 --- a/doc/src/snippets/designer/autoconnection/main.cpp +++ b/doc/src/snippets/designer/autoconnection/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/imagedialog/main.cpp b/doc/src/snippets/designer/imagedialog/main.cpp index 3613dde..6f46199 100644 --- a/doc/src/snippets/designer/imagedialog/main.cpp +++ b/doc/src/snippets/designer/imagedialog/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp b/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp index 6386408..d3d1bce 100644 --- a/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp +++ b/doc/src/snippets/designer/multipleinheritance/imagedialog.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/multipleinheritance/imagedialog.h b/doc/src/snippets/designer/multipleinheritance/imagedialog.h index 81161e7..e495976 100644 --- a/doc/src/snippets/designer/multipleinheritance/imagedialog.h +++ b/doc/src/snippets/designer/multipleinheritance/imagedialog.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/multipleinheritance/main.cpp b/doc/src/snippets/designer/multipleinheritance/main.cpp index f5c762c..35456e9 100644 --- a/doc/src/snippets/designer/multipleinheritance/main.cpp +++ b/doc/src/snippets/designer/multipleinheritance/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/noautoconnection/imagedialog.cpp b/doc/src/snippets/designer/noautoconnection/imagedialog.cpp index 1529377..e6e6f8a 100644 --- a/doc/src/snippets/designer/noautoconnection/imagedialog.cpp +++ b/doc/src/snippets/designer/noautoconnection/imagedialog.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/noautoconnection/imagedialog.h b/doc/src/snippets/designer/noautoconnection/imagedialog.h index c67b01e..456d93f 100644 --- a/doc/src/snippets/designer/noautoconnection/imagedialog.h +++ b/doc/src/snippets/designer/noautoconnection/imagedialog.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/noautoconnection/main.cpp b/doc/src/snippets/designer/noautoconnection/main.cpp index f5c762c..35456e9 100644 --- a/doc/src/snippets/designer/noautoconnection/main.cpp +++ b/doc/src/snippets/designer/noautoconnection/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/singleinheritance/imagedialog.cpp b/doc/src/snippets/designer/singleinheritance/imagedialog.cpp index 2614858..ec0cbb7 100644 --- a/doc/src/snippets/designer/singleinheritance/imagedialog.cpp +++ b/doc/src/snippets/designer/singleinheritance/imagedialog.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/singleinheritance/imagedialog.h b/doc/src/snippets/designer/singleinheritance/imagedialog.h index 08e0c61..15c2f3e 100644 --- a/doc/src/snippets/designer/singleinheritance/imagedialog.h +++ b/doc/src/snippets/designer/singleinheritance/imagedialog.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/designer/singleinheritance/main.cpp b/doc/src/snippets/designer/singleinheritance/main.cpp index f5c762c..35456e9 100644 --- a/doc/src/snippets/designer/singleinheritance/main.cpp +++ b/doc/src/snippets/designer/singleinheritance/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dialogs/dialogs.cpp b/doc/src/snippets/dialogs/dialogs.cpp index 7474e30..3e8a6a3 100644 --- a/doc/src/snippets/dialogs/dialogs.cpp +++ b/doc/src/snippets/dialogs/dialogs.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dockwidgets/main.cpp b/doc/src/snippets/dockwidgets/main.cpp index 7dfd2f4..7cefee2 100644 --- a/doc/src/snippets/dockwidgets/main.cpp +++ b/doc/src/snippets/dockwidgets/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dockwidgets/mainwindow.cpp b/doc/src/snippets/dockwidgets/mainwindow.cpp index ec80303..54b7e16 100644 --- a/doc/src/snippets/dockwidgets/mainwindow.cpp +++ b/doc/src/snippets/dockwidgets/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dockwidgets/mainwindow.h b/doc/src/snippets/dockwidgets/mainwindow.h index fffadd4..c87ed04 100644 --- a/doc/src/snippets/dockwidgets/mainwindow.h +++ b/doc/src/snippets/dockwidgets/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/draganddrop/dragwidget.cpp b/doc/src/snippets/draganddrop/dragwidget.cpp index 2fe3e53..ceb51da 100644 --- a/doc/src/snippets/draganddrop/dragwidget.cpp +++ b/doc/src/snippets/draganddrop/dragwidget.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/draganddrop/dragwidget.h b/doc/src/snippets/draganddrop/dragwidget.h index 07fd091..389a8a6 100644 --- a/doc/src/snippets/draganddrop/dragwidget.h +++ b/doc/src/snippets/draganddrop/dragwidget.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/draganddrop/main.cpp b/doc/src/snippets/draganddrop/main.cpp index 73a8bc6..1a67513 100644 --- a/doc/src/snippets/draganddrop/main.cpp +++ b/doc/src/snippets/draganddrop/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/draganddrop/mainwindow.cpp b/doc/src/snippets/draganddrop/mainwindow.cpp index 943b075..746ffdd 100644 --- a/doc/src/snippets/draganddrop/mainwindow.cpp +++ b/doc/src/snippets/draganddrop/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/draganddrop/mainwindow.h b/doc/src/snippets/draganddrop/mainwindow.h index 789b54a..2908457 100644 --- a/doc/src/snippets/draganddrop/mainwindow.h +++ b/doc/src/snippets/draganddrop/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dragging/main.cpp b/doc/src/snippets/dragging/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/dragging/main.cpp +++ b/doc/src/snippets/dragging/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dragging/mainwindow.cpp b/doc/src/snippets/dragging/mainwindow.cpp index 8c79895..57a670b 100644 --- a/doc/src/snippets/dragging/mainwindow.cpp +++ b/doc/src/snippets/dragging/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dragging/mainwindow.h b/doc/src/snippets/dragging/mainwindow.h index 6c90e60..7cbc26e 100644 --- a/doc/src/snippets/dragging/mainwindow.h +++ b/doc/src/snippets/dragging/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dropactions/main.cpp b/doc/src/snippets/dropactions/main.cpp index e10789c..4e3c2b7 100644 --- a/doc/src/snippets/dropactions/main.cpp +++ b/doc/src/snippets/dropactions/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dropactions/window.cpp b/doc/src/snippets/dropactions/window.cpp index c790f9b..48c9aac 100644 --- a/doc/src/snippets/dropactions/window.cpp +++ b/doc/src/snippets/dropactions/window.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dropactions/window.h b/doc/src/snippets/dropactions/window.h index 4bbec40..b3a12ad 100644 --- a/doc/src/snippets/dropactions/window.h +++ b/doc/src/snippets/dropactions/window.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/droparea.cpp b/doc/src/snippets/droparea.cpp index 4888435..ae57a14 100644 --- a/doc/src/snippets/droparea.cpp +++ b/doc/src/snippets/droparea.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** $QT_BEGIN_LICENSE:LGPL$ ** No Commercial Usage @@ -32,7 +32,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dropevents/main.cpp b/doc/src/snippets/dropevents/main.cpp index d71a9af..7d64a84 100644 --- a/doc/src/snippets/dropevents/main.cpp +++ b/doc/src/snippets/dropevents/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dropevents/window.cpp b/doc/src/snippets/dropevents/window.cpp index 6db6da9..4b89820 100644 --- a/doc/src/snippets/dropevents/window.cpp +++ b/doc/src/snippets/dropevents/window.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/dropevents/window.h b/doc/src/snippets/dropevents/window.h index 4bbec40..b3a12ad 100644 --- a/doc/src/snippets/dropevents/window.h +++ b/doc/src/snippets/dropevents/window.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/droprectangle/main.cpp b/doc/src/snippets/droprectangle/main.cpp index e10789c..4e3c2b7 100644 --- a/doc/src/snippets/droprectangle/main.cpp +++ b/doc/src/snippets/droprectangle/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/droprectangle/window.cpp b/doc/src/snippets/droprectangle/window.cpp index 22859e8..73b822a 100644 --- a/doc/src/snippets/droprectangle/window.cpp +++ b/doc/src/snippets/droprectangle/window.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/droprectangle/window.h b/doc/src/snippets/droprectangle/window.h index 8406a88..f724c56 100644 --- a/doc/src/snippets/droprectangle/window.h +++ b/doc/src/snippets/droprectangle/window.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/eventfilters/filterobject.cpp b/doc/src/snippets/eventfilters/filterobject.cpp index 64930da..c79fa85 100644 --- a/doc/src/snippets/eventfilters/filterobject.cpp +++ b/doc/src/snippets/eventfilters/filterobject.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/eventfilters/filterobject.h b/doc/src/snippets/eventfilters/filterobject.h index 5998784..3da0d84 100644 --- a/doc/src/snippets/eventfilters/filterobject.h +++ b/doc/src/snippets/eventfilters/filterobject.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/eventfilters/main.cpp b/doc/src/snippets/eventfilters/main.cpp index dafddc7..7bbe880 100644 --- a/doc/src/snippets/eventfilters/main.cpp +++ b/doc/src/snippets/eventfilters/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/events/events.cpp b/doc/src/snippets/events/events.cpp index e6045e6..02d775d 100644 --- a/doc/src/snippets/events/events.cpp +++ b/doc/src/snippets/events/events.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/explicitlysharedemployee/employee.cpp b/doc/src/snippets/explicitlysharedemployee/employee.cpp index e2476f9..e06d555 100644 --- a/doc/src/snippets/explicitlysharedemployee/employee.cpp +++ b/doc/src/snippets/explicitlysharedemployee/employee.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/explicitlysharedemployee/employee.h b/doc/src/snippets/explicitlysharedemployee/employee.h index 02ef134..863b3af 100644 --- a/doc/src/snippets/explicitlysharedemployee/employee.h +++ b/doc/src/snippets/explicitlysharedemployee/employee.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/explicitlysharedemployee/main.cpp b/doc/src/snippets/explicitlysharedemployee/main.cpp index c3222bb..3fea461 100644 --- a/doc/src/snippets/explicitlysharedemployee/main.cpp +++ b/doc/src/snippets/explicitlysharedemployee/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/file/file.cpp b/doc/src/snippets/file/file.cpp index c4f59a2..436042c 100644 --- a/doc/src/snippets/file/file.cpp +++ b/doc/src/snippets/file/file.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/fileinfo/main.cpp b/doc/src/snippets/fileinfo/main.cpp index f3bd741..7169c6a 100644 --- a/doc/src/snippets/fileinfo/main.cpp +++ b/doc/src/snippets/fileinfo/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/graphicssceneadditemsnippet.cpp b/doc/src/snippets/graphicssceneadditemsnippet.cpp index e5ef224..5e86f47 100644 --- a/doc/src/snippets/graphicssceneadditemsnippet.cpp +++ b/doc/src/snippets/graphicssceneadditemsnippet.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/i18n-non-qt-class/main.cpp b/doc/src/snippets/i18n-non-qt-class/main.cpp index 3f402e1..902bc76 100644 --- a/doc/src/snippets/i18n-non-qt-class/main.cpp +++ b/doc/src/snippets/i18n-non-qt-class/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/i18n-non-qt-class/myclass.cpp b/doc/src/snippets/i18n-non-qt-class/myclass.cpp index 2bbe55f..58ef82a 100644 --- a/doc/src/snippets/i18n-non-qt-class/myclass.cpp +++ b/doc/src/snippets/i18n-non-qt-class/myclass.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/i18n-non-qt-class/myclass.h b/doc/src/snippets/i18n-non-qt-class/myclass.h index 41d580e..03a61fa 100644 --- a/doc/src/snippets/i18n-non-qt-class/myclass.h +++ b/doc/src/snippets/i18n-non-qt-class/myclass.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/image/image.cpp b/doc/src/snippets/image/image.cpp index 75d84f6..82fec73 100644 --- a/doc/src/snippets/image/image.cpp +++ b/doc/src/snippets/image/image.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/image/supportedformat.cpp b/doc/src/snippets/image/supportedformat.cpp index 2335a94..e63023c 100644 --- a/doc/src/snippets/image/supportedformat.cpp +++ b/doc/src/snippets/image/supportedformat.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/inherited-slot/button.cpp b/doc/src/snippets/inherited-slot/button.cpp index bbb3e70..2eaf104 100644 --- a/doc/src/snippets/inherited-slot/button.cpp +++ b/doc/src/snippets/inherited-slot/button.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/inherited-slot/button.h b/doc/src/snippets/inherited-slot/button.h index 7f43ede..3a4ec1a 100644 --- a/doc/src/snippets/inherited-slot/button.h +++ b/doc/src/snippets/inherited-slot/button.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/inherited-slot/main.cpp b/doc/src/snippets/inherited-slot/main.cpp index 999328b..0b74c8b 100644 --- a/doc/src/snippets/inherited-slot/main.cpp +++ b/doc/src/snippets/inherited-slot/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/itemselection/main.cpp b/doc/src/snippets/itemselection/main.cpp index a337008..c1f0616 100644 --- a/doc/src/snippets/itemselection/main.cpp +++ b/doc/src/snippets/itemselection/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/itemselection/model.cpp b/doc/src/snippets/itemselection/model.cpp index d4ca02b..d0e599c 100644 --- a/doc/src/snippets/itemselection/model.cpp +++ b/doc/src/snippets/itemselection/model.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/itemselection/model.h b/doc/src/snippets/itemselection/model.h index 207f83a..d34ec09 100644 --- a/doc/src/snippets/itemselection/model.h +++ b/doc/src/snippets/itemselection/model.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/javastyle.cpp b/doc/src/snippets/javastyle.cpp index ab40aaa..97182c8 100644 --- a/doc/src/snippets/javastyle.cpp +++ b/doc/src/snippets/javastyle.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/layouts/layouts.cpp b/doc/src/snippets/layouts/layouts.cpp index 551bfc7..ef1bf5b 100644 --- a/doc/src/snippets/layouts/layouts.cpp +++ b/doc/src/snippets/layouts/layouts.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/mainwindowsnippet.cpp b/doc/src/snippets/mainwindowsnippet.cpp index ab0401d..50b1a3b 100644 --- a/doc/src/snippets/mainwindowsnippet.cpp +++ b/doc/src/snippets/mainwindowsnippet.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/matrix/matrix.cpp b/doc/src/snippets/matrix/matrix.cpp index 1ebbcf2..488cb6b 100644 --- a/doc/src/snippets/matrix/matrix.cpp +++ b/doc/src/snippets/matrix/matrix.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/mdiareasnippets.cpp b/doc/src/snippets/mdiareasnippets.cpp index 3eaa750..ce8b0b9 100644 --- a/doc/src/snippets/mdiareasnippets.cpp +++ b/doc/src/snippets/mdiareasnippets.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/moc/main.cpp b/doc/src/snippets/moc/main.cpp index 17188fc..7d10962 100644 --- a/doc/src/snippets/moc/main.cpp +++ b/doc/src/snippets/moc/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/moc/myclass1.h b/doc/src/snippets/moc/myclass1.h index c918b04..8d76c2a 100644 --- a/doc/src/snippets/moc/myclass1.h +++ b/doc/src/snippets/moc/myclass1.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/moc/myclass2.h b/doc/src/snippets/moc/myclass2.h index 1dd3bf9..56d625f 100644 --- a/doc/src/snippets/moc/myclass2.h +++ b/doc/src/snippets/moc/myclass2.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/moc/myclass3.h b/doc/src/snippets/moc/myclass3.h index 4ba281c..2d0134d 100644 --- a/doc/src/snippets/moc/myclass3.h +++ b/doc/src/snippets/moc/myclass3.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/modelview-subclasses/main.cpp b/doc/src/snippets/modelview-subclasses/main.cpp index 60ba842..8758886 100644 --- a/doc/src/snippets/modelview-subclasses/main.cpp +++ b/doc/src/snippets/modelview-subclasses/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/modelview-subclasses/model.cpp b/doc/src/snippets/modelview-subclasses/model.cpp index 16518c7..577f07a 100644 --- a/doc/src/snippets/modelview-subclasses/model.cpp +++ b/doc/src/snippets/modelview-subclasses/model.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/modelview-subclasses/model.h b/doc/src/snippets/modelview-subclasses/model.h index 7965f49..4c038bc 100644 --- a/doc/src/snippets/modelview-subclasses/model.h +++ b/doc/src/snippets/modelview-subclasses/model.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/modelview-subclasses/view.cpp b/doc/src/snippets/modelview-subclasses/view.cpp index 7d683ea..bf99380 100644 --- a/doc/src/snippets/modelview-subclasses/view.cpp +++ b/doc/src/snippets/modelview-subclasses/view.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/modelview-subclasses/view.h b/doc/src/snippets/modelview-subclasses/view.h index d6d64bb..2d59417 100644 --- a/doc/src/snippets/modelview-subclasses/view.h +++ b/doc/src/snippets/modelview-subclasses/view.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/modelview-subclasses/window.cpp b/doc/src/snippets/modelview-subclasses/window.cpp index d87857d..20e7f59 100644 --- a/doc/src/snippets/modelview-subclasses/window.cpp +++ b/doc/src/snippets/modelview-subclasses/window.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/modelview-subclasses/window.h b/doc/src/snippets/modelview-subclasses/window.h index b4cead0..3616a32 100644 --- a/doc/src/snippets/modelview-subclasses/window.h +++ b/doc/src/snippets/modelview-subclasses/window.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/myscrollarea.cpp b/doc/src/snippets/myscrollarea.cpp index 6cb1233..647e99c 100644 --- a/doc/src/snippets/myscrollarea.cpp +++ b/doc/src/snippets/myscrollarea.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/network/tcpwait.cpp b/doc/src/snippets/network/tcpwait.cpp index fa18d23..7ed240f 100644 --- a/doc/src/snippets/network/tcpwait.cpp +++ b/doc/src/snippets/network/tcpwait.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/painterpath/painterpath.cpp b/doc/src/snippets/painterpath/painterpath.cpp index ad4f623..e301fe3 100644 --- a/doc/src/snippets/painterpath/painterpath.cpp +++ b/doc/src/snippets/painterpath/painterpath.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/persistentindexes/main.cpp b/doc/src/snippets/persistentindexes/main.cpp index eeca8ac..b96a076 100644 --- a/doc/src/snippets/persistentindexes/main.cpp +++ b/doc/src/snippets/persistentindexes/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/persistentindexes/mainwindow.cpp b/doc/src/snippets/persistentindexes/mainwindow.cpp index 594881a..22c2a5f 100644 --- a/doc/src/snippets/persistentindexes/mainwindow.cpp +++ b/doc/src/snippets/persistentindexes/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/persistentindexes/mainwindow.h b/doc/src/snippets/persistentindexes/mainwindow.h index e0672d5..ca287c6 100644 --- a/doc/src/snippets/persistentindexes/mainwindow.h +++ b/doc/src/snippets/persistentindexes/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/persistentindexes/model.cpp b/doc/src/snippets/persistentindexes/model.cpp index 7158f34..7ef266e 100644 --- a/doc/src/snippets/persistentindexes/model.cpp +++ b/doc/src/snippets/persistentindexes/model.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/persistentindexes/model.h b/doc/src/snippets/persistentindexes/model.h index c787c36..c15cf27 100644 --- a/doc/src/snippets/persistentindexes/model.h +++ b/doc/src/snippets/persistentindexes/model.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/phonon.cpp b/doc/src/snippets/phonon.cpp index e50eabd..6b665aa 100644 --- a/doc/src/snippets/phonon.cpp +++ b/doc/src/snippets/phonon.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/picture/picture.cpp b/doc/src/snippets/picture/picture.cpp index be171c6..97cbaac 100644 --- a/doc/src/snippets/picture/picture.cpp +++ b/doc/src/snippets/picture/picture.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/plaintextlayout/main.cpp b/doc/src/snippets/plaintextlayout/main.cpp index 41713dd..b5ea49c 100644 --- a/doc/src/snippets/plaintextlayout/main.cpp +++ b/doc/src/snippets/plaintextlayout/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/plaintextlayout/window.cpp b/doc/src/snippets/plaintextlayout/window.cpp index 0e91dc1..3776f9a 100644 --- a/doc/src/snippets/plaintextlayout/window.cpp +++ b/doc/src/snippets/plaintextlayout/window.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/plaintextlayout/window.h b/doc/src/snippets/plaintextlayout/window.h index 291250e..bd8644e 100644 --- a/doc/src/snippets/plaintextlayout/window.h +++ b/doc/src/snippets/plaintextlayout/window.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/pointer/pointer.cpp b/doc/src/snippets/pointer/pointer.cpp index 1be5ef0..087b9fb 100644 --- a/doc/src/snippets/pointer/pointer.cpp +++ b/doc/src/snippets/pointer/pointer.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/polygon/polygon.cpp b/doc/src/snippets/polygon/polygon.cpp index b95ac37..2aa3abb 100644 --- a/doc/src/snippets/polygon/polygon.cpp +++ b/doc/src/snippets/polygon/polygon.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/porting4-dropevents/main.cpp b/doc/src/snippets/porting4-dropevents/main.cpp index a54e0b7..8983061 100644 --- a/doc/src/snippets/porting4-dropevents/main.cpp +++ b/doc/src/snippets/porting4-dropevents/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/porting4-dropevents/window.cpp b/doc/src/snippets/porting4-dropevents/window.cpp index 853687a..0615819 100644 --- a/doc/src/snippets/porting4-dropevents/window.cpp +++ b/doc/src/snippets/porting4-dropevents/window.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/porting4-dropevents/window.h b/doc/src/snippets/porting4-dropevents/window.h index 4aebb8c..f8fdb97 100644 --- a/doc/src/snippets/porting4-dropevents/window.h +++ b/doc/src/snippets/porting4-dropevents/window.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/printing-qprinter/main.cpp b/doc/src/snippets/printing-qprinter/main.cpp index 2289ae4..2f3a616 100644 --- a/doc/src/snippets/printing-qprinter/main.cpp +++ b/doc/src/snippets/printing-qprinter/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/printing-qprinter/object.cpp b/doc/src/snippets/printing-qprinter/object.cpp index e6bab28..9b55720 100644 --- a/doc/src/snippets/printing-qprinter/object.cpp +++ b/doc/src/snippets/printing-qprinter/object.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/printing-qprinter/object.h b/doc/src/snippets/printing-qprinter/object.h index 3f5021e..7f9b830 100644 --- a/doc/src/snippets/printing-qprinter/object.h +++ b/doc/src/snippets/printing-qprinter/object.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/process/process.cpp b/doc/src/snippets/process/process.cpp index 2d6ce10..ba74b60 100644 --- a/doc/src/snippets/process/process.cpp +++ b/doc/src/snippets/process/process.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qabstractsliderisnippet.cpp b/doc/src/snippets/qabstractsliderisnippet.cpp index b545c1d..35511b3 100644 --- a/doc/src/snippets/qabstractsliderisnippet.cpp +++ b/doc/src/snippets/qabstractsliderisnippet.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qcalendarwidget/main.cpp b/doc/src/snippets/qcalendarwidget/main.cpp index b1dfaa5..37acaf7 100644 --- a/doc/src/snippets/qcalendarwidget/main.cpp +++ b/doc/src/snippets/qcalendarwidget/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qcolumnview/main.cpp b/doc/src/snippets/qcolumnview/main.cpp index e882b4f..15eb127 100644 --- a/doc/src/snippets/qcolumnview/main.cpp +++ b/doc/src/snippets/qcolumnview/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qdbusextratypes/qdbusextratypes.cpp b/doc/src/snippets/qdbusextratypes/qdbusextratypes.cpp index 7a27ce0..7c7d8fa 100644 --- a/doc/src/snippets/qdbusextratypes/qdbusextratypes.cpp +++ b/doc/src/snippets/qdbusextratypes/qdbusextratypes.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qdebug/qdebugsnippet.cpp b/doc/src/snippets/qdebug/qdebugsnippet.cpp index b713f21..ca7ae88 100644 --- a/doc/src/snippets/qdebug/qdebugsnippet.cpp +++ b/doc/src/snippets/qdebug/qdebugsnippet.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qdir-filepaths/main.cpp b/doc/src/snippets/qdir-filepaths/main.cpp index b8a348c..a780b28 100644 --- a/doc/src/snippets/qdir-filepaths/main.cpp +++ b/doc/src/snippets/qdir-filepaths/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qdir-listfiles/main.cpp b/doc/src/snippets/qdir-listfiles/main.cpp index 003ca28..5b3017b 100644 --- a/doc/src/snippets/qdir-listfiles/main.cpp +++ b/doc/src/snippets/qdir-listfiles/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qdir-namefilters/main.cpp b/doc/src/snippets/qdir-namefilters/main.cpp index acaf8a5..c56d087 100644 --- a/doc/src/snippets/qdir-namefilters/main.cpp +++ b/doc/src/snippets/qdir-namefilters/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qfontdatabase/main.cpp b/doc/src/snippets/qfontdatabase/main.cpp index 4c2cace..e6668a3 100644 --- a/doc/src/snippets/qfontdatabase/main.cpp +++ b/doc/src/snippets/qfontdatabase/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qgl-namespace/main.cpp b/doc/src/snippets/qgl-namespace/main.cpp index 45392f7..e83da2d 100644 --- a/doc/src/snippets/qgl-namespace/main.cpp +++ b/doc/src/snippets/qgl-namespace/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlabel/main.cpp b/doc/src/snippets/qlabel/main.cpp index 9d53af9..21986b6 100644 --- a/doc/src/snippets/qlabel/main.cpp +++ b/doc/src/snippets/qlabel/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlineargradient/main.cpp b/doc/src/snippets/qlineargradient/main.cpp index 69384c4..3356956 100644 --- a/doc/src/snippets/qlineargradient/main.cpp +++ b/doc/src/snippets/qlineargradient/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlineargradient/paintwidget.cpp b/doc/src/snippets/qlineargradient/paintwidget.cpp index 79d77c6..bcd0d71 100644 --- a/doc/src/snippets/qlineargradient/paintwidget.cpp +++ b/doc/src/snippets/qlineargradient/paintwidget.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlineargradient/paintwidget.h b/doc/src/snippets/qlineargradient/paintwidget.h index 642f1c3..d1e131e 100644 --- a/doc/src/snippets/qlineargradient/paintwidget.h +++ b/doc/src/snippets/qlineargradient/paintwidget.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistview-dnd/main.cpp b/doc/src/snippets/qlistview-dnd/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/qlistview-dnd/main.cpp +++ b/doc/src/snippets/qlistview-dnd/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistview-dnd/mainwindow.cpp b/doc/src/snippets/qlistview-dnd/mainwindow.cpp index 99f9069..dfc2e43 100644 --- a/doc/src/snippets/qlistview-dnd/mainwindow.cpp +++ b/doc/src/snippets/qlistview-dnd/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistview-dnd/mainwindow.h b/doc/src/snippets/qlistview-dnd/mainwindow.h index 44477f6..91bd75a 100644 --- a/doc/src/snippets/qlistview-dnd/mainwindow.h +++ b/doc/src/snippets/qlistview-dnd/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistview-dnd/model.cpp b/doc/src/snippets/qlistview-dnd/model.cpp index b8182b7..09b93fd 100644 --- a/doc/src/snippets/qlistview-dnd/model.cpp +++ b/doc/src/snippets/qlistview-dnd/model.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -42,7 +42,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of an example program for Qt. ** EDITIONS: NOLIMITS diff --git a/doc/src/snippets/qlistview-dnd/model.h b/doc/src/snippets/qlistview-dnd/model.h index 60c8408..15c17eb 100644 --- a/doc/src/snippets/qlistview-dnd/model.h +++ b/doc/src/snippets/qlistview-dnd/model.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -42,7 +42,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of an example program for Qt. ** EDITIONS: NOLIMITS diff --git a/doc/src/snippets/qlistview-using/main.cpp b/doc/src/snippets/qlistview-using/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/qlistview-using/main.cpp +++ b/doc/src/snippets/qlistview-using/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistview-using/mainwindow.cpp b/doc/src/snippets/qlistview-using/mainwindow.cpp index 0573d43..4b0ee74 100644 --- a/doc/src/snippets/qlistview-using/mainwindow.cpp +++ b/doc/src/snippets/qlistview-using/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistview-using/mainwindow.h b/doc/src/snippets/qlistview-using/mainwindow.h index a0c2f17..9bd2890 100644 --- a/doc/src/snippets/qlistview-using/mainwindow.h +++ b/doc/src/snippets/qlistview-using/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistview-using/model.cpp b/doc/src/snippets/qlistview-using/model.cpp index e54ed56..30ac326 100644 --- a/doc/src/snippets/qlistview-using/model.cpp +++ b/doc/src/snippets/qlistview-using/model.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -42,7 +42,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of an example program for Qt. ** EDITIONS: NOLIMITS diff --git a/doc/src/snippets/qlistview-using/model.h b/doc/src/snippets/qlistview-using/model.h index a0bde47..57ad409 100644 --- a/doc/src/snippets/qlistview-using/model.h +++ b/doc/src/snippets/qlistview-using/model.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -42,7 +42,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of an example program for Qt. ** EDITIONS: NOLIMITS diff --git a/doc/src/snippets/qlistwidget-dnd/main.cpp b/doc/src/snippets/qlistwidget-dnd/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/qlistwidget-dnd/main.cpp +++ b/doc/src/snippets/qlistwidget-dnd/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp b/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp index 30a42f9..cab3980 100644 --- a/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp +++ b/doc/src/snippets/qlistwidget-dnd/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistwidget-dnd/mainwindow.h b/doc/src/snippets/qlistwidget-dnd/mainwindow.h index 5f763e2..2be9de3 100644 --- a/doc/src/snippets/qlistwidget-dnd/mainwindow.h +++ b/doc/src/snippets/qlistwidget-dnd/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistwidget-using/main.cpp b/doc/src/snippets/qlistwidget-using/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/qlistwidget-using/main.cpp +++ b/doc/src/snippets/qlistwidget-using/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistwidget-using/mainwindow.cpp b/doc/src/snippets/qlistwidget-using/mainwindow.cpp index bf5fe0b..0e88c3e 100644 --- a/doc/src/snippets/qlistwidget-using/mainwindow.cpp +++ b/doc/src/snippets/qlistwidget-using/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qlistwidget-using/mainwindow.h b/doc/src/snippets/qlistwidget-using/mainwindow.h index 64c4765..111298c 100644 --- a/doc/src/snippets/qlistwidget-using/mainwindow.h +++ b/doc/src/snippets/qlistwidget-using/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmake/delegate.h b/doc/src/snippets/qmake/delegate.h index d9f14fe..dafc47a 100644 --- a/doc/src/snippets/qmake/delegate.h +++ b/doc/src/snippets/qmake/delegate.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmake/main.cpp b/doc/src/snippets/qmake/main.cpp index d9f14fe..dafc47a 100644 --- a/doc/src/snippets/qmake/main.cpp +++ b/doc/src/snippets/qmake/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmake/model.cpp b/doc/src/snippets/qmake/model.cpp index d9f14fe..dafc47a 100644 --- a/doc/src/snippets/qmake/model.cpp +++ b/doc/src/snippets/qmake/model.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmake/model.h b/doc/src/snippets/qmake/model.h index d9f14fe..dafc47a 100644 --- a/doc/src/snippets/qmake/model.h +++ b/doc/src/snippets/qmake/model.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmake/paintwidget_mac.cpp b/doc/src/snippets/qmake/paintwidget_mac.cpp index d9f14fe..dafc47a 100644 --- a/doc/src/snippets/qmake/paintwidget_mac.cpp +++ b/doc/src/snippets/qmake/paintwidget_mac.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmake/paintwidget_unix.cpp b/doc/src/snippets/qmake/paintwidget_unix.cpp index ada3e52..2f9703c 100644 --- a/doc/src/snippets/qmake/paintwidget_unix.cpp +++ b/doc/src/snippets/qmake/paintwidget_unix.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmake/paintwidget_win.cpp b/doc/src/snippets/qmake/paintwidget_win.cpp index d9f14fe..dafc47a 100644 --- a/doc/src/snippets/qmake/paintwidget_win.cpp +++ b/doc/src/snippets/qmake/paintwidget_win.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmake/view.h b/doc/src/snippets/qmake/view.h index d9f14fe..dafc47a 100644 --- a/doc/src/snippets/qmake/view.h +++ b/doc/src/snippets/qmake/view.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmetaobject-invokable/main.cpp b/doc/src/snippets/qmetaobject-invokable/main.cpp index dfd7e4d..108647c 100644 --- a/doc/src/snippets/qmetaobject-invokable/main.cpp +++ b/doc/src/snippets/qmetaobject-invokable/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmetaobject-invokable/window.cpp b/doc/src/snippets/qmetaobject-invokable/window.cpp index c676708..35efadc 100644 --- a/doc/src/snippets/qmetaobject-invokable/window.cpp +++ b/doc/src/snippets/qmetaobject-invokable/window.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qmetaobject-invokable/window.h b/doc/src/snippets/qmetaobject-invokable/window.h index 2fd833a..83c8f26 100644 --- a/doc/src/snippets/qmetaobject-invokable/window.h +++ b/doc/src/snippets/qmetaobject-invokable/window.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qprocess-environment/main.cpp b/doc/src/snippets/qprocess-environment/main.cpp index bce3578..4ede32b 100644 --- a/doc/src/snippets/qprocess-environment/main.cpp +++ b/doc/src/snippets/qprocess-environment/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp b/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp index 4d4eda7..cdd2c35 100644 --- a/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp +++ b/doc/src/snippets/qprocess/qprocess-simpleexecution.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsignalmapper/buttonwidget.cpp b/doc/src/snippets/qsignalmapper/buttonwidget.cpp index ae92b3a..6f780d9 100644 --- a/doc/src/snippets/qsignalmapper/buttonwidget.cpp +++ b/doc/src/snippets/qsignalmapper/buttonwidget.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsignalmapper/buttonwidget.h b/doc/src/snippets/qsignalmapper/buttonwidget.h index 652f414..409b5e3 100644 --- a/doc/src/snippets/qsignalmapper/buttonwidget.h +++ b/doc/src/snippets/qsignalmapper/buttonwidget.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsignalmapper/main.cpp b/doc/src/snippets/qsignalmapper/main.cpp index 39fdbd2..4c04b03 100644 --- a/doc/src/snippets/qsignalmapper/main.cpp +++ b/doc/src/snippets/qsignalmapper/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsignalmapper/mainwindow.h b/doc/src/snippets/qsignalmapper/mainwindow.h index b8f5376..cc40d07 100644 --- a/doc/src/snippets/qsignalmapper/mainwindow.h +++ b/doc/src/snippets/qsignalmapper/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsortfilterproxymodel-details/main.cpp b/doc/src/snippets/qsortfilterproxymodel-details/main.cpp index 6952499..753cb5e 100644 --- a/doc/src/snippets/qsortfilterproxymodel-details/main.cpp +++ b/doc/src/snippets/qsortfilterproxymodel-details/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsortfilterproxymodel/main.cpp b/doc/src/snippets/qsortfilterproxymodel/main.cpp index a587bcb..0f85d6d 100644 --- a/doc/src/snippets/qsortfilterproxymodel/main.cpp +++ b/doc/src/snippets/qsortfilterproxymodel/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsplashscreen/main.cpp b/doc/src/snippets/qsplashscreen/main.cpp index 6a66349..df9a374 100644 --- a/doc/src/snippets/qsplashscreen/main.cpp +++ b/doc/src/snippets/qsplashscreen/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsplashscreen/mainwindow.cpp b/doc/src/snippets/qsplashscreen/mainwindow.cpp index a26ab62..aa5a5aa 100644 --- a/doc/src/snippets/qsplashscreen/mainwindow.cpp +++ b/doc/src/snippets/qsplashscreen/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsplashscreen/mainwindow.h b/doc/src/snippets/qsplashscreen/mainwindow.h index e77322e..dcd65e5 100644 --- a/doc/src/snippets/qsplashscreen/mainwindow.h +++ b/doc/src/snippets/qsplashscreen/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsql-namespace/main.cpp b/doc/src/snippets/qsql-namespace/main.cpp index 9ed2b4d..9251bd5 100644 --- a/doc/src/snippets/qsql-namespace/main.cpp +++ b/doc/src/snippets/qsql-namespace/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qstack/main.cpp b/doc/src/snippets/qstack/main.cpp index 6fa0a41..e224f4c 100644 --- a/doc/src/snippets/qstack/main.cpp +++ b/doc/src/snippets/qstack/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qstackedlayout/main.cpp b/doc/src/snippets/qstackedlayout/main.cpp index 94ff644..82eeb19 100644 --- a/doc/src/snippets/qstackedlayout/main.cpp +++ b/doc/src/snippets/qstackedlayout/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qstackedwidget/main.cpp b/doc/src/snippets/qstackedwidget/main.cpp index 301c06d..69c8202 100644 --- a/doc/src/snippets/qstackedwidget/main.cpp +++ b/doc/src/snippets/qstackedwidget/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qstandarditemmodel/main.cpp b/doc/src/snippets/qstandarditemmodel/main.cpp index 1d9696e..c9565c1 100644 --- a/doc/src/snippets/qstandarditemmodel/main.cpp +++ b/doc/src/snippets/qstandarditemmodel/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qstatustipevent/main.cpp b/doc/src/snippets/qstatustipevent/main.cpp index e1d971b..b6c9d14 100644 --- a/doc/src/snippets/qstatustipevent/main.cpp +++ b/doc/src/snippets/qstatustipevent/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qstring/main.cpp b/doc/src/snippets/qstring/main.cpp index 150044b..067c2ef 100644 --- a/doc/src/snippets/qstring/main.cpp +++ b/doc/src/snippets/qstring/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qstringlist/main.cpp b/doc/src/snippets/qstringlist/main.cpp index b0def5b..cef2a88 100644 --- a/doc/src/snippets/qstringlist/main.cpp +++ b/doc/src/snippets/qstringlist/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qstringlistmodel/main.cpp b/doc/src/snippets/qstringlistmodel/main.cpp index 020dd8c1..332b6ba 100644 --- a/doc/src/snippets/qstringlistmodel/main.cpp +++ b/doc/src/snippets/qstringlistmodel/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qstyleoption/main.cpp b/doc/src/snippets/qstyleoption/main.cpp index f7b21a1..0563485 100644 --- a/doc/src/snippets/qstyleoption/main.cpp +++ b/doc/src/snippets/qstyleoption/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qstyleplugin/main.cpp b/doc/src/snippets/qstyleplugin/main.cpp index 04584b4..3252c90 100644 --- a/doc/src/snippets/qstyleplugin/main.cpp +++ b/doc/src/snippets/qstyleplugin/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qsvgwidget/main.cpp b/doc/src/snippets/qsvgwidget/main.cpp index b0ab95e..6cba9a8 100644 --- a/doc/src/snippets/qsvgwidget/main.cpp +++ b/doc/src/snippets/qsvgwidget/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qt-namespace/main.cpp b/doc/src/snippets/qt-namespace/main.cpp index 5b3d422..36fa324 100644 --- a/doc/src/snippets/qt-namespace/main.cpp +++ b/doc/src/snippets/qt-namespace/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtablewidget-dnd/main.cpp b/doc/src/snippets/qtablewidget-dnd/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/qtablewidget-dnd/main.cpp +++ b/doc/src/snippets/qtablewidget-dnd/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp b/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp index 3b8f359..c85aa86 100644 --- a/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp +++ b/doc/src/snippets/qtablewidget-dnd/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtablewidget-dnd/mainwindow.h b/doc/src/snippets/qtablewidget-dnd/mainwindow.h index 5c955a7..0dfcb60 100644 --- a/doc/src/snippets/qtablewidget-dnd/mainwindow.h +++ b/doc/src/snippets/qtablewidget-dnd/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtablewidget-resizing/main.cpp b/doc/src/snippets/qtablewidget-resizing/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/qtablewidget-resizing/main.cpp +++ b/doc/src/snippets/qtablewidget-resizing/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp b/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp index 7920998..65e8b28 100644 --- a/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp +++ b/doc/src/snippets/qtablewidget-resizing/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtablewidget-resizing/mainwindow.h b/doc/src/snippets/qtablewidget-resizing/mainwindow.h index 5472372..251d1be 100644 --- a/doc/src/snippets/qtablewidget-resizing/mainwindow.h +++ b/doc/src/snippets/qtablewidget-resizing/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtablewidget-using/main.cpp b/doc/src/snippets/qtablewidget-using/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/qtablewidget-using/main.cpp +++ b/doc/src/snippets/qtablewidget-using/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtablewidget-using/mainwindow.cpp b/doc/src/snippets/qtablewidget-using/mainwindow.cpp index b16ef70..0323cd2 100644 --- a/doc/src/snippets/qtablewidget-using/mainwindow.cpp +++ b/doc/src/snippets/qtablewidget-using/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtablewidget-using/mainwindow.h b/doc/src/snippets/qtablewidget-using/mainwindow.h index fb18e33..ad48baa 100644 --- a/doc/src/snippets/qtablewidget-using/mainwindow.h +++ b/doc/src/snippets/qtablewidget-using/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtcast/qtcast.cpp b/doc/src/snippets/qtcast/qtcast.cpp index 2294bb7..270374b 100644 --- a/doc/src/snippets/qtcast/qtcast.cpp +++ b/doc/src/snippets/qtcast/qtcast.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtcast/qtcast.h b/doc/src/snippets/qtcast/qtcast.h index ee43b14..54e31d9 100644 --- a/doc/src/snippets/qtcast/qtcast.h +++ b/doc/src/snippets/qtcast/qtcast.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtest-namespace/main.cpp b/doc/src/snippets/qtest-namespace/main.cpp index 51d6560..9e20efe 100644 --- a/doc/src/snippets/qtest-namespace/main.cpp +++ b/doc/src/snippets/qtest-namespace/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreeview-dnd/dragdropmodel.cpp b/doc/src/snippets/qtreeview-dnd/dragdropmodel.cpp index a02f373..2e7fc27 100644 --- a/doc/src/snippets/qtreeview-dnd/dragdropmodel.cpp +++ b/doc/src/snippets/qtreeview-dnd/dragdropmodel.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -42,7 +42,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of an example program for Qt. ** EDITIONS: NOLIMITS diff --git a/doc/src/snippets/qtreeview-dnd/dragdropmodel.h b/doc/src/snippets/qtreeview-dnd/dragdropmodel.h index b8cef91..3faf989 100644 --- a/doc/src/snippets/qtreeview-dnd/dragdropmodel.h +++ b/doc/src/snippets/qtreeview-dnd/dragdropmodel.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ @@ -42,7 +42,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of an example program for Qt. ** EDITIONS: NOLIMITS diff --git a/doc/src/snippets/qtreeview-dnd/main.cpp b/doc/src/snippets/qtreeview-dnd/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/qtreeview-dnd/main.cpp +++ b/doc/src/snippets/qtreeview-dnd/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreeview-dnd/mainwindow.cpp b/doc/src/snippets/qtreeview-dnd/mainwindow.cpp index f98333f..a27e2cc 100644 --- a/doc/src/snippets/qtreeview-dnd/mainwindow.cpp +++ b/doc/src/snippets/qtreeview-dnd/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreeview-dnd/mainwindow.h b/doc/src/snippets/qtreeview-dnd/mainwindow.h index ca0d947..7c64d29 100644 --- a/doc/src/snippets/qtreeview-dnd/mainwindow.h +++ b/doc/src/snippets/qtreeview-dnd/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreeview-dnd/treeitem.cpp b/doc/src/snippets/qtreeview-dnd/treeitem.cpp index 99ce09a..95aa94e 100644 --- a/doc/src/snippets/qtreeview-dnd/treeitem.cpp +++ b/doc/src/snippets/qtreeview-dnd/treeitem.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreeview-dnd/treeitem.h b/doc/src/snippets/qtreeview-dnd/treeitem.h index 84116ba..58c8dd3 100644 --- a/doc/src/snippets/qtreeview-dnd/treeitem.h +++ b/doc/src/snippets/qtreeview-dnd/treeitem.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreeview-dnd/treemodel.cpp b/doc/src/snippets/qtreeview-dnd/treemodel.cpp index 0fd0682..aac2d5d 100644 --- a/doc/src/snippets/qtreeview-dnd/treemodel.cpp +++ b/doc/src/snippets/qtreeview-dnd/treemodel.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreeview-dnd/treemodel.h b/doc/src/snippets/qtreeview-dnd/treemodel.h index e0a45b3..b9f0487 100644 --- a/doc/src/snippets/qtreeview-dnd/treemodel.h +++ b/doc/src/snippets/qtreeview-dnd/treemodel.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreewidget-using/main.cpp b/doc/src/snippets/qtreewidget-using/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/qtreewidget-using/main.cpp +++ b/doc/src/snippets/qtreewidget-using/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreewidget-using/mainwindow.cpp b/doc/src/snippets/qtreewidget-using/mainwindow.cpp index 68ab54b..41584fc 100644 --- a/doc/src/snippets/qtreewidget-using/mainwindow.cpp +++ b/doc/src/snippets/qtreewidget-using/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreewidget-using/mainwindow.h b/doc/src/snippets/qtreewidget-using/mainwindow.h index 4ffb9f3..2d250d9 100644 --- a/doc/src/snippets/qtreewidget-using/mainwindow.h +++ b/doc/src/snippets/qtreewidget-using/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp b/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp index 19c7c20..46c37d3 100644 --- a/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp +++ b/doc/src/snippets/qtreewidgetitemiterator-using/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp b/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp index d3f3c39..60f3ffa 100644 --- a/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp +++ b/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h b/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h index 4ffb9f3..2d250d9 100644 --- a/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h +++ b/doc/src/snippets/qtreewidgetitemiterator-using/mainwindow.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtscript/evaluation/main.cpp b/doc/src/snippets/qtscript/evaluation/main.cpp index a80ef7e..2a79254 100644 --- a/doc/src/snippets/qtscript/evaluation/main.cpp +++ b/doc/src/snippets/qtscript/evaluation/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtscript/registeringobjects/main.cpp b/doc/src/snippets/qtscript/registeringobjects/main.cpp index 88f37b6..32f1584 100644 --- a/doc/src/snippets/qtscript/registeringobjects/main.cpp +++ b/doc/src/snippets/qtscript/registeringobjects/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtscript/registeringobjects/myobject.cpp b/doc/src/snippets/qtscript/registeringobjects/myobject.cpp index ac3ed68..871d3e5 100644 --- a/doc/src/snippets/qtscript/registeringobjects/myobject.cpp +++ b/doc/src/snippets/qtscript/registeringobjects/myobject.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtscript/registeringobjects/myobject.h b/doc/src/snippets/qtscript/registeringobjects/myobject.h index 82706c3..383a2c1 100644 --- a/doc/src/snippets/qtscript/registeringobjects/myobject.h +++ b/doc/src/snippets/qtscript/registeringobjects/myobject.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtscript/registeringvalues/main.cpp b/doc/src/snippets/qtscript/registeringvalues/main.cpp index d9c9c74..1462066 100644 --- a/doc/src/snippets/qtscript/registeringvalues/main.cpp +++ b/doc/src/snippets/qtscript/registeringvalues/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qtscript/scriptedslot/main.cpp b/doc/src/snippets/qtscript/scriptedslot/main.cpp index a84a802..c4576f5 100644 --- a/doc/src/snippets/qtscript/scriptedslot/main.cpp +++ b/doc/src/snippets/qtscript/scriptedslot/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/quiloader/main.cpp b/doc/src/snippets/quiloader/main.cpp index fadf1d4..87ed9ae 100644 --- a/doc/src/snippets/quiloader/main.cpp +++ b/doc/src/snippets/quiloader/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/quiloader/mywidget.cpp b/doc/src/snippets/quiloader/mywidget.cpp index f01d26f..b79fb1b 100644 --- a/doc/src/snippets/quiloader/mywidget.cpp +++ b/doc/src/snippets/quiloader/mywidget.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/quiloader/mywidget.h b/doc/src/snippets/quiloader/mywidget.h index dd998bd..5d12c72 100644 --- a/doc/src/snippets/quiloader/mywidget.h +++ b/doc/src/snippets/quiloader/mywidget.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qx11embedcontainer/main.cpp b/doc/src/snippets/qx11embedcontainer/main.cpp index 3fbab39..c9f4dc8 100644 --- a/doc/src/snippets/qx11embedcontainer/main.cpp +++ b/doc/src/snippets/qx11embedcontainer/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qx11embedwidget/embedwidget.cpp b/doc/src/snippets/qx11embedwidget/embedwidget.cpp index e3ea1c9..8913815 100644 --- a/doc/src/snippets/qx11embedwidget/embedwidget.cpp +++ b/doc/src/snippets/qx11embedwidget/embedwidget.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qx11embedwidget/embedwidget.h b/doc/src/snippets/qx11embedwidget/embedwidget.h index 0391a9d..20bb940 100644 --- a/doc/src/snippets/qx11embedwidget/embedwidget.h +++ b/doc/src/snippets/qx11embedwidget/embedwidget.h @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/snippets/qx11embedwidget/main.cpp b/doc/src/snippets/qx11embedwidget/main.cpp index 9801ae6..df539e2 100644 --- a/doc/src/snippets/qx11embedwidget/main.cpp +++ b/doc/src/snippets/qx11embedwidget/main.cpp @@ -1,7 +1,7 @@ /**************************************************************************** ** ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). -** Contact: Qt Software Information (qt-info@nokia.com) +** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the documentation of the Qt Toolkit. ** @@ -34,7 +34,7 @@ ** met: http://www.gnu.org/copyleft/gpl.html. ** ** If you are unsure which license is appropriate for your use, please -** contact the sales department at qt-sales@nokia.com. +** contact the sales department at http://www.qtsoftware.com/contact. ** $QT_END_LICENSE$ ** ****************************************************************************/ diff --git a/doc/src/