blob: d37f2eb975a43f89f4dd13cf47689ffdf511d21c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <tdeapplication.h>
#include <kscan.h>
int main( int argc, char **argv )
{
TDEApplication app( argc, argv, "kscantest" );
KScanDialog *dlg = KScanDialog::getScanDialog();
if ( !dlg ) {
tqDebug("*** EEK, no Scan-service available, aborting!");
return 0;
}
dlg->show();
return app.exec();
}
|