finalcut/examples/hello.cpp

19 lines
323 B
C++
Raw Normal View History

// File: hello.cpp
2015-05-23 13:35:12 +02:00
#include <final/fapplication.h>
#include <final/fmessagebox.h>
2015-05-23 13:35:12 +02:00
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");
// Start the application
2015-05-23 13:35:12 +02:00
mbox.exec();
}