2015-09-25 21:37:19 +02:00
|
|
|
// File: hello.cpp
|
2015-05-23 13:35:12 +02:00
|
|
|
|
|
|
|
#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();
|
|
|
|
}
|