diff options
Diffstat (limited to 'example/text_processor_example/example.cpp')
| -rw-r--r-- | example/text_processor_example/example.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/example/text_processor_example/example.cpp b/example/text_processor_example/example.cpp new file mode 100644 index 0000000..03b634e --- /dev/null +++ b/example/text_processor_example/example.cpp @@ -0,0 +1,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(); +} |
