电机控制项目
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
630 B

  1. /******************************main.cpp文件说明**********************************
  2. * Descript :.cpp文件,包含main函数的程序入口
  3. * Author :caitiancheng
  4. * Date :2021_12_18
  5. *******************************************************************************/
  6. /***********************************头文件****************************************/
  7. #include "motorcontroll.h"
  8. #include <QApplication>
  9. /***********************************主函数****************************************/
  10. int main(int argc, char *argv[])
  11. {
  12. QApplication a(argc, argv);
  13. MotorControll w;
  14. w.show();
  15. return a.exec();
  16. }