skipUic.cpp 241 B

12345678910111213141516171819202122
  1. #include "skipUicGen.hpp"
  2. #include "skipUicNoGen1.hpp"
  3. #include "skipUicNoGen2.hpp"
  4. int main(int, char**)
  5. {
  6. skipGen();
  7. skipNoGen1();
  8. skipNoGen2();
  9. return 0;
  10. }
  11. // -- Function definitions
  12. void ui_nogen1()
  13. {
  14. }
  15. void ui_nogen2()
  16. {
  17. }