├── .gitignore ├── LICENSE ├── README.md ├── TextReverser.pro ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realbardia/TextReverser/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realbardia/TextReverser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realbardia/TextReverser/HEAD/README.md -------------------------------------------------------------------------------- /TextReverser.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realbardia/TextReverser/HEAD/TextReverser.pro -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realbardia/TextReverser/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realbardia/TextReverser/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realbardia/TextReverser/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realbardia/TextReverser/HEAD/mainwindow.ui --------------------------------------------------------------------------------