summaryrefslogtreecommitdiffhomepage
path: root/example/text_editor_example/example.cpp
blob: d61f91f0fe692ecf4ce89b2ce27db63eb150ae8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * File: example.cpp
 * Purpose: Rope example.
 * Author: Amlal El Mahrouss (amlal@nekernel.org)
 * Copyright 2026, Amlal El Mahrouss, licensed under the Boost Software License.
 */

#include "texteditor.hpp"

int main(int argc, char** argv)
{
	QApplication app(argc, argv);
	TTextEditor	 win;

	win.show();

	return app.exec();
}