main.cpp

// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

// main.cpp
#include <QApplication>
#include <QTableView>
#include "mymodel.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QTableView tableView;
    MyModel myModel;
    tableView.setModel(&myModel);
    tableView.show();
    return a.exec();
}

© 2024 The Qt Company Ltd. 此处包含的文档贡献是各自所有者的版权。本文档根据自由软件基金会(Free Software Foundation)发布的《GNU自由文档许可版1.3》条款许可。Qt及其相关标志是The Qt Company Ltd.在芬兰和其他国家的商标。其他所有商标归各自所有者所有。