summaryrefslogtreecommitdiff
path: root/noncore/settings/netsystemtime/main.cpp
blob: c6d5f9a9f6d9164f773409db7eb14ae071efe346 (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\n");
	  printf("$Id$\n");

    QPEApplication a( argc, argv );

    Ntp mw;
    a.showMainWidget( &mw );

    return a.exec();
}