summaryrefslogtreecommitdiff
path: root/noncore/settings/netsystemtime/main.cpp
blob: 80fbcb8a4f8bcbc9ebe4447f6c881b1ad8503765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdio.h>
#include "ntp.h"
#include <qpe/qpeapplication.h>

int main( int argc, char ** argv )
{
  	printf("This is netsystemtime ");
	  printf("$Id$\n");

    QPEApplication a( argc, argv );

    Ntp mw;
    a.showMainWidget( &mw );

    return a.exec();
}