2022-05-10 10:06:48 +00:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2019-09-06 20:38:45 +00:00
|
|
|
#include <QApplication>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include "codeeditor.h"
|
|
|
|
|
|
|
|
int main(int argv, char **args)
|
|
|
|
{
|
|
|
|
QApplication app(argv, args);
|
|
|
|
|
|
|
|
CodeEditor editor;
|
|
|
|
editor.setWindowTitle(QObject::tr("Code Editor Example"));
|
|
|
|
editor.show();
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|
|
|
|
|