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.
19 lines
528 B
19 lines
528 B
#ifndef SIGNATURECONFIGURATIONDIALOGIMPL_H |
|
#define SIGNATURECONFIGURATIONDIALOGIMPL_H |
|
#include "signatureconfigurationdialog.h" |
|
|
|
class CryptPlugWrapper; |
|
|
|
class SignatureConfigurationDialogImpl : public SignatureConfigurationDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
SignatureConfigurationDialogImpl( QWidget* parent = 0, |
|
const char* name = 0, WFlags fl = 0 ); |
|
~SignatureConfigurationDialogImpl(); |
|
|
|
void enableDisable( CryptPlugWrapper* ); |
|
}; |
|
|
|
#endif // SIGNATURECONFIGURATIONDIALOGIMPL_H
|
|
|