You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
396 B
18 lines
396 B
#ifndef CERTIFICATEWIZARDIMPL_H |
|
#define CERTIFICATEWIZARDIMPL_H |
|
#include "certificatewizard.h" |
|
|
|
class CertificateWizardImpl : public CertificateWizard |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
CertificateWizardImpl( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); |
|
~CertificateWizardImpl(); |
|
|
|
protected slots: |
|
void slotCreatePSE(); |
|
|
|
}; |
|
|
|
#endif // CERTIFICATEWIZARDIMPL_H
|
|
|