Main.cpp
author sl
Wed, 21 May 2014 09:03:40 +0200
changeset 7 e8c05ae7f418
permissions -rw-r--r--
Font is now instanciated after selction.
     1 
     2 
     3 #include "MainWindow.h"
     4 
     5 FXMainWindow *g_main_window;
     6 
     7 int main(int argc, char **argv)
     8 {
     9     FXApp app("Futaba VFD", "Slions Software");
    10     app.init(argc, argv);
    11     g_main_window = new MainWindow(&app);
    12     app.create();
    13     app.run();
    14     return 0;
    15 }