main.cpp~
上传用户:karlzgj
上传日期:2020-03-01
资源大小:68k
文件大小:1k
源码类别:

TAPI编程

开发平台:

QT

  1. #include "timer.h" #include "myapplication.h"
  2. #include <ZApplication.h>
  3. Timer* timer;
  4. MyApplication* a;
  5. int main( int argc, char **argv )
  6. {
  7.        // ZApplication* a = new ZApplication( argc, argv ); a = new MyApplication(argc,argv); int ret; if ( QCopChannel::isRegistered("myapplication/timer/") )
  8.   {
  9.    QCopChannel::send( "myapplication/timer/", "return()" );
  10.    ret = 0;
  11.   } else {
  12.         timer = new Timer(NULL, NULL);
  13.         timer->setGeometry(0,0,240,320);
  14. a->setMainWidget(timer);
  15. timer->show();
  16.         ret = a->exec();
  17. delete timer; }
  18. delete a;
  19. return ret;
  20. }