zynaddsubfx

ZynAddSubFX open source synthesizer
Log | Files | Refs | Submodules | LICENSE

main.C (218B)


      1 #include "Controller.h"
      2 #include "ControllerUI.h"
      3 
      4 pthread_t  thr1, thr2;
      5 Controller controller;
      6 
      7 
      8 
      9 main()
     10 {
     11     ControllerUI *controllerUI = new ControllerUI(&controller);
     12 
     13     Fl::run();
     14 
     15     delete controllerUI;
     16 };