diff --git a/test/hello.cpp b/test/hello.cpp new file mode 100644 index 00000000..847d4474 --- /dev/null +++ b/test/hello.cpp @@ -0,0 +1,16 @@ +// hello.cpp + +#include "fapp.h" +#include "fmessagebox.h" + + +int main (int argc, char* argv[]) +{ + // Create the application object + FApplication app(argc, argv); + + // Create a simple dialog box + FMessageBox mbox(&app); + mbox.setText("Hello world"); + mbox.exec(); +}