main.cpp 228 B

12345678910111213
  1. #include <QCoreApplication>
  2. #include "testExample/log.h"
  3. #include "testExample/fileutilstest.h"
  4. int main(int argc, char *argv[])
  5. {
  6. QCoreApplication a(argc, argv);
  7. testLog();
  8. writeFile();
  9. return a.exec();
  10. }