mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
13 lines
288 B
C++
13 lines
288 B
C++
#include <qapplication.h>
|
|
#include <ksslkeygen.h>
|
|
#include <kcomponentdata.h>
|
|
|
|
int main( int argc, char** argv ) {
|
|
QApplication app( argc, argv );
|
|
|
|
KComponentData data(QByteArray("ksslkeygentest"));
|
|
|
|
KSSLKeyGen wizard(0);
|
|
wizard.setKeySize(0);
|
|
return wizard.exec();
|
|
}
|