ui.cpp 155 B

12345678
  1. #include "app.h"
  2. extern "C" int ui_main(char *hello_line) {
  3. THelloApp helloWorld;
  4. helloWorld.set_hello(hello_line);
  5. helloWorld.run();
  6. return 0;
  7. }