Logo white

yanxiaolong / arm_show

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • arm_show
  • key32
  • main.cpp
  • jianpan
    4924de59
    yanxiaolong authored
    2021-03-20 20:10:23 +0800  
    Browse Code ยป
main.cpp 180 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11
#include <QtGui/QApplication>
#include "keywidget.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    KeyWidget w;
    w.show();
    
    return a.exec();
}