main.cpp 210 B

12345678910111213141516
  1. #include <string>
  2. #include <a_qt.hpp>
  3. #include <b_qt.hpp>
  4. int main()
  5. {
  6. if (a_qt::mocs_compilation().empty()) {
  7. return -1;
  8. }
  9. if (b_qt::mocs_compilation().empty()) {
  10. return -1;
  11. }
  12. return 0;
  13. }