mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
mandatory distinguished name entries and allow duplicate key use as requested by some users. show CRL signature alg information Version 0.6.3
28 lines
456 B
C++
28 lines
456 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef OPTIONS_H
|
|
#define OPTIONS_H
|
|
|
|
#include "ui_Options.h"
|
|
#include <qdialog.h>
|
|
#include "lib/base.h"
|
|
#include "widgets/MainWindow.h"
|
|
|
|
class Options: public QDialog, public Ui::Options
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Options(QWidget *parent);
|
|
public slots:
|
|
void on_extDNadd_clicked();
|
|
void on_extDNdel_clicked();
|
|
QString getDnString();
|
|
};
|
|
|
|
#endif
|