电机控制项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

21 line
628 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. }