summaryrefslogtreecommitdiffhomepage
path: root/example/text_processor_example/example.cpp
blob: 03b634ee34dc167cceba46a39b8cf5250453d49a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * 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 <ocl/tproc/rope.hpp>
#include <iostream>
#include <memory>

#include "qt_widget.hpp"

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

  return app.exec();
}